CBSE Class 12 Informatics Practices
Question 53 of 81
MySQL Functions — Question 4
Back to all questionsThe MID() function returns a substring starting from the specified position. The syntax is:
MID(str, pos, len).
It returns a substring from str starting at position pos and containing len characters. For example,
SELECT MID('Quadratically', 5, 6);+---------------------------+
| MID('Quadratically', 5,6) |
+---------------------------+
| ratica |
+---------------------------+