Q. What does this query return?
Code:SELECT SUBSTRING('MySQL', 2, 3);
β
Correct Answer: (B)
ySQ
Explanation: `SUBSTRING(str, pos, len)` returns part of a string starting at position `pos` with `len` characters.