Collections:
Retrieving the Last Sequence ID in MySQL
How To Get the Last ID Assigned by MySQL in MySQL?
✍: FYIcenter.com
If you use an ID column with AUTO_INCREMENT attribute, you can use the mysql_insert_id() function to get the last ID value assigned by the MySQL server, as shown in the sample script below:
<?php
include "mysql_connection.php";
$sql = "INSERT INTO fyi_users (name)"
. " VALUES ('John King')";
if (mysql_query($sql, $con)) {
print(mysql_affected_rows() . " rows inserted.\n");
print("Last ID inserted: ".mysql_insert_id()."\n");
} else {
print("SQL statement failed.\n");
}
mysql_close($con);
?>
If you run this script, you will get something like this:
1 rows inserted. Last ID inserted: 3
⇒ Storage Engines: MyISAM, InnoDB and BDB in MySQL
⇐ Define the ID Column as Auto-Incremented in MySQL
2017-09-12, 2900🔥, 0💬
Popular Posts:
What Happens to an Arithmetic Operation with Two Different Data Types in SQL Server Transact-SQL? Wh...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...
How to obtain the version number of the ICU (International Components for Unicode) library using the...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
What Happens to the Current Transaction If a START TRANSACTION Is Executed in MySQL? If you are in a...