Advertisements
Advertisements
Question
Consider the string: "Database Management System"
. Write suitable SQL query for the following:
To extract and display "Manage"
from the string.
One Line Answer
Solution
SELECT SUBSTRING('Database Management System', 10, 6);
shaalaa.com
Is there an error in this question or solution?