schema
stringclasses
5 values
question
stringclasses
363 values
rejected
stringclasses
286 values
chosen
stringclasses
290 values
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Who are the employees in the Marketing department?
UNKNOWN
UNKNOWN
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which departments have a manager with ID less than 239?
SELECT department_name FROM departments WHERE manager_id > 127
SELECT department_name FROM departments WHERE manager_id < 239
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Who are the employees in the Sales department?
UNKNOWN
UNKNOWN
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What employees joined after 2005?
UNKNOWN
UNKNOWN
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which employees have a bonus less than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 2000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which employees have a bonus less than 1000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 1000
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees received a bonus greater than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 6000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What is the average age of employees in IT?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "IT"
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which departments have a manager with ID less than 223?
SELECT department_name FROM departments WHERE manager_id > 219
SELECT department_name FROM departments WHERE manager_id < 223
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees were present on Tuesday?
SELECT name FROM employees WHERE department = "Sales"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Tuesday" AND status = "Present"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees have a bonus less than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
How many projects started in 2016?
SELECT * FROM projects WHERE start_year > 2019
SELECT project_name FROM projects WHERE start_year < 2016
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
What projects started before 2008?
SELECT * FROM projects WHERE start_year > 2027
SELECT project_name FROM projects WHERE start_year < 2008
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
What employees joined after 2002?
UNKNOWN
UNKNOWN
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Who are the employees in the Sales department?
UNKNOWN
UNKNOWN
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees were present on Tuesday?
SELECT name FROM employees WHERE department = "IT"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Tuesday" AND status = "Present"
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees were present on Monday?
SELECT name FROM employees WHERE department = "Finance"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Monday" AND status = "Present"
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
What is the average age of employees in Finance?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Finance"
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
What is the average age of employees in IT?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "IT"
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
How many projects started in 2018?
SELECT * FROM projects WHERE start_year > 2016
SELECT project_name FROM projects WHERE start_year < 2018
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees were present on Tuesday?
SELECT name FROM employees WHERE department = "Finance"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Tuesday" AND status = "Present"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees have a bonus less than 1000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 1000
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Who are the employees in the Sales department?
UNKNOWN
UNKNOWN
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Who are the employees in the Sales department?
UNKNOWN
UNKNOWN
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which employees have a bonus less than 1000?
SELECT * FROM bonuses WHERE bonus_amount > 6000
SELECT * FROM bonuses WHERE bonus_amount > 1000
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What is the average age of employees in HR?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "HR"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Who are the employees in the Sales department?
UNKNOWN
UNKNOWN
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees were present on Wednesday?
SELECT name FROM employees WHERE department = "IT"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Wednesday" AND status = "Present"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees received a bonus greater than 1000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 1000
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which employees received a bonus greater than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 21000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which departments have a manager with ID less than 79?
SELECT department_name FROM departments WHERE manager_id > 182
SELECT department_name FROM departments WHERE manager_id < 79
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees have a bonus less than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Who are the employees in the Marketing department?
UNKNOWN
UNKNOWN
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which departments have a manager with ID less than 292?
SELECT department_name FROM departments WHERE manager_id > 282
SELECT department_name FROM departments WHERE manager_id < 292
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
What is the average age of employees in IT?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "IT"
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
How many projects started in 2003?
SELECT * FROM projects WHERE start_year > 2025
SELECT project_name FROM projects WHERE start_year < 2003
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Who are the employees in the HR department?
UNKNOWN
UNKNOWN
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which departments have a manager with ID less than 263?
SELECT department_name FROM departments WHERE manager_id > 219
SELECT department_name FROM departments WHERE manager_id < 263
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which employees have a bonus less than 1000?
SELECT * FROM bonuses WHERE bonus_amount > 2000
SELECT * FROM bonuses WHERE bonus_amount > 1000
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which employees received a bonus greater than 20000?
SELECT * FROM bonuses WHERE bonus_amount > 2000
SELECT * FROM bonuses WHERE bonus_amount > 20000
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which employees have a bonus less than 20000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 20000
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
What projects started before 2010?
SELECT * FROM projects WHERE start_year > 2013
SELECT project_name FROM projects WHERE start_year < 2010
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which departments have a manager with ID less than 227?
SELECT department_name FROM departments WHERE manager_id > 122
SELECT department_name FROM departments WHERE manager_id < 227
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which departments have a manager with ID less than 217?
SELECT department_name FROM departments WHERE manager_id > 282
SELECT department_name FROM departments WHERE manager_id < 217
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Who are the employees in the Finance department?
UNKNOWN
UNKNOWN
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which departments have a manager with ID less than 188?
SELECT department_name FROM departments WHERE manager_id > 132
SELECT department_name FROM departments WHERE manager_id < 188
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What employees joined after 2011?
UNKNOWN
UNKNOWN
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
How many projects started in 2017?
SELECT * FROM projects WHERE start_year > 2010
SELECT project_name FROM projects WHERE start_year < 2017
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which departments have a manager with ID less than 76?
SELECT department_name FROM departments WHERE manager_id > 309
SELECT department_name FROM departments WHERE manager_id < 76
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which departments have a manager with ID less than 298?
SELECT department_name FROM departments WHERE manager_id > 180
SELECT department_name FROM departments WHERE manager_id < 298
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
What projects started before 2016?
SELECT * FROM projects WHERE start_year > 2014
SELECT project_name FROM projects WHERE start_year < 2016
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
What projects started before 2005?
SELECT * FROM projects WHERE start_year > 2024
SELECT project_name FROM projects WHERE start_year < 2005
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Who are the employees in the Finance department?
UNKNOWN
UNKNOWN
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Who are the employees in the Marketing department?
UNKNOWN
UNKNOWN
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which employees were present on Thursday?
SELECT name FROM employees WHERE department = "Marketing"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Thursday" AND status = "Present"
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which departments have a manager with ID less than 193?
SELECT department_name FROM departments WHERE manager_id > 277
SELECT department_name FROM departments WHERE manager_id < 193
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What is the average age of employees in Marketing?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Marketing"
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees have a bonus less than 20000?
SELECT * FROM bonuses WHERE bonus_amount > 6000
SELECT * FROM bonuses WHERE bonus_amount > 20000
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which departments have more than 9 employees?
INVALID QUERY
INVALID QUERY
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees were present on Friday?
SELECT name FROM employees WHERE department = "HR"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Friday" AND status = "Present"
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
How many projects started in 2006?
SELECT * FROM projects WHERE start_year > 2017
SELECT project_name FROM projects WHERE start_year < 2006
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
What is the average age of employees in HR?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "HR"
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which employees have a bonus less than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 2000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which departments have a manager with ID less than 67?
SELECT department_name FROM departments WHERE manager_id > 237
SELECT department_name FROM departments WHERE manager_id < 67
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Who are the employees in the IT department?
UNKNOWN
UNKNOWN
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which employees received a bonus greater than 1000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 1000
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which employees received a bonus greater than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 6000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which departments have more than 16 employees?
INVALID QUERY
INVALID QUERY
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Who are the employees in the Marketing department?
UNKNOWN
UNKNOWN
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which employees were present on Tuesday?
SELECT name FROM employees WHERE department = "Marketing"
SELECT name FROM attendance JOIN employees ON attendance.employee_id = employees.employee_id WHERE day = "Tuesday" AND status = "Present"
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Which employees received a bonus greater than 1000?
SELECT * FROM bonuses WHERE bonus_amount > 21000
SELECT * FROM bonuses WHERE bonus_amount > 1000
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees have a bonus less than 10000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 10000
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees have a bonus less than 10000?
SELECT * FROM bonuses WHERE bonus_amount > 2000
SELECT * FROM bonuses WHERE bonus_amount > 10000
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which departments have a manager with ID less than 199?
SELECT department_name FROM departments WHERE manager_id > 284
SELECT department_name FROM departments WHERE manager_id < 199
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
Which employees have a bonus less than 5000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 5000
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
What projects started before 2015?
SELECT * FROM projects WHERE start_year > 2018
SELECT project_name FROM projects WHERE start_year < 2015
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
What employees joined after 2002?
UNKNOWN
UNKNOWN
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which employees have a bonus less than 10000?
SELECT * FROM bonuses WHERE bonus_amount > 11000
SELECT * FROM bonuses WHERE bonus_amount > 10000
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which departments have more than 5 employees?
INVALID QUERY
INVALID QUERY
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
How many projects started in 2022?
SELECT * FROM projects WHERE start_year > 2025
SELECT project_name FROM projects WHERE start_year < 2022
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which employees received a bonus greater than 20000?
SELECT * FROM bonuses WHERE bonus_amount > 2000
SELECT * FROM bonuses WHERE bonus_amount > 20000
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
What projects started before 2003?
SELECT * FROM projects WHERE start_year > 2009
SELECT project_name FROM projects WHERE start_year < 2003
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
What is the average age of employees in Marketing?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Marketing"
CREATE TABLE attendance (employee_id INTEGER, day TEXT, status TEXT)
Which departments have a manager with ID less than 289?
SELECT department_name FROM departments WHERE manager_id > 223
SELECT department_name FROM departments WHERE manager_id < 289
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
What projects started before 2018?
SELECT * FROM projects WHERE start_year > 2025
SELECT project_name FROM projects WHERE start_year < 2018
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
How many projects started in 2005?
SELECT * FROM projects WHERE start_year > 2027
SELECT project_name FROM projects WHERE start_year < 2005
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Which departments have a manager with ID less than 220?
SELECT department_name FROM departments WHERE manager_id > 275
SELECT department_name FROM departments WHERE manager_id < 220
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
How many projects started in 2003?
SELECT * FROM projects WHERE start_year > 2005
SELECT project_name FROM projects WHERE start_year < 2003
CREATE TABLE bonuses (employee_id INTEGER, bonus_amount INTEGER)
Which departments have more than 18 employees?
INVALID QUERY
INVALID QUERY
CREATE TABLE departments (department_id INTEGER, department_name TEXT, manager_id INTEGER)
What is the average age of employees in Sales?
SELECT AVG(age) FROM employees
SELECT AVG(age) FROM employees WHERE department = "Sales"
CREATE TABLE projects (project_id INTEGER, project_name TEXT, start_year INTEGER)
Who are the employees in the HR department?
UNKNOWN
UNKNOWN
CREATE TABLE employees (name TEXT, age INTEGER, department TEXT)
Who are the employees in the Finance department?
UNKNOWN
UNKNOWN