Advertisements
Advertisements
Question
Consider the string: "Database Management System"
. Write suitable SQL query for the following:
Display the position of the first occurrence of "base"
in the given string.
One Line Answer
Solution
SELECT INSTR('Database Management System', 'base');
shaalaa.com
Is there an error in this question or solution?