I want to build a query to concatenate a multipla value from database. So this is the query:
SELECT FiscalCode + ' - ' + Name + ' ' + Surname + ' - ' + City + ' - ' BirthTime AS Value, FiscalCode AS OrderBy
FROM AA_V_PHR_CCD_Person
FiscalCode,Name,Surname IS NOT NULL into database configuration but City and BirthTime are NULLABLE into the database configuration.
Now if City or BirthTime is NULL on the db the result of the query is NULL, I can I fix this problem?