locate(substr, str[, pos]) - Returns the position of the first occurrence of substr in str after position pos
Example:
  > SELECT locate('bar', 'foobarbar', 5) FROM src LIMIT 1;
  7
