What is difference between ANSI and non-ANSI joins, and which do you recommend? [duplicate]
问题 This question already has answers here : Oracle Joins - Comparison between conventional syntax VS ANSI Syntax (11 answers) Closed 6 years ago . I have come across many websites to find the answer about which one is better, ANSI or non- ANSI syntax. What is the difference between these two queries? select a.name,a.empno,b.loc from tab a, tab b where a.deptno=b.deptno(+); and: select a.name,a.empno,b.loc from tab a left outer join tab b on a.deptno=b.deptno; The result is same in both the cases