use where instead of join

Solutions on MaxInterview for use where instead of join by the best coders in the world

showing results for - "use where instead of join"
Moritz
06 Jul 2019
1# using WHERE ANSI-89 syntax
2SELECT *
3  FROM TABLE_A a,
4       TABLE_B b
5 WHERE a.id = b.id
6
7# using JOIN ANSI-92 syntax
8 SELECT *
9  FROM TABLE_A a
10  JOIN TABLE_B b ON b.id = a.id