mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
785 B
785 B
┏━━━┳━━━┓
┃ g ┃ s ┃
┡━━━╇━━━┩
│ 0 │ 2 │
├───┼───┤
│ 0 │ 2 │
├───┼───┤
│ 1 │ 4 │
├───┼───┤
│ 1 │ 4 │
└───┴───┘
Totals:
┏━━━┳━━━┓
┃ g ┃ s ┃
┡━━━╇━━━┩
│ 0 │ 6 │
└───┴───┘
--
0 2
0 2
1 4
1 4
0 6
--
{
"meta":
[
{
"name": "g",
"type": "UInt64"
},
{
"name": "s",
"type": "UInt64"
}
],
"data":
[
{
"g": "0",
"s": "2"
},
{
"g": "0",
"s": "2"
},
{
"g": "1",
"s": "4"
},
{
"g": "1",
"s": "4"
}
],
"totals":
{
"g": "0",
"s": "6"
},
"rows": 4,
"rows_before_limit_at_least": 4
}
--
┃ g ┃ s ┃
┡━━━╇━━━┩
│ 0 │ 2 │
├───┼───┤
│ 0 │ 2 │
├───┼───┤
│ 1 │ 4 │
├───┼───┤
│ 1 │ 4 │
└───┴───┘
Totals:
┏━━━┳━━━┓
┃ g ┃ s ┃
┡━━━╇━━━┩
│ 0 │ 6 │
└───┴───┘
--
0 2
0 2
1 4
1 4
0 6
--
{
"meta":
[
{
"name": "g",
"type": "UInt64"
},
{
"name": "s",
"type": "UInt64"
}
],
"data":
[
{
"g": "0",
"s": "2"
},
{
"g": "0",
"s": "2"
},
{
"g": "1",
"s": "4"
},
{
"g": "1",
"s": "4"
}
],
"totals":
{
"g": "0",
"s": "6"
},
"rows": 4,
"rows_before_limit_at_least": 4
}
--