Alexander Wallace <awallace(at)rwsoft-online(dot)com> writes:
> SELECT FirstName + ' ' + LastName AS [Customer Name] FROM tblCustomers
Postgres follows the ANSI SQL spec, which says that the string
concatenation operator is || not +.
regards, tom lane