Answers for "select last record from table 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 "select last record from table psql"

Code answers related to "SQL"

Browse Popular Code Answers by Language