The following two pieces of code seem to do the same thing, but I am curious as to which is the better to use? Could someone please summarise what the differences are and which, if any, is the 'better' one to use.
Many Thanks in advance.
Select EQUI.EQUNR
From EQUI
Inner join AFIH on AFIH.EQUNR = EQUI.EQUNR
Inner join AUFK on AFIH.AUFNR = AUFK.AUFNR
Select EQUI.EQUNR
From AUFK, AFIH, EQUI
Where AFIH.EQUNR = EQUI.EQUNR
AND AFIH.AUFNR = AUFK.AUFNR
Many Thanks in advance.
Select EQUI.EQUNR
From EQUI
Inner join AFIH on AFIH.EQUNR = EQUI.EQUNR
Inner join AUFK on AFIH.AUFNR = AUFK.AUFNR
Select EQUI.EQUNR
From AUFK, AFIH, EQUI
Where AFIH.EQUNR = EQUI.EQUNR
AND AFIH.AUFNR = AUFK.AUFNR