ClickHouse/docs/ru/formats/jsoncompact.rst

45 lines
1.3 KiB
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

JSONCompact
-----------
Отличается от JSON только тем, что строчки данных выводятся в массивах, а не в object-ах.
Пример:
::
{
"meta":
[
{
"name": "SearchPhrase",
"type": "String"
},
{
"name": "c",
"type": "UInt64"
}
],
"data":
[
["", "8267016"],
["интерьер ванной комнаты", "2166"],
["яндекс", "1655"],
["весна 2014 мода", "1549"],
["фриформ фото", "1480"]
],
"totals": ["","8873898"],
"extremes":
{
"min": ["","1480"],
"max": ["","8267016"]
},
"rows": 5,
"rows_before_limit_at_least": 141137
}
Этот формат подходит только для вывода результата выполнения запроса, но не для парсинга (приёма данных для вставки в таблицу).
Смотрите также формат ``JSONEachRow``.