What does the following SQL statement return? SELECT * FROM Employees WHERE EmployeeName LIKE 'a%'
SELECT * FROM Employees WHERE EmployeeName LIKE 'a%'
It records in the Employees table where the value in the EmployeeName column doesn't have an "a".
It records in the Employees table where the value in the EmployeeName column starts with "a".
It records in the Employees table where the value in the EmployeeName column ends with "a".
It records in the Employees table where the value in the EmployeeName column has an "a".