Reputation: 3751
I have one table in public
schema and a second table in deepak
schema. Both the schemas are under same database.
Can I join data from these two tables?
Upvotes: 42
Views: 30947
Reputation: 143061
Sure, just use their fully-qualified names public.t1 JOIN deepak.t2 USING (col)
.
Upvotes: 38