Answers for "sql row_number get first and last"

SQL
4

select first and last row sql

SELECT
  (SELECT * FROM tableName ORDER BY col1 LIMIT 1)        AS first,
  (SELECT * FROM tableName ORDER BY col1 DESC LIMIT 1)   AS last
;
Posted by: Guest on April-20-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language