Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 522 Bytes

File metadata and controls

28 lines (16 loc) · 522 Bytes

Funzione concat

Concatena svariate stringhe in una sola. Valori NULL sono convertiti in stringhe vuote. Altri valori (come i numeri) sono convertiti in stringa.

Sintassi

concat(string1, string2, …)

Argomenti

  • string un valore stringa

Esempi

  • concat('To', 'tò') → 'Totò'
  • concat('a','b','c','d','e') → 'abcde'
  • concat('Anno ', 2018) → 'Anno 2018'
  • concat('QGIS 3.0', NULL) → 'QGIS 3.0'

nota bene

--

osservazioni

--