我在数据库表中成功插入了一条记录。主键 (member_id) 设置为 auto_increment。我希望在插入成员记录并创建新的 member_id 时,立即从同一查询中检索相同的记录 ID。那可能吗?
问候,
我在数据库表中成功插入了一条记录。主键 (member_id) 设置为 auto_increment。我希望在插入成员记录并创建新的 member_id 时,立即从同一查询中检索相同的记录 ID。那可能吗?
问候,
$this->db->insert_id()
将从数据库中获取最新的 id。
请参阅:http ://ellislab.com/codeigniter/user-guide/database/helpers.html
$this->db->insert('...');
$member_id = mysql_insert_id();
这也可以,它是标准的 PHP 函数。 http://www.w3schools.com/php/func_mysql_insert_id.asp