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 196건 4 페이지
  • RSS
기술자료 목록
136
PHP   13608  2017-02-27 19:09 ~ 2020-11-13 14:44  
135
PHP   16025  2017-02-24 16:12  
열람
PHP   35393  2016-10-06 22:14 ~ 2018-03-30 14:01  
133
PHP   20232  2016-05-25 11:50 ~ 2022-05-13 11:34  
132
PHP   18756  2016-02-16 17:31  
131
PHP   18024  2015-09-21 14:12  
130
PHP   22515  2015-04-20 09:38 ~ 2021-02-26 16:54  
129
PHP   43006  2015-04-17 03:26  
128
PHP   22135  2015-02-17 23:32  
127
PHP   64621  2015-02-09 09:56 ~ 2023-02-24 11:06  
126
PHP   22028  2014-12-22 15:54  
125
PHP   27181  2014-12-19 06:50 ~ 2019-12-13 10:05  
124
PHP   16885  2014-12-18 13:24 ~ 2021-07-23 14:01  
123
PHP   26959  2014-11-12 10:28 ~ 2021-11-10 07:19  
122
PHP   19404  2014-10-09 09:55 ~ 2015-12-15 00:00  
121
PHP   13047  2014-09-25 15:58 ~ 2018-09-26 14:52  
120
PHP   36871  2014-09-13 13:02 ~ 2022-09-26 20:44  
119
PHP   17245  2014-04-22 02:13  
118
PHP   18478  2014-04-18 19:18  
117
PHP   15093  2014-01-26 21:07 ~ 2014-01-27 00:00  

검색

해피정닷컴 정보

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

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