I'm trying to do a simple query on an employee table named Workforce1. I need to filter out all the records where lastname starts with an "*". I need help with the WHERE clause. This is for MS Access. Is this possible?
SELECT Workforce1.EmployeeNo, Workforce1.LastName, Workforce1.FirstName
FROM Workforce1
WHERE ??
ORDER BY Workforce1.EmployeeNo;
SELECT Workforce1.EmployeeNo, Workforce1.LastName, Workforce1.FirstName
FROM Workforce1
WHERE ??
ORDER BY Workforce1.EmployeeNo;