select * from foo, barThis query will continue to work:
select * from foo cross join barI read many more queries than I write and it is much easier to find missing join conditions in a query when ANSI join syntax is used.
select * from foo, barThis query will continue to work:
select * from foo cross join barI read many more queries than I write and it is much easier to find missing join conditions in a query when ANSI join syntax is used.
0 comments:
Post a Comment