Hi I was wondering performance wise what would be faster a join or a from and where query. I am trying merge and update query but performance is terrible?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
|
If you are asking whether it is more efficient to use SQL 92 join syntax
or to use the older join syntax
the answer is that it doesn't matter. The optimizer is automatically going to do an internal transformation from the SQL 92 syntax to the older syntax anyway. If you have performance problems, it is highly unlikely that they are related to your choice of join syntax (though when Oracle first added support for SQL 92 join syntax, there were bugs relating to its ability to transform the SQL into the older style). |
|||||||||
|