Click here to Skip to main content
15,905,233 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
The following statement is not responding correctly. I want to select those rows that are NULL in the column 'ActualDateOfDespatch'.

select orderqty from txfile where ActualDateOfDespatch=NULL
Posted

Try this:
select orderqty from txfile where ActualDateOfDespatch is NULL
 
Share this answer
 
SQL
select orderqty from txfile where ActualDateOfDespatch Is NULL 

Happy Coding!
:)
 
Share this answer
 
try this:-
SQL
select orderqty from txfile where ActualDateOfDespatch Is NULL
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900