File size: 398 Bytes
c31d89b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "text": "find employees with salary greater than 50000",
  "tables": {
    "employees": ["id", "name", "salary"]
  }
}

{
  "text": "calculate total sales per region",
  "tables": {
    "sales": ["id", "amount", "region"]
  }
}

{
  "text": "show departments with more than 10 employees",
  "tables": {
    "departments": ["id", "name"],
    "employees": ["employee_id", "department_id"]
  }
}