Answers for "get last insert id mysql"

SQL
0

mysql get the last id php

// Insert query 
$query = "insert into users(username,fname,lname) values('sonarika','Sonarika','Bhadoria')"; 

mysqli_query($con,$query); 

// Get last insert id 
$lastid = mysqli_insert_id($con);
Posted by: Guest on May-16-2020
2

mysql get last insert id

SELECT MAX(id) AS last_id FROM users
-- last_id --
-- 33 --
Posted by: Guest on July-13-2021
1

mysql set last_insert_id

SET @last_id = LAST_INSERT_ID();
Posted by: Guest on September-02-2020
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

Code answers related to "SQL"

Browse Popular Code Answers by Language