mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 18:02:24 +00:00
Merge pull request #72841 from ClickHouse/Avogar-patch-7
Update example in JSON docs
This commit is contained in:
commit
fa7814e4ef
@ -73,6 +73,7 @@ SELECT '{"a" : {"b" : 42},"c" : [1, 2, 3], "d" : "Hello, World!"}'::JSON AS json
|
|||||||
Using CAST from `Tuple`:
|
Using CAST from `Tuple`:
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
|
SET enable_named_columns_in_function_tuple = 1;
|
||||||
SELECT (tuple(42 AS b) AS a, [1, 2, 3] AS c, 'Hello, World!' AS d)::JSON AS json;
|
SELECT (tuple(42 AS b) AS a, [1, 2, 3] AS c, 'Hello, World!' AS d)::JSON AS json;
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -97,8 +98,9 @@ SELECT map('a', map('b', 42), 'c', [1,2,3], 'd', 'Hello, World!')::JSON AS json;
|
|||||||
Using CAST from deprecated `Object('json')`:
|
Using CAST from deprecated `Object('json')`:
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
SELECT '{"a" : {"b" : 42},"c" : [1, 2, 3], "d" : "Hello, World!"}'::Object('json')::JSON AS json;
|
SET allow_experimental_object_type = 1;
|
||||||
```
|
SELECT '{"a" : {"b" : 42},"c" : [1, 2, 3], "d" : "Hello, World!"}'::Object('json')::JSON AS json;
|
||||||
|
```
|
||||||
|
|
||||||
```text
|
```text
|
||||||
┌─json───────────────────────────────────────────┐
|
┌─json───────────────────────────────────────────┐
|
||||||
|
Loading…
Reference in New Issue
Block a user