INSTR

suggest change

Return the index of the first occurrence of a substring (zero if not found)

Syntax: INSTR ( string, substring )

SELECT INSTR('FooBarBar', 'Bar') -- return 4
SELECT INSTR('FooBarBar', 'Xar') -- return 0

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


String Functions:
*INSTR

Table Of Contents