Hi all,
I have a select statement liek this one:
Select * from table1 where lastname LIKE 'var1%' and firstname LIKE 'var2%' and address LIKE '%'
My problem is that the select will not return those records where address is null!
Is there any way to overcome this without converting all the NULL values to something else?
Thanks,
George
I have a select statement liek this one:
Select * from table1 where lastname LIKE 'var1%' and firstname LIKE 'var2%' and address LIKE '%'
My problem is that the select will not return those records where address is null!
Is there any way to overcome this without converting all the NULL values to something else?
Thanks,
George