Как узнать ID для добавляемой записи?

Cramac

Новичок
Как узнать ID для добавляемой записи?

Всем привет. Подскажите, как узнать ID (назначается auto_increment) для добавляемой записи?

Т.Е. я пишу INSERT INTO tbl_name id, text VALUES "","text"
Так вот, как дальше в скрипт передать ID не делая селект?
 

Cid

...двинутый новичок
Carmac - замечание (цитата из мана)

mysql_insert_id() converts the return type of the native MySQL C API function mysql_insert_id() to a type of long (named int in PHP). If your AUTO_INCREMENT column has a column type of BIGINT, the value returned by mysql_insert_id() will be incorrect. Instead, use the internal MySQL SQL function LAST_INSERT_ID() in an SQL query.
Т.е. в переводе - если BIGINT, то необходимо использовать отдельный запрос select last_insert_id() as last_id....
 
Сверху