Answers for "LAST_INSERT_ID()"

SQL
1

mysql set last_insert_id

SET @last_id = LAST_INSERT_ID();
Posted by: Guest on September-02-2020
0

last insert id

$last_id = $conn->insert_id;
Posted by: Guest on February-24-2021
1

mysql get last inserted id

-- To get the last inserted auto-increment row ID: --
SELECT LAST_INSERT_ID( optional_expression )

-- If you have just inserted it using a command in C# use: --
int lastId = (Int32)yourCommand.LastInsertedId;
Posted by: Guest on May-15-2020
0

last_insert_id() php

<?php
// use mysql_insert_id():
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) { die('Impossible de se connecter : ' . mysql_error()); }
mysql_select_db('mydb');
mysql_query("INSERT INTO mytable (product) values ('something')");
printf("last inserted id is %dn", mysql_insert_id());
?>
Posted by: Guest on April-06-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language