Thread: Re: [GENERAL] null as a value

Re: [GENERAL] null as a value

From
Fandarel
Date:
Try:

select * from emplyee where the_date is null;

Matt

>How can I select columns with null values.
>
>    select * from employee where the_date = null;
>
>    This will not work. Any suggestions ?
>
>