Re: [GENERAL] Strange SQL result - any ideas.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [GENERAL] Strange SQL result - any ideas.
Дата
Msg-id 796.1504306902@sss.pgh.pa.us
обсуждение исходный текст
Ответ на [GENERAL] Strange SQL result - any ideas.  (Paul Linehan <linehanp@tcd.ie>)
Список pgsql-general
Paul Linehan <linehanp@tcd.ie> writes:
> I have a table (fred) that I want to transform into JSON and
> I use the following command (ignore the backslash stuff):
> ...
> which is fine (note that the field "mary" is sorted correctly) but
> I want "proper" JSON - i.e. with open and close square brackets
> i.e. ([ - ]) before and after the fields!

Well, proper JSON would also require commas between the array elements,
no?  I think what you're really after is

=# SELECT json_agg(ROW_TO_JSON(t))
FROM
(
  SELECT * FROM fred
  ORDER BY mary, jimmy, paulie
) AS t;
                                        json_agg
                                                 

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 [{"mary":2,"jimmy":43,"paulie":"asfasfasfd"}, {"mary":3,"jimmy":435,"paulie":"ererere"},
{"mary":3,"jimmy":44545,"paulie":"\\sdfs\\\\\\sfs\\\\gf"},{"mary":6,"jimmy":43343,"paulie":"eresdfssfsfasfae"},
{"mary":35,"jimmy":5,"paulie":"wrew\\sdfsd"}]
(1 row)

As far as that UNION query goes, I think you misunderstand
what UNION does.  It doesn't promise to preserve ordering.
You might have gotten the results you expected with UNION
ALL (but they still wouldn't have constituted a valid
JSON array).

            regards, tom lane


В списке pgsql-general по дате отправления:

Предыдущее
От: Paul Linehan
Дата:
Сообщение: [GENERAL] Strange SQL result - any ideas.
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: [GENERAL] Fields re-ordered on JOIN with * and USING