S
Siegfried Heintze
Can anyone tell me how to make this attached SQL statement work? I'm trying
to concatenate two fields from two different tables using a plus (+) and it
does not work! I also tried CONCAT(CaseTypes.sDescription,
BaseCaseTypes.sDescripton ) but that does not work either!
Thanks,
Siegfried
SELECT CaseTypes.id AS id, CaseTypes.sDescription +
BaseCaseTypes.sDescripton AS sDesc, bDefault FROM CaseTypes, BaseCaseTypes
WHERE bPrivate = 0 AND CaseTypes.ridBaseType = BaseCaseTypes.id ORDER BY
CaseTypes.sDescription
to concatenate two fields from two different tables using a plus (+) and it
does not work! I also tried CONCAT(CaseTypes.sDescription,
BaseCaseTypes.sDescripton ) but that does not work either!
Thanks,
Siegfried
SELECT CaseTypes.id AS id, CaseTypes.sDescription +
BaseCaseTypes.sDescripton AS sDesc, bDefault FROM CaseTypes, BaseCaseTypes
WHERE bPrivate = 0 AND CaseTypes.ridBaseType = BaseCaseTypes.id ORDER BY
CaseTypes.sDescription