anki-code / anki-code/localsql
Creating 1NF table structure from json data
未关闭
- 主要语言
- Python
- 星标
- 6
- 派生
- 0
- PR 合并指标
- 30 天内没有已合并 PR
描述
Input `test.json` file:
```json
[
{"a":{ "c":1, "d": [{"e":1}, {"e:2"}] } }
]
```
LSQL:
```
lsql> SELECT * FROM test_json
a.c a.d
1 [{"e":1}, {"e:2"}]
lsql> SELECT * FROM test_json_a_d
a.c a.d.e
1 1
1 2
```
**For community:**
⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。