“Selecione a entrada mais recente na tabela SQL” Respostas de código

Como obter a última fila da tabela em SQL

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

Obtenha o último recorde em SQL

ex:
SELECT TOP 1 * FROM [TABLENAME] ORDER BY id DESC
Expensive Eagle

Selecione a entrada mais recente na tabela SQL

SELECT TOP 1 * FROM Table ORDER BY ID DESC
Shy Shrike

Respostas semelhantes a “Selecione a entrada mais recente na tabela SQL”

Perguntas semelhantes a “Selecione a entrada mais recente na tabela SQL”

Mais respostas relacionadas para “Selecione a entrada mais recente na tabela SQL” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código