SyntaxFix
Write A Post
Hire A Developer
Questions
Don’t forget that in Oracle, provided the join key attributes are named the same in both tables, you can also write this as:
select * from Table1 inner join Table2 using (ID);
This also has the same query plan, of course.