Can we join two tables in postgresql if both tables are in different schemas

Do I have one table in a public schema and a second table in a deepak schema, and both schemas are in the same database with any help?

+5
source share
2 answers

Of course, just use their fully qualified names public.t1 JOIN deepak.t2 USING (col).

+8
source

Yes, you are just adding a schema.

public.table
deepak.table
+3
source

All Articles