I have built a database for my company. It contains tables storing information on courses and who they are run by. I have built a query which allows the user to type in the name of the course and then the query will display information about that course.
I wish to modify the query so that the user can enter a word such as "customer" and the query will then display all courses that contain that word in the course title, for example "customer service" "customer relations" etc. At the moment the use has to type in "customer service" to find customer service and "customer relations" to find customer relations.
the SQL code for my query is like this:
SELECT Courses.[Ref no], Courses.[Client name], Courses.[Course title], Courses.Description, Courses.[Project manager]
FROM Courses
WHERE (((Courses.[Course title])=[Please type in title]));
Can anyone help?
I wish to modify the query so that the user can enter a word such as "customer" and the query will then display all courses that contain that word in the course title, for example "customer service" "customer relations" etc. At the moment the use has to type in "customer service" to find customer service and "customer relations" to find customer relations.
the SQL code for my query is like this:
SELECT Courses.[Ref no], Courses.[Client name], Courses.[Course title], Courses.Description, Courses.[Project manager]
FROM Courses
WHERE (((Courses.[Course title])=[Please type in title]));
Can anyone help?