SóProvas


ID
2858728
Banca
CCV-UFC
Órgão
UFC
Ano
2018
Provas
Disciplina
Banco de Dados
Assuntos

Utilizando o banco de dados PostgresSQL, selecione a instrução SQL correta que concatena as palavras 'UFC' e 'ti' para formar 'UFCti''.

Alternativas
Comentários
  • B- SELECT 'UFC' || 'ti'

  • o.O

    Achei que fosse com o +

  • Não sabia dessa

  • == MySQL: CONCAT(string1, string2). (https://dev.mysql.com/doc/refman/8.0/en/string-functions.html)

    == Postgres: string1 || string2. (https://www.postgresql.org/docs/9.1/functions-string.html)

    == SQLServer: CONCAT(string1, string2) (https://docs.microsoft.com/pt-br/sql/t-sql/functions/concat-transact-sql?view=sql-server-ver15) ou string1 + string2 (https://docs.microsoft.com/pt-br/sql/t-sql/language-elements/string-concatenation-transact-sql?view=sql-server-ver15)