May 5, 2005 at 9:58 am
HI,
What keyword, operator or whatever is used when you need to run a query that says "select * from tblResponses where there are instances of entries in the "Notes" column.
Notes is, as the word suggests, is a box on a web page where the user inserts any notes about the customer. There may not be notes for every record and I need to be able to pull all the rows in the table where notes have been entered.
thanks
May 5, 2005 at 10:01 am
You would have to know which column in the table is associated with the box in the web page.
Assuming that "Notes" is the column...
SELECT * FROM tblReponses where Notes is not null
May 6, 2005 at 12:25 pm
If there is a possibility of an empty string in that field then:
SELECT * FROM tblResponses WHERE LEN(Notes) > 0
would work better!
**ASCII stupid question, get a stupid ANSI !!!**
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply