forked from OtterMind/Chat2DB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlResult.json
More file actions
169 lines (169 loc) · 3.59 KB
/
Copy pathsqlResult.json
File metadata and controls
169 lines (169 loc) · 3.59 KB
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
167
168
169
{
"success": true,
"errorCode": null,
"errorMessage": null,
"data": [
{
"sql": "SELECT *\nFROM students\nLIMIT 500",
"description": "执行成功",
"message": null,
"success": true,
"headerList": [
{
"dataType": "NUMERIC",
"name": "id"
},
{
"dataType": "STRING",
"name": "name"
},
{
"dataType": "STRING",
"name": "gender"
},
{
"dataType": "DATETIME",
"name": "birthday"
},
{
"dataType": "STRING",
"name": "address"
},
{
"dataType": "STRING",
"name": "phone"
},
{
"dataType": "STRING",
"name": "email"
},
{
"dataType": "DATETIME",
"name": "create_time"
},
{
"dataType": "DATETIME",
"name": "update_time"
}
],
"dataList": [
[
"1",
"张三",
"男",
null,
"北京市海淀区",
"12345678901",
"zhangsan@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"2",
"李四",
"男",
null,
"上海市浦东新区",
"12345678902",
"lisi@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"3",
"王五",
"女",
null,
"广州市天河区",
"12345678903",
"wangwu@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"4",
"赵六",
"男",
null,
"深圳市南山区",
"12345678904",
"zhaoliu@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"5",
"陈七",
"女",
null,
"武汉市江汉区",
"12345678905",
"chenqi@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"6",
"刘八",
"男",
null,
"成都市高新区",
"12345678906",
"liuba@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"7",
"魏九",
"女",
null,
"重庆市渝北区",
"12345678907",
"weijiu@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"8",
"孙十",
"男",
null,
"南京市鼓楼区",
"12345678908",
"sunshi@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"9",
"郑十一",
"男",
null,
"西安市雁塔区",
"12345678909",
"zhengshiyi@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
],
[
"10",
"许十二",
"女",
null,
"苏州市姑苏区",
"12345678910",
"xushier@example.com",
"2023-05-31 10:41:56.000",
"2023-05-31 10:41:56.000"
]
],
"sqlType": "SELECT",
"hasNextPage": false,
"pageNo": 1,
"pageSize": 500,
"duration": 6
}
],
"traceId": null
}