Sep 24, 2002 #1 angelleynes Programmer Joined Dec 28, 2001 Messages 46 Location US I need help on how to locate for a blank data, the field is text datatype... thanks in advance!
Sep 24, 2002 #2 MeanGreen IS-IT--Management Joined Sep 12, 2002 Messages 672 Location US Try this: select <column> from <table> where <column> like ' ' When dealing with TEXT datatype you use the LIKE statement instead of an equal sign. Good Luck. Upvote 0 Downvote
Try this: select <column> from <table> where <column> like ' ' When dealing with TEXT datatype you use the LIKE statement instead of an equal sign. Good Luck.
Sep 24, 2002 Thread starter #3 angelleynes Programmer Joined Dec 28, 2001 Messages 46 Location US thanks for your help... Upvote 0 Downvote