“mysql Obtenha o último id inserido” Respostas de código

mysql Obtenha o último id

SELECT MAX(id) FROM tablename;
Fine Fox

mysql Obtenha o último id de inserção

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

mysql Obtenha o último id inserido

-- 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

Encontre o último id

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

$last_id = $newOrder->id;
Courageous Cassowary

Retornar Último inserido id mysql opencart

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

Respostas semelhantes a “mysql Obtenha o último id inserido”

Perguntas semelhantes a “mysql Obtenha o último id inserido”

Procure respostas de código populares por idioma

Procurar outros idiomas de código