Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to locate for a blank data

Status
Not open for further replies.

angelleynes

Programmer
Dec 28, 2001
46
0
0
US
I need help on how to locate for a blank data, the field is text datatype...

thanks in advance!
 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top