[Answered ]-SELECT using psql returns no rows even though data is there

1👍

I guess you forgot to enter semicolon:

SELECT * FROM myapp_stories;

1👍

Prefix the table in your query with the schema, as the search_path might be causing your query (or psql) to look in a schema other than what you are expecting.

👤bma

Leave a comment