Entering data
I have created the following sql query to search for records that contain 'thistext' anywhere in the record and to display that record.
SELECT adverts.title
FROM adverts
WHERE (((adverts.title) Like "*thistext*"));
The query works fine, however, I have to perform this a number of times using different words. How can I make it so that when you run the query it asks you to input the text you want to search for?
I am a near beginner and am using Access 2002
I have created the following sql query to search for records that contain 'thistext' anywhere in the record and to display that record.
SELECT adverts.title
FROM adverts
WHERE (((adverts.title) Like "*thistext*"));
The query works fine, however, I have to perform this a number of times using different words. How can I make it so that when you run the query it asks you to input the text you want to search for?
I am a near beginner and am using Access 2002
Last edited: