A

Admin • 833K Points
Coach

Q. What does this query do?

Code:
SELECT name FROM employees WHERE name LIKE '%son';
  • (A) Names ending with 'son'
  • (B) Names containing 'son'
  • (C) Names starting with 'son'
  • (D) All employee names
  • Correct Answer - Option(A)
  • Views: 24
  • Filed under category MySQL
  • Hashtags:

Explanation by: Admin

`'%son'` matches names that end with 'son'.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.