How to read the last row with SQL Server January 2, 2023 by Tarik If you’re using MS SQL, you can try: SELECT TOP 1 * FROM table_Name ORDER BY unique_column DESC