I have a postgresql db with a number of tables. If I query:
SELECT column_name FROM information_schema.columns WHERE table_name=\"my_table\";
You can try:
SELECT * FROM public."my_table"
Don't forget double quotes near my_table.