Informatics Practices

Which of the following functions returns the position of a substring in a given string ?

  1. MID
  2. INSTR
  3. SUBSTR
  4. CHAR

SQL Queries

2 Likes

Answer

INSTR

Reason — The INSTR() function searches for given second string into the given first string and returns the position.

Answered By

1 Like


Related Questions