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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
table_create Categories TABLE_PAT_KEY ShortText
[[0,0.0,0.0],true]
column_create Categories sub_category COLUMN_SCALAR ShortText
[[0,0.0,0.0],true]
table_create Tags TABLE_PAT_KEY ShortText
[[0,0.0,0.0],true]
column_create Tags category COLUMN_SCALAR Categories
[[0,0.0,0.0],true]
table_create Memos TABLE_HASH_KEY ShortText
[[0,0.0,0.0],true]
column_create Memos tag COLUMN_SCALAR Tags
[[0,0.0,0.0],true]
load --table Memos
[
{"_key": "Groonga is fast!", "tag": "Groonga"},
{"_key": "Mroonga is fast!", "tag": "Mroonga"},
{"_key": "Groonga sticker!", "tag": "Groonga"},
{"_key": "Rroonga is fast!", "tag": "Rroonga"}
]
[[0,0.0,0.0],4]
load --table Tags
[
{"_key": "Groonga", "category": "C/C++"},
{"_key": "Mroonga", "category": "C/C++"},
{"_key": "Rroonga", "category": "Ruby"}
]
[[0,0.0,0.0],3]
load --table Categories
[
{"_key": "C/C++", "sub_category": "Programming language"},
{"_key": "Ruby", "sub_category": "Programming language"}
]
[[0,0.0,0.0],2]
select Memos --drilldowns[category].table tag --drilldowns[category].keys category --drilldowns[category].output_columns _key,_nsubrecs,sub_category --drilldowns[sub_category].table category --drilldowns[sub_category].keys sub_category --drilldowns[sub_category].output_columns _key,_nsubrecs --drilldowns[tag].keys tag --drilldowns[tag].output_columns _key,_nsubrecs,category
[
[
0,
0.0,
0.0
],
[
[
[
4
],
[
[
"_id",
"UInt32"
],
[
"_key",
"ShortText"
],
[
"tag",
"Tags"
]
],
[
1,
"Groonga is fast!",
"Groonga"
],
[
2,
"Mroonga is fast!",
"Mroonga"
],
[
3,
"Groonga sticker!",
"Groonga"
],
[
4,
"Rroonga is fast!",
"Rroonga"
]
],
{
"category": [
[
2
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
],
[
"sub_category",
"ShortText"
]
],
[
"C/C++",
2,
"Programming language"
],
[
"Ruby",
1,
"Programming language"
]
],
"sub_category": [
[
1
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
]
],
[
"Programming language",
2
]
],
"tag": [
[
3
],
[
[
"_key",
"ShortText"
],
[
"_nsubrecs",
"Int32"
],
[
"category",
"Categories"
]
],
[
"Groonga",
2,
"C/C++"
],
[
"Mroonga",
1,
"C/C++"
],
[
"Rroonga",
1,
"Ruby"
]
]
}
]
]
|