Smart SQL Tools for Every Database

Top 10 SQL Errors

How to Fix PostgreSQL "relation does not exist"

PostgreSQL cannot find the table or view name in your query.

Example error message

ERROR: relation "users" does not exist

Common causes

Quick fix

SELECT * FROM public.users;

Checklist

Back to Top 10 SQL Errors