I have the following SQL statement in Access which I want to amend to accept a variable instead of June:-
SELECT *
FROM Staff
WHERE Name LIKE "June*";
I have tried:-
SELECT *
FROM Staff
WHERE Name LIKE "[@name]*";
which does not work. I'm sure this is a straight forward question. Any help appreciated.
SELECT *
FROM Staff
WHERE Name LIKE "June*";
I have tried:-
SELECT *
FROM Staff
WHERE Name LIKE "[@name]*";
which does not work. I'm sure this is a straight forward question. Any help appreciated.