“mysql Obtenha o último id de inserção” Respostas de código

mysql ID da linha inserida

-- For mysql
INSERT INTO table_name (col1, col2,...) VALUES ('val1', 'val2'...);
SELECT LAST_INSERT_ID();
Caleb McNevin

mysql Obtenha o último id de inserção

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

MySQL Definir last_insert_id

SET @last_id = LAST_INSERT_ID();
Attractive Alligator

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

Como obter o ID da última linha inserida em Mysql

mysql> select *from LastInsertedRow where Id=(SELECT LAST_INSERT_ID());
Samuel Liebert

Encontre o último id

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

$last_id = $newOrder->id;
Courageous Cassowary

Respostas semelhantes a “mysql Obtenha o último id de inserção”

Perguntas semelhantes a “mysql Obtenha o último id de inserção”

Mais respostas relacionadas para “mysql Obtenha o último id de inserção” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código