Home »
MCQs »
SQL MCQs »
SQL Pattern Matching MCQs
What does the following statement do (1)?
7. What does the following statement do?
WHERE CustomerName LIKE '%a'
- Finds any values that end with "a"
- Finds any values whose second character is "a"
- Find any values that contains only two characters ending with "a"
- Mysql > Savepoint ini;
Answer: A) Finds any values that end with "a"
Explanation:
The above statement finds any values that end with "a"