Solved

The Following SQL Query

Question 10

Multiple Choice

The following SQL query:
SELECT lastName FROM Authors
WHERE lastName LIKE '%e_'


A) selects from the table Authors the lastName fields which start with any single character followed by an 'e', then any number of additional characters.
B) selects from the table Authors the lastName fields which start with either the letter e followed by any number of additional characters.
C) selects from the table Authors the lastName fields which constist of any number of characters followed by an 'e' and any single character.
D) selects from the table Authors the lastName fields which end with the letter 'e'.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions