On mysql, how can I get last id? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

On mysql, how can I get last id?

I want get last id on mysql.How can i do this easy ??

11th May 2018, 5:15 AM
Ahmet Eren YILDIRIM
Ahmet Eren YILDIRIM - avatar
1 Respuesta
+ 6
You can use the MySQL function: mysql_insert_id() For more info, see link: https://dev.mysql.com/doc/refman/8.0/en/getting-unique-id.html If you need to retrieve the last ID from within PHP, you can use the PHP function: mysqli_insert_id() See link for more info: http://php.net/manual/en/function.mysql-insert-id.php
11th May 2018, 5:47 AM
David Carroll
David Carroll - avatar