Which query returns all records that start with the character . a . from the name column in the employees table?
o SELECT name FROM employees WHERE name LIKE 'as";
o SELECT name FROM employees WHERE name LIKE a;
o SELECT name FROM employees WHERE name LIKE 'Sa' ;
o SELECT name FROM employees WHERE name = as' ;