memo field searchable?

W

wmerrick

is the memo field searchable? We want to use it to record
notes, and we want to search the notes in the future by
keywords...
 
J

John Vinson

is the memo field searchable? We want to use it to record
notes, and we want to search the notes in the future by
keywords...

Certainly. You cannot put an index on it, so the search may be slow if
you have a lot of records and/or a lot of text in the memo field, but
a Query like

SELECT * FROM MyTable
WHERE memofield LIKE "*zebra*"

will find all the records containing zebra in the memo field.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top