Pavel Stehule <pavel.steh...@gmail.com> wrote:
 
> what is more readable?
> 
> select 'i=' || i || ', b=' || b || ', c=' || c ..
> 
> or
> 
> select format('i=%, b=%, c=%', i, b, c ..)
 
Seriously, those are about dead even for me.  The concatenation
might have a slight edge, particularly since I have the option, if
it gets out of hand, to do:
 
select 'i=' || i
  || ', b=' || b
  || ', c=' || c
  ..
 
-Kevin

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to