For instance, I might say this:
select * from a join b on a.AID = b.AID
Is this equivalent to
select * from a join b on b.AID = a.AID
? Or is there some difference?
For instance, I might say this:
select * from a join b on a.AID = b.AID
Is this equivalent to
select * from a join b on b.AID = a.AID
? Or is there some difference?