Fifield,
Tuesday, September 24, 2002, 5:48:47 PM, you wrote:

FM> I need a way to tell if a column value is set, I don't care if it is text or
FM> a number I just need a way to tell if there is a value set. Is there a way
FM> to do this? 

If column can contain NULL values, you can do it with IS NULL / IS NOT
NULL conditions, like:
     SELECT * FROM table_name WHERE column_name IS NOT NULL;

     http://www.mysql.com/doc/en/Working_with_NULL.html



-- 
For technical support contracts, goto https://order.mysql.com/?ref=ensita
This email is sponsored by Ensita.net http://www.ensita.net/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Egor Egorov
 / /|_/ / // /\ \/ /_/ / /__   [EMAIL PROTECTED]
/_/  /_/\_, /___/\___\_\___/   MySQL AB / Ensita.net
       <___/   www.mysql.com




---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to