Write a query to find the names of users that begin with "um" in SQL?
SELECT * FROM employee WHERE name LIKE 'um%';
BY Best Interview Question ON 13 Jan 2019
SELECT * FROM employee WHERE name LIKE 'um%';