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
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
댓글목록
등록된 댓글이 없습니다.