“mysql obtiene la última identificación” Código de respuesta

mysql obtiene la última fila

SELECT fields FROM table ORDER BY id DESC LIMIT 1;
Cute Crayfish

mysql obtiene la última identificación

SELECT MAX(id) FROM tablename;
Fine Fox

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

Respuestas similares a “mysql obtiene la última identificación”

Preguntas similares a “mysql obtiene la última identificación”

Más respuestas relacionadas con “mysql obtiene la última identificación” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código