Refresh

This website codeinu.net/language/sql/c2477514-mysql-insert-id is currently offline. Cloudflare's Always Online™ shows a snapshot of this web page from the Internet Archive's Wayback Machine. To check for the live version, click Refresh.

Answers for "mysql insert id"

SQL
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