I have a postgres database with multiple schemas. When I connect to the database from a shell with psql and I run \\dt it uses the default connection s
psql
\\dt
quick solution could be:
SELECT your_db_column_name from "your_db_schema_name"."your_db_tabel_name";