Search code examples
sql-serversql-server-2012concatenationcollate

Use Collate in CONCAT


I was trying to concatonate 2 columns with a whitespace in between and got a collation error:

SELECT DISTINCT
    p.PERSON_ID,
    p.ID_NUMBER,
    CONCAT(p.FULLNAMES, CONCAT(' ', p.SURNAME)) AS NAME,
    o.ORG_NAME,
    w.WARD_DESCRIPTION AS WARD,
    ess.DESCRIPTION AS SECTOR

Cannot resolve the collation conflict between "SQL_Latin1_General_CP1_CI_AS" and "Latin1_General_CI_AS" in the concat operation

The collation of both the offending columns in my database is: Latin1_General_CI_AS

So then I was trying to collate the whitespace to this collation, but I have no idea how to do this. My attempt:

CONCAT(p.FULLNAMES, (CONCAT((COLLATE Latin1_General_CI_AS = ' '), p.SURNAME))) AS NAME,

or something?


Solution

  • You put the COLLATE after each field, viz in the worst case scenario:

    SELECT DISTINCT
        CONCAT(p.FULLNAMES COLLATE Latin1_General_CI_AS, 
          (CONCAT(' ' COLLATE Latin1_General_CI_AS, 
              p.SURNAME COLLATE Latin1_General_CI_AS))) AS NAME
    FROM Person p