I'm viewing a table in my command line but I'm not sure how it's sorted:
I use the TABLE "Notification"; command to display the rows in the table. Any tips on how to sort the display of this table? All my searches show how to sort a table result in a actual postgres query.

ORDER BYclause.ORDER BYto sort by your desired field(s).TABLEis equivalent toSELECT * FROM some_table, soTABLE "Notification" ORDER BY some_fld. I would get into the habit of usingSELECT.