U kunt een formaatfunctie en VARIADIC-sleutelwoord gebruiken. Het vereist 9.3, waar is bug opgelost in variadische functie-implementatie
postgres=# SELECT format('%s %s', 'first', 'second');
format
--------------
first second
(1 row)
postgres=# SELECT format('%s %s', ARRAY['first', 'second']);
ERROR: too few arguments for format
postgres=# SELECT format('%s %s', VARIADIC ARRAY['first', 'second']);
format
--------------
first second
(1 row)