Pavel Stehule <pavel(dot)stehule(at)gmail(dot)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