vote up 1 vote down star

I am trying to select all rows from a database where display = 'Y' and announcement != null. How can I check a column to make sure it contains a value?

 $qry = "select *	
         from 	school
	 where 	display='Y'
	 order by name, announcement, last_update";
flag

3 Answers

vote up 4 vote down check
$qry = "select *       
         from   school
         where  display='Y'
         and (announcement != '' AND announcement IS NOT null)
         order by name, announcement, last_update";

This caters for blank fields as well as null fields.

link|flag
the standard SQL way is that any statement that contains NULL should return null, which is why you have use IS NOT NULL or ISNULL() – nickf Jun 10 at 4:15
Updated. Do your comments still apply? – ChristianLinnell Jun 10 at 4:16
nope - you've got it right now. – nickf Jun 10 at 4:21
vote up 5 vote down
and announcement IS NOT NULL
link|flag
vote up 3 vote down
announcement IS NOT NULL

or

NOT ISNULL(announcement)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.