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%';
Correct Answer:

Verified
Correct Answer:
Verified
Q39: SQL stands for Standard Query Language.
Q40: Only two tables can be queried by
Q41: The Microsoft Access wildcard character "_" (underscore)indicates
Q42: To obtain all columns,use an asterisk (*)wildcard
Q43: While many subqueries can be alternatively written
Q45: In an SQL query,which built-in function is
Q46: The SQL built-in function AVG computes the
Q47: The WHERE clause contains the condition that
Q48: The INTERSECT of two relations A and
Q49: An alternative to combining tables by a