“mysql get última identificación insertada” Código de respuesta

mysql obtiene la última identificación

SELECT MAX(id) FROM tablename;
Fine Fox

mysql get última identificación de inserción

SELECT MAX(id) AS last_id FROM users
-- last_id --
-- 33 --
Ganz404

mysql get última identificación insertada

-- 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;
Powerful Penguin

Encuentra la última identificación

//laravel controller
$newOrder = new Order();
...
...
$newOrder->save();

$last_id = $newOrder->id;
Courageous Cassowary

Devuelve la última ID insertada MySQL OpenCart

//You need to use this in OpenCart for getting last insert id:
$this->db->getLastId()
Yousef Qaoud

Respuestas similares a “mysql get última identificación insertada”

Preguntas similares a “mysql get última identificación insertada”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código