Hello.
I have a table containing the following:
Table 1
-------------
ID Title
-------------
1 Desk Procedures
2 Light Procedure, lamps
3 Bottom Procedures, Fixtures
I'm trying to do a query that uses a keyword entered by a user to do an exact match search. My query looks like this:
SELECT * FROM [Table 1] WHERE Title Like * [keyword] *
If the user enters "procedure", it returns all 3 records. I want it to return only record 2.
I tried to do
WHERE Instr(1, [Table 1].Title, keyword) > 0 but that also returns all 3.
-Sofia
I have a table containing the following:
Table 1
-------------
ID Title
-------------
1 Desk Procedures
2 Light Procedure, lamps
3 Bottom Procedures, Fixtures
I'm trying to do a query that uses a keyword entered by a user to do an exact match search. My query looks like this:
SELECT * FROM [Table 1] WHERE Title Like * [keyword] *
If the user enters "procedure", it returns all 3 records. I want it to return only record 2.
I tried to do
WHERE Instr(1, [Table 1].Title, keyword) > 0 but that also returns all 3.
-Sofia