“SQL obtenga la última fila insertada” Código de respuesta

Cómo obtener la última fila de mesa en SQL

mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
Powerful Puffin

SQL Seleccione la última ID

#Where the the column name is "ID" and table name is "tablename" and ID naming is increasing numerical value.
SELECT * 
FROM tablename
WHERE ID = (
    SELECT MAX(ID) 
  	FROM Table)
Kwams

SQL obtenga la última fila insertada

select * from table where ID = (SELECT @@IDENTITY)
Jeremy

Respuestas similares a “SQL obtenga la última fila insertada”

Preguntas similares a “SQL obtenga la última fila insertada”

Más respuestas relacionadas con “SQL obtenga la última fila insertada” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código