I have a confusin about using NULL option like the one shown below.
Select * from Table A TA,
Inner Join TabB TB on TB.Col1=TA.Col1.
Left outer join TabC TC.Col1=TA.Col1 and TC.Col2 isnull.
Where
TB.Col3=33
othercase is ...
Select * from Table A TA,
Inner Join TabB TB on TB.Col1=TA.Col1.
Left outer join TabC TC.Col1=TA.Col1
Where
TB.Col3=33
and TC.Col2 isnull
Why is the behavior different in both the cases....How is the Query one working or flowing by taking into consideration isnull value.
Please Advice..
thanks
Select * from Table A TA,
Inner Join TabB TB on TB.Col1=TA.Col1.
Left outer join TabC TC.Col1=TA.Col1 and TC.Col2 isnull.
Where
TB.Col3=33
othercase is ...
Select * from Table A TA,
Inner Join TabB TB on TB.Col1=TA.Col1.
Left outer join TabC TC.Col1=TA.Col1
Where
TB.Col3=33
and TC.Col2 isnull
Why is the behavior different in both the cases....How is the Query one working or flowing by taking into consideration isnull value.
Please Advice..
thanks