Answers for "get last inserted id in mssql"

PHP
1

how to get last id in database

$db = db_connect();
  $query = $db->query("SELECT * FROM users ORDER BY id DESC LIMIT 1");
  $result = $query->getRow();
Posted by: Guest on November-13-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

Browse Popular Code Answers by Language