SóProvas


ID
2846362
Banca
FCC
Órgão
SEFAZ-SC
Ano
2018
Provas
Disciplina
Banco de Dados
Assuntos

Um profissional de TI deseja utilizar algumas funções do Oracle Database 12c para:


I. Remover todos os caracteres especificados do começo ou do final de uma string.

II. Obter a localização de uma substring em uma string.


Para tanto, ele deve usar, respectivamente, as funções

Alternativas
Comentários
  • The Oracle/PLSQL TRIM function removes all specified characters either from the beginning or the end of a string.

    TRIM( [ [ LEADING | TRAILING | BOTH ] trim_character FROM ] string1 )

    Example:

    TRIM('  tech  ')

    Result: 'tech'

    TRIM(' ' FROM '  tech  ')

    Result: 'tech'

    TRIM(LEADING '0' FROM '000123')

    Result: '123'

    TRIM(TRAILING '1' FROM 'Tech1')

    Result: 'Tech'

    TRIM(BOTH '1' FROM '123Tech111')

    Result: '23Tech'

    Bons estudos a todos!

    https://www.techonthenet.com/oracle/functions/trim.php