Spaces:
Running
Running
Update sample.txt
Browse files- sample.txt +21 -0
sample.txt
CHANGED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"text": "find employees with salary greater than 50000",
|
3 |
+
"tables": {
|
4 |
+
"employees": ["id", "name", "salary"]
|
5 |
+
}
|
6 |
+
}
|
7 |
+
|
8 |
+
{
|
9 |
+
"text": "calculate total sales per region",
|
10 |
+
"tables": {
|
11 |
+
"sales": ["id", "amount", "region"]
|
12 |
+
}
|
13 |
+
}
|
14 |
+
|
15 |
+
{
|
16 |
+
"text": "show departments with more than 10 employees",
|
17 |
+
"tables": {
|
18 |
+
"departments": ["id", "name"],
|
19 |
+
"employees": ["employee_id", "department_id"]
|
20 |
+
}
|
21 |
+
}
|