Team, i'm asking a basic question ,getting this question in my mind whenever i use join along with where clause in my select ,your answers is much helpfull.
Example:
Let's say I have two tables A and B and the following query:
select * from A inner join B on A.id = B.id Where A.id = 5
Does my sql first performs the join or the where?