While joining like the below,
performance wise, which one is better, and why?
I didn't really understand the difference, some are saying 1st case is not a proper join. is that true?
Why it is not good.
Code:
select * from EMPLOYEE e , position p where e.empid=p.empid select * from EMPLOYEE e inner join position p where on e.empid=p.empid
I didn't really understand the difference, some are saying 1st case is not a proper join. is that true?
Why it is not good.
Comment