Обсуждение: Re: [GENERAL] null as a value

Поиск
Список
Период
Сортировка

Re: [GENERAL] null as a value

От
Fandarel
Дата:
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 ?
>
>