Answers for "last item sql"

SQL
2

select last row in sql

SELECT TOP 1 * FROM Table ORDER BY ID DESC
Posted by: Guest on June-09-2021
1

sql select last 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)
Posted by: Guest on July-29-2021
4

sql select last id

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