Answers for "how to get last timestamp record in psql"

SQL
0

psql get last rows

# ctid represents the physical location when you don't have an ID or a DATE
SELECT * from <table_name> ORDER BY ctid DESC LIMIT <limit>;
Posted by: Guest on October-01-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language