“Selecione First e Last Row Mysql” Respostas de código

Selecione First e Last Row Mysql

(select *from DemoTable694 order by EmployeeId ASC LIMIT 1)
UNION
(select *from DemoTable694 order by EmployeeId DESC LIMIT 1);
Harendra

Selecione Last Row Mysql

SELECT
  (SELECT * FROM tableName ORDER BY col1 LIMIT 1)        AS first,
  (SELECT * FROM tableName ORDER BY col1 DESC LIMIT 1)   AS last
;
VasteMonde

Respostas semelhantes a “Selecione First e Last Row Mysql”

Perguntas semelhantes a “Selecione First e Last Row Mysql”

Mais respostas relacionadas para “Selecione First e Last Row Mysql” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código