klornpallier
Technical User
I need to COUNT the number of 'employees' that have 'forenames' beginning with M AND A but the query below dont work. Please help
SELECT COUNT(forenames) FROM employee
WHERE forenames LIKE 'M%'
AND LIKE 'A%'
SELECT COUNT(forenames) FROM employee
WHERE forenames LIKE 'M%'
AND LIKE 'A%'