Description
The named columns join is a common shortcut allowing joins on identically named keys. Example: select * from t1 join t2 using c1 is equivalent to select * from t1 join t2 on t1.c1 = t2.c1. SQL standard reference: Section 7.7
Attachments
Attachments
Issue Links
- links to