MySQL의 마지막 PK값 획득.. mysql_insert_id() 와 last_insert_id() > 기술자료 | 해피정닷컴

MySQL의 마지막 PK값 획득.. mysql_insert_id() 와 last_insert_id() > 기술자료

본문 바로가기

사이트 내 전체검색

MySQL의 마지막 PK값 획득.. mysql_insert_id() 와 last_insert_id() > 기술자료

PHP MySQL의 마지막 PK값 획득.. mysql_insert_id() 와 last_insert_id()

페이지 정보


본문

DB에 데이터를 입력하면서 입력한 바로 그 값의 uid을 가져다가 써야 할 때가 있습니다.
2가지 방법이 있는데 mysql_insert_id() 과 last_insert_id() 입니다.

mysql_insert_id()은 PHP에서 처리해주는 명령문이고 last_insert_id()는 MySQL에서 처리해 주는 함수 입니다.
INSERT 명령으로 입력된 바로 그값의 PK(Primary Key)를 가져오는 명령을 수행합니다.


1. PHP 구문
$query = "INSERT INTO table (field1, field2) VALUES (value1, value2)";
$result = mysql_query($query);
if ($result)
$last_uid = mysql_insert_id();


2. MySQL 구문
$query = "INSERT INTO table (field1, field2) VALUES (value1, value2)";
$result = mysql_query($query);
if ($result)
$last_uid = mysql_query("last_insert_id()");


3. mysql_insert_id 
(PHP 3, PHP 4 , PHP 5) 
mysql_insert_id --  최근 INSERT 작업으로부터 생성된 identifier 값을 반환 

설명 
int mysql_insert_id ( [int link_identifier]) 

mysql_insert_id()는 link_identifier를 사용하면, INSERT 질의로 행(row)를 추가한 뒤 AUTO_INCREMENT로 생성된 테이블의 컬럼에 추가된 값을 얻을 수 있다. 
link_identifier를 지정하지 않으면, 마지막에 열려진 link를 사용한다. 

mysql_insert_id()는 이전 질의가 AUTO_INCREMENT값으로 생성되지 않으면, 0을 반환한다. 마지막으로 저장된 값이 필요하다면, 질의로 값을 추가한 직후 mysql_insert_id()를 사용하면 된다. 

참고: LAST_INSERT_ID()는 AUTO_INCREMENT 값으로 생성된 가장 최근 값이 보관되며, 질의할 동안에는 없어지지 않는다. 


4. mysqli_insert_id
(PHP 5, PHP 7)
mysqli::$insert_id -- mysqli_insert_id — Returns the auto generated id used in the latest query


5. 그누보드 5.1.3 이후 mysqli 함수 추가
그누보드5 / lib / common.lib.php
<?php
function sql_insert_id($link=null)
{
    global $g5;

    if(!$link)
        $link = $g5['connect_db'];

    if(function_exists('mysqli_insert_id') && G5_MYSQLI_USE)
        return mysqli_insert_id($link);
    else
        return mysql_insert_id($link);
}
?>


참고자료
http://jos39.tistory.com/191
http://unabated.tistory.com/entry/mysqlinsertid
https://dev.mysql.com/doc/refman/5.7/en/mysql-insert-id.html
https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=tipntech&wr_id=36144
http://php.net/manual/en/function.mysql-insert-id.php

댓글목록

등록된 댓글이 없습니다.


Total 2,640건 41 페이지
  • RSS
기술자료 목록
1840
JavaScript   12063  2016-10-11 22:39  
1839
WordPress   10377  2016-10-10 16:28  
1838
영카트   11293  2016-10-10 12:48 ~ 2019-04-14 23:00  
열람
PHP   34938  2016-10-06 22:14 ~ 2018-03-30 14:01  
1836
HTML   13969  2016-10-06 11:49  
1835
제로보드   14669  2016-09-30 16:32 ~ 2022-04-15 19:45  
1834
WordPress   17121  2016-09-30 00:40  
1833
WordPress   9412  2016-09-30 00:28 ~ 2020-08-28 12:11  
1832
호스팅   20237  2016-09-26 23:00 ~ 2017-06-05 00:00  
1831
JavaScript   14884  2016-09-22 08:49 ~ 2021-10-19 18:54  
1830
JavaScript   15287  2016-09-19 19:47  
1829
JavaScript   27975  2016-09-19 18:52  
1828
그누보드   16275  2016-09-12 16:29 ~ 2021-02-26 16:55  
1827
Editor   9744  2016-09-10 11:11  
1826
JavaScript   13385  2016-09-09 02:51  
1825
HTML   14168  2016-09-09 00:58 ~ 2016-09-20 00:00  
1824
JavaScript   17777  2016-09-08 00:17  
1823
JavaScript   13051  2016-09-07 16:25 ~ 2016-09-08 00:00  
1822
그누보드   15778  2016-09-06 12:59 ~ 2022-04-18 15:02  
1821
Search   14253  2016-09-06 11:59  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.