SQL letzte Zeile in der Tabelle
SELECT fields FROM table ORDER BY id DESC LIMIT 1;
Cute Crayfish
SELECT fields FROM table ORDER BY id DESC LIMIT 1;
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
;