useful sql for pgSTAC Posted by By sunny.bak August 25, 2025Posted inSOFTWARE # Output list of tables from pgstac schema select table_name from information_schema.tables where table_schema = 'pgstac' order by table_name; # \d = describe object(s) # t = table, f =…