Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

concatenare due colonne del database in una colonna del set di risultati

Il modo standard SQL per farlo sarebbe:

SELECT COALESCE(field1, '') || COALESCE(field2, '') || COALESCE(field3, '') FROM table1

Esempio:

INSERT INTO table1 VALUES ('hello', null, 'world');
SELECT COALESCE(field1, '') || COALESCE(field2, '') || COALESCE(field3, '') FROM table1;

helloworld