How does one concat string literals in pgsql ?
The compiler complains about the concat operator in the following code
fragment:
RAISE EXCEPTION
''SELECT DISTINCT "t1"."usesy sid" '' ||
''INTO userID '' ||
''FROM "pg_user" AS "t1" '' ||
''WHERE "t1"."usena me" = current_user '' ||
''NOT FOUND'';
Thanks in advance.
Raymond
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postg resql.org
The compiler complains about the concat operator in the following code
fragment:
RAISE EXCEPTION
''SELECT DISTINCT "t1"."usesy sid" '' ||
''INTO userID '' ||
''FROM "pg_user" AS "t1" '' ||
''WHERE "t1"."usena me" = current_user '' ||
''NOT FOUND'';
Thanks in advance.
Raymond
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postg resql.org
Comment