Home »
MCQs »
SQL MCQs »
SQL Pattern Matching MCQs
What does the following statement do?
6. What does the following statement do?
WHERE CustomerName LIKE 'a%'
- Finds any values that start with "a"
- Finds any values that start with "a%"
- Finds any values that contains only two characters starting with "a"
- All of the above
Answer: A) Finds any values that start with "a"
Explanation:
The above statement finds any values that start with "a"