Answers for "sql get id of inserted row mysql"

SQL
2

mysql id of inserted row

-- For mysql
INSERT INTO table_name (col1, col2,...) VALUES ('val1', 'val2'...);
SELECT LAST_INSERT_ID();
Posted by: Guest on March-03-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 get id of inserted row mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language