Fresh postgres installation, db \'test\', table \'Graeber\' created from another program.
I want to see the content of table \'Graeber\'. When I connect to the database
Try adding the schema as in:
select * from public.Graeber
If that doesn't work, then it is because you have a capital letter so try:
select * from public."Graeber"
Hope this helps.