Resolving 42P01: relation does not exist error

Last edited: 1/16/2025

42P01 is a Postgres level error, that can also be found in the PostgREST error docs

1
42P01: relation "<some table name>" does not exist

There are a few possible causes


Cause 1: Search path broken

When directly accessing a table that is not in the public schema, it's important to reference the external schema explicitly in your query. Below is an example from the JS client:

1
const { data, error } = await supabase.schema('myschema').from('mytable').select()

If after calling the table directly, you get a 42501 permission denied error, then you must also expose the custom schema to the API.. For Supabase managed schemas, such as vault and auth, these cannot be directly accessed through the DB REST API for security reasons. If necessary, they can be strictly accessed through security definer functions.


Cause 2: Ignoring capitalization and other typos

The table could be defined as: CREATE TABLE “Hello”`. The double quotes make it case-sensitive, so it becomes essential to call the table with the appropriate title. It is possible to change the table name to be lowercase for convenience, either in the Table Editor, or with raw SQL:

1
2
alter table "Table_name"rename to table_name;

Cause 3: Table or function actually does not exist

One may have never made the table or dropped it deliberately or accidentally. This can be quickly checked with the following query:

1
2
3
-- For tablesSELECT * FROM information_schema.tablesWHERE table_name ILIKE 'example_table'; --<------ Add relevant table name
1
2
3
4
5
6
7
8
9
10
-- For functionsselect p.proname as function_name, n.nspname as schema_name, pg_get_functiondef(p.oid) as function_definitionfrom pg_proc as p join pg_namespace as n on p.pronamespace = n.oidwhere n.nspname in ('public', 'your custom schema') -- <------ Add other relevant schemasorder by n.nspname, p.proname;