How to read the last row with SQL Server

If you’re using MS SQL, you can try:

SELECT TOP 1 * FROM table_Name ORDER BY unique_column DESC 

Leave a Comment