-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdict_list_combination_to_table.txt
87 lines (59 loc) · 1.17 KB
/
dict_list_combination_to_table.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{"a": "b", "c": "d"} =>
temp
id_0| a | c |
-----+---+---+
0 | b | d |
[{"a": "b", "c": "d"}, {"a": "e", "c": "f"}] =>
temp
id_0| a | c |
-----+---+---+
0 | b | d |
-----+---+---+
1 | e | f |
(the keys never overlap)
[{"a": "b", "c": "d"}, {"g": "h", "i": "j"}] =>
temp
id_0| a | c | g | i |
-----+---+---+---+---+
0 | b | d |h |j |
-----+---+---+---+---+
[{"a": "b", "c": "d"}, "k"] =>
raise exception
{"a": "b", "c":[{"aa": "bb", "cc": "d"}, {"aa": "e", "cc": "f"}]} =>
temp
id_0| a |
-----+---+
0 | b |
-----+---+
temp__c(table name)
id_0|id_c_1| aa | cc |
-----+------+----+----+
0 | 0 | bb | d |
-----+------+----+----+
0 | 1 | e | f |
{"a": "b", "c":{"aa": "bb", "cc": "d"}} =>
temp
id_0| a |
-----+---+
0 | b |
-----+---+
temp__c(table name)
id_0|id_c_1| aa | cc |
----+------+----+----+
0 | 0 | bb | d |
----+------+----+----+
[{"a": "b", "c": "d"}, [{"g": "h", "i": "j"}, {"g": "k", "i": "m"}]] =>
raise exception
{"a": ["b", "c", "d"]} =>
temp
id_0 |
-----|
0 |
-----+
temp__a
id_0 |id_a_1 | a |
-----+-------|-----+
0 | 0 | b |
0 | 1 | c |
0 | 2 | d |
-----+-------+-----+