KN123 commited on
Commit
c31d89b
1 Parent(s): d9f2682

Update sample.txt

Browse files
Files changed (1) hide show
  1. 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
+ }