Given a Table with the Structure: EMPLOYEE (EmpNo,Name,Salary,HireDate),which of the Following
Multiple Choice
Given a table with the structure: EMPLOYEE (EmpNo,Name,Salary,HireDate) ,which of the following would find all employees whose name begins with the letter "S" using standard SQL?
A) SELECT *
FROM EMPLOYEE
WHERE Name IN ['S'];
B) SELECT EmpNo
FROM EMPLOYEE
WHERE Name LIKE 'S';
C) SELECT *
FROM Name
WHERE EMPLOYEE LIKE 'S*';
D) SELECT *
FROM EMPLOYEE
WHERE Name LIKE 'S%';
E) None of the above.
Correct Answer:

Verified
Correct Answer:
Verified
Q19: SQL can only query a single table.
Q22: Arithmetic in SQL statements is limited to
Q38: SQL includes a data definition language,a data
Q44: In an SQL query,which SQL keyword actually
Q47: The WHERE clause contains the condition that
Q50: In an SQL query,which SQL keyword is
Q51: In an SQL query,which SQL keyword is
Q70: The SQL keyword GROUP BY instructs the
Q75: Briefly describe subqueries and joins.Explain when each
Q112: A WHERE clause can contain only one