1.

Write a query to find the names of users that begin with "um" in SQL?

Answer»

SELECT * FROM EMPLOYEE WHERE NAME LIKE 'um%';



Discussion

No Comment Found