Answers for "getting the second last element from table using sql"

SQL
4

how to get last row of table in sql

mysql> select *from getLastRecord ORDER BY id DESC LIMIT 1;
Posted by: Guest on June-07-2020
0

how to get last element sql

Select Distinct names.xyz
       From nameList names
       LEFT JOIN nameList idNum
       ON idNum.xyz > names.xyz AND idNum.xyz IS NOT NULL
       WHERE idNum.xyz IS NULL
Posted by: Guest on January-28-2021

Code answers related to "getting the second last element from table using sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language