SóProvas


ID
708964
Banca
FCC
Órgão
MPE-PE
Ano
2012
Provas
Disciplina
Banco de Dados
Assuntos

A função string do banco de dados MYSQL que retorna a posição da primeira ocorrência de uma string é denominada

Alternativas
Comentários
  • INSTR(str,substr)

    Returns the position of the first occurrence of substring substr in string str. This is the same as the two-argument form of LOCATE(), except that the order of the arguments is reversed.

    mysql> SELECT INSTR('foobarbar', 'bar'); -> 4mysql> SELECT INSTR('xbar', 'foobar'); -> 0

    This function is multi-byte safe, and is case sensitive only if at least one argument is a binary string.

    Fonte: http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_instr