Bạn có thể sử dụng một hàm định dạng và từ khóa VARIADIC. Nó yêu cầu 9.3, đâu là đã sửa lỗi trong việc triển khai chức năng khác nhau
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)