Q. What does this query return?
Code:
SELECT LENGTH('MySQL');
β
Correct Answer: (B)
5
Explanation: The `LENGTH()` function returns the length of a string in bytes. 'MySQL' has 5 characters.