Searching text in memo fields of Access 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I would like to know if it is possible to search for specific text within
memo fields of Access 2003 databases?
 
David said:
I would like to know if it is possible to search for specific text within
memo fields of Access 2003 databases?


Yes. Use the Like operator along with wildcards, something
like:

SELECT *
FROM thetable
WHERE memofield Like "*specific text*"
 

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

Back
Top