-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfew_shot_examples.json
More file actions
64 lines (64 loc) · 1.27 KB
/
few_shot_examples.json
File metadata and controls
64 lines (64 loc) · 1.27 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
[
{
"question": "木马检测记录总数",
"gold_sql": "SELECT COUNT(*) AS cnt FROM horse",
"must_tables": [
"horse"
],
"must_columns": [
"COUNT(*)"
]
},
{
"question": "木马检测记录总数",
"gold_sql": "SELECT COUNT(*) AS cnt FROM horse",
"must_tables": [
"horse"
],
"must_columns": [
"COUNT(*)"
]
},
{
"question": "按操作系统统计终端数量",
"gold_sql": "SELECT os_type, COUNT(*) AS cnt FROM node GROUP BY os_type",
"must_tables": [
"node"
],
"must_columns": [
"os_type",
"COUNT(*)"
]
},
{
"question": "按操作系统统计终端数量",
"gold_sql": "SELECT os_type, COUNT(*) AS cnt FROM node GROUP BY os_type",
"must_tables": [
"node"
],
"must_columns": [
"os_type",
"COUNT(*)"
]
},
{
"question": "今天发现的木马",
"gold_sql": "SELECT COUNT(*) AS cnt FROM horse WHERE time >= CURDATE()",
"must_tables": [
"horse"
],
"must_columns": [
"COUNT(*)"
]
},
{
"question": "今天发现的木马",
"gold_sql": "SELECT COUNT(*) AS cnt FROM horse WHERE time >= CURDATE()",
"must_tables": [
"horse"
],
"must_columns": [
"COUNT(*)"
]
}
]