Как получить последний ряд таблицы в SQL
mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
Powerful Puffin
mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
SELECT TOP 1 * FROM Table ORDER BY ID DESC
SELECT
(SELECT * FROM tableName ORDER BY col1 LIMIT 1) AS first,
(SELECT * FROM tableName ORDER BY col1 DESC LIMIT 1) AS last
;
select * from tbl_name order by id desc limit N;