question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What are the positions with both players having more than 20 points and less than 10 points.
CREATE TABLE player (POSITION VARCHAR, Points INTEGER)
SELECT POSITION FROM player WHERE Points > 20 INTERSECT SELECT POSITION FROM player WHERE Points < 10
### Context: CREATE TABLE player (POSITION VARCHAR, Points INTEGER) ### Question: What are the positions with both players having more than 20 points and less than 10 points. ### Answer: SELECT POSITION FROM player WHERE Points > 20 INTERSECT SELECT POSITION FROM player WHERE Points < 10
Show total points of all players.
CREATE TABLE player (Points INTEGER)
SELECT SUM(Points) FROM player
### Context: CREATE TABLE player (Points INTEGER) ### Question: Show total points of all players. ### Answer: SELECT SUM(Points) FROM player
how many different positions are there?
CREATE TABLE player (POSITION VARCHAR)
SELECT COUNT(DISTINCT POSITION) FROM player
### Context: CREATE TABLE player (POSITION VARCHAR) ### Question: how many different positions are there? ### Answer: SELECT COUNT(DISTINCT POSITION) FROM player
what are the name of players who get more than the average points.
CREATE TABLE player (name VARCHAR, points INTEGER)
SELECT name FROM player WHERE points > (SELECT AVG(points) FROM player)
### Context: CREATE TABLE player (name VARCHAR, points INTEGER) ### Question: what are the name of players who get more than the average points. ### Answer: SELECT name FROM player WHERE points > (SELECT AVG(points) FROM player)
find the number of players whose points are lower than 30 in each position.
CREATE TABLE player (POSITION VARCHAR, points INTEGER)
SELECT COUNT(*), POSITION FROM player WHERE points < 30 GROUP BY POSITION
### Context: CREATE TABLE player (POSITION VARCHAR, points INTEGER) ### Question: find the number of players whose points are lower than 30 in each position. ### Answer: SELECT COUNT(*), POSITION FROM player WHERE points < 30 GROUP BY POSITION
which country did participated in the most number of Tournament competitions?
CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)
SELECT country FROM competition WHERE competition_type = 'Tournament' GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE competition (country VARCHAR, competition_type VARCHAR) ### Question: which country did participated in the most number of Tournament competitions? ### Answer: SELECT country FROM competition WHERE competition_type = 'Tournament' GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1
which countries did participated in both Friendly and Tournament type competitions.
CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)
SELECT country FROM competition WHERE competition_type = 'Friendly' INTERSECT SELECT country FROM competition WHERE competition_type = 'Tournament'
### Context: CREATE TABLE competition (country VARCHAR, competition_type VARCHAR) ### Question: which countries did participated in both Friendly and Tournament type competitions. ### Answer: SELECT country FROM competition WHERE competition_type = 'Friendly' INTERSECT SELECT country FROM competition WHERE competition_type = 'Tournament'
Find the countries that have never participated in any competition with Friendly type.
CREATE TABLE competition (country VARCHAR, competition_type VARCHAR)
SELECT country FROM competition EXCEPT SELECT country FROM competition WHERE competition_type = 'Friendly'
### Context: CREATE TABLE competition (country VARCHAR, competition_type VARCHAR) ### Question: Find the countries that have never participated in any competition with Friendly type. ### Answer: SELECT country FROM competition EXCEPT SELECT country FROM competition WHERE competition_type = 'Friendly'
How many furniture components are there in total?
CREATE TABLE furniture (num_of_component INTEGER)
SELECT SUM(num_of_component) FROM furniture
### Context: CREATE TABLE furniture (num_of_component INTEGER) ### Question: How many furniture components are there in total? ### Answer: SELECT SUM(num_of_component) FROM furniture
Return the name and id of the furniture with the highest market rate.
CREATE TABLE furniture (name VARCHAR, furniture_id VARCHAR, market_rate VARCHAR)
SELECT name, furniture_id FROM furniture ORDER BY market_rate DESC LIMIT 1
### Context: CREATE TABLE furniture (name VARCHAR, furniture_id VARCHAR, market_rate VARCHAR) ### Question: Return the name and id of the furniture with the highest market rate. ### Answer: SELECT name, furniture_id FROM furniture ORDER BY market_rate DESC LIMIT 1
find the total market rate of the furnitures that have the top 2 market shares.
CREATE TABLE furniture (market_rate INTEGER)
SELECT SUM(market_rate) FROM furniture ORDER BY market_rate DESC LIMIT 2
### Context: CREATE TABLE furniture (market_rate INTEGER) ### Question: find the total market rate of the furnitures that have the top 2 market shares. ### Answer: SELECT SUM(market_rate) FROM furniture ORDER BY market_rate DESC LIMIT 2
Find the component amounts and names of all furnitures that have more than 10 components.
CREATE TABLE furniture (Num_of_Component INTEGER, name VARCHAR)
SELECT Num_of_Component, name FROM furniture WHERE Num_of_Component > 10
### Context: CREATE TABLE furniture (Num_of_Component INTEGER, name VARCHAR) ### Question: Find the component amounts and names of all furnitures that have more than 10 components. ### Answer: SELECT Num_of_Component, name FROM furniture WHERE Num_of_Component > 10
Find the name and component amount of the least popular furniture.
CREATE TABLE furniture (name VARCHAR, Num_of_Component VARCHAR, market_rate VARCHAR)
SELECT name, Num_of_Component FROM furniture ORDER BY market_rate LIMIT 1
### Context: CREATE TABLE furniture (name VARCHAR, Num_of_Component VARCHAR, market_rate VARCHAR) ### Question: Find the name and component amount of the least popular furniture. ### Answer: SELECT name, Num_of_Component FROM furniture ORDER BY market_rate LIMIT 1
Find the names of furnitures whose prices are lower than the highest price.
CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, Price_in_Dollar INTEGER); CREATE TABLE furniture (name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Price_in_Dollar INTEGER)
SELECT t1.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID WHERE t2.Price_in_Dollar < (SELECT MAX(Price_in_Dollar) FROM furniture_manufacte)
### Context: CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, Price_in_Dollar INTEGER); CREATE TABLE furniture (name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Price_in_Dollar INTEGER) ### Question: Find the names of furnitures whose prices are lower than the highest price. ### Answer: SELECT t1.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID WHERE t2.Price_in_Dollar < (SELECT MAX(Price_in_Dollar) FROM furniture_manufacte)
Which manufacturer has the most number of shops? List its name and year of opening.
CREATE TABLE manufacturer (open_year VARCHAR, name VARCHAR, num_of_shops VARCHAR)
SELECT open_year, name FROM manufacturer ORDER BY num_of_shops DESC LIMIT 1
### Context: CREATE TABLE manufacturer (open_year VARCHAR, name VARCHAR, num_of_shops VARCHAR) ### Question: Which manufacturer has the most number of shops? List its name and year of opening. ### Answer: SELECT open_year, name FROM manufacturer ORDER BY num_of_shops DESC LIMIT 1
Find the average number of factories for the manufacturers that have more than 20 shops.
CREATE TABLE manufacturer (Num_of_Factories INTEGER, num_of_shops INTEGER)
SELECT AVG(Num_of_Factories) FROM manufacturer WHERE num_of_shops > 20
### Context: CREATE TABLE manufacturer (Num_of_Factories INTEGER, num_of_shops INTEGER) ### Question: Find the average number of factories for the manufacturers that have more than 20 shops. ### Answer: SELECT AVG(Num_of_Factories) FROM manufacturer WHERE num_of_shops > 20
List all manufacturer names and ids ordered by their opening year.
CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR, open_year VARCHAR)
SELECT name, manufacturer_id FROM manufacturer ORDER BY open_year
### Context: CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR, open_year VARCHAR) ### Question: List all manufacturer names and ids ordered by their opening year. ### Answer: SELECT name, manufacturer_id FROM manufacturer ORDER BY open_year
Give me the name and year of opening of the manufacturers that have either less than 10 factories or more than 10 shops.
CREATE TABLE manufacturer (name VARCHAR, open_year VARCHAR, num_of_shops VARCHAR, Num_of_Factories VARCHAR)
SELECT name, open_year FROM manufacturer WHERE num_of_shops > 10 OR Num_of_Factories < 10
### Context: CREATE TABLE manufacturer (name VARCHAR, open_year VARCHAR, num_of_shops VARCHAR, Num_of_Factories VARCHAR) ### Question: Give me the name and year of opening of the manufacturers that have either less than 10 factories or more than 10 shops. ### Answer: SELECT name, open_year FROM manufacturer WHERE num_of_shops > 10 OR Num_of_Factories < 10
what is the average number of factories and maximum number of shops for manufacturers that opened before 1990.
CREATE TABLE manufacturer (num_of_shops INTEGER, Num_of_Factories INTEGER, open_year INTEGER)
SELECT MAX(num_of_shops), AVG(Num_of_Factories) FROM manufacturer WHERE open_year < 1990
### Context: CREATE TABLE manufacturer (num_of_shops INTEGER, Num_of_Factories INTEGER, open_year INTEGER) ### Question: what is the average number of factories and maximum number of shops for manufacturers that opened before 1990. ### Answer: SELECT MAX(num_of_shops), AVG(Num_of_Factories) FROM manufacturer WHERE open_year < 1990
Find the id and number of shops for the company that produces the most expensive furniture.
CREATE TABLE manufacturer (manufacturer_id VARCHAR, num_of_shops VARCHAR); CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR, Price_in_Dollar VARCHAR)
SELECT t1.manufacturer_id, t1.num_of_shops FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id ORDER BY t2.Price_in_Dollar DESC LIMIT 1
### Context: CREATE TABLE manufacturer (manufacturer_id VARCHAR, num_of_shops VARCHAR); CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR, Price_in_Dollar VARCHAR) ### Question: Find the id and number of shops for the company that produces the most expensive furniture. ### Answer: SELECT t1.manufacturer_id, t1.num_of_shops FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id ORDER BY t2.Price_in_Dollar DESC LIMIT 1
Find the number of funiture types produced by each manufacturer as well as the company names.
CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR)
SELECT COUNT(*), t1.name FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id GROUP BY t1.manufacturer_id
### Context: CREATE TABLE furniture_manufacte (manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR) ### Question: Find the number of funiture types produced by each manufacturer as well as the company names. ### Answer: SELECT COUNT(*), t1.name FROM manufacturer AS t1 JOIN furniture_manufacte AS t2 ON t1.manufacturer_id = t2.manufacturer_id GROUP BY t1.manufacturer_id
Give me the names and prices of furnitures which some companies are manufacturing.
CREATE TABLE furniture_manufacte (price_in_dollar VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture (name VARCHAR, Furniture_ID VARCHAR)
SELECT t1.name, t2.price_in_dollar FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID
### Context: CREATE TABLE furniture_manufacte (price_in_dollar VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture (name VARCHAR, Furniture_ID VARCHAR) ### Question: Give me the names and prices of furnitures which some companies are manufacturing. ### Answer: SELECT t1.name, t2.price_in_dollar FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID
Find the market shares and names of furnitures which no any company is producing in our records.
CREATE TABLE furniture (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR)
SELECT Market_Rate, name FROM furniture WHERE NOT Furniture_ID IN (SELECT Furniture_ID FROM furniture_manufacte)
### Context: CREATE TABLE furniture (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Market_Rate VARCHAR, name VARCHAR, Furniture_ID VARCHAR) ### Question: Find the market shares and names of furnitures which no any company is producing in our records. ### Answer: SELECT Market_Rate, name FROM furniture WHERE NOT Furniture_ID IN (SELECT Furniture_ID FROM furniture_manufacte)
Find the name of the company that produces both furnitures with less than 6 components and furnitures with more than 10 components.
CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR); CREATE TABLE furniture (Furniture_ID VARCHAR, num_of_component INTEGER)
SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN manufacturer AS t3 ON t2.manufacturer_id = t3.manufacturer_id WHERE t1.num_of_component < 6 INTERSECT SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN manufacturer AS t3 ON t2.manufacturer_id = t3.manufacturer_id WHERE t1.num_of_component > 10
### Context: CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, manufacturer_id VARCHAR); CREATE TABLE manufacturer (name VARCHAR, manufacturer_id VARCHAR); CREATE TABLE furniture (Furniture_ID VARCHAR, num_of_component INTEGER) ### Question: Find the name of the company that produces both furnitures with less than 6 components and furnitures with more than 10 components. ### Answer: SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN manufacturer AS t3 ON t2.manufacturer_id = t3.manufacturer_id WHERE t1.num_of_component < 6 INTERSECT SELECT t3.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID JOIN manufacturer AS t3 ON t2.manufacturer_id = t3.manufacturer_id WHERE t1.num_of_component > 10
Display the first name and department name for each employee.
CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR)
SELECT T1.first_name, T2.department_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id
### Context: CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR) ### Question: Display the first name and department name for each employee. ### Answer: SELECT T1.first_name, T2.department_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id
List the full name (first and last name), and salary for those employees who earn below 6000.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER)
SELECT first_name, last_name, salary FROM employees WHERE salary < 6000
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER) ### Question: List the full name (first and last name), and salary for those employees who earn below 6000. ### Answer: SELECT first_name, last_name, salary FROM employees WHERE salary < 6000
Display the first name, and department number for all employees whose last name is "McEwen".
CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR, last_name VARCHAR)
SELECT first_name, department_id FROM employees WHERE last_name = 'McEwen'
### Context: CREATE TABLE employees (first_name VARCHAR, department_id VARCHAR, last_name VARCHAR) ### Question: Display the first name, and department number for all employees whose last name is "McEwen". ### Answer: SELECT first_name, department_id FROM employees WHERE last_name = 'McEwen'
Return all the information for all employees without any department number.
CREATE TABLE employees (department_id VARCHAR)
SELECT * FROM employees WHERE department_id = "null"
### Context: CREATE TABLE employees (department_id VARCHAR) ### Question: Return all the information for all employees without any department number. ### Answer: SELECT * FROM employees WHERE department_id = "null"
Display all the information about the department Marketing.
CREATE TABLE departments (department_name VARCHAR)
SELECT * FROM departments WHERE department_name = 'Marketing'
### Context: CREATE TABLE departments (department_name VARCHAR) ### Question: Display all the information about the department Marketing. ### Answer: SELECT * FROM departments WHERE department_name = 'Marketing'
when is the hire date for those employees whose first name does not containing the letter M?
CREATE TABLE employees (hire_date VARCHAR, first_name VARCHAR)
SELECT hire_date FROM employees WHERE NOT first_name LIKE '%M%'
### Context: CREATE TABLE employees (hire_date VARCHAR, first_name VARCHAR) ### Question: when is the hire date for those employees whose first name does not containing the letter M? ### Answer: SELECT hire_date FROM employees WHERE NOT first_name LIKE '%M%'
display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR)
SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%'
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR) ### Question: display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M. ### Answer: SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%'
display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M and make the result set in ascending order by department number.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR)
SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%' ORDER BY department_id
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR) ### Question: display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M and make the result set in ascending order by department number. ### Answer: SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%' ORDER BY department_id
what is the phone number of employees whose salary is in the range of 8000 and 12000?
CREATE TABLE employees (phone_number VARCHAR, salary INTEGER)
SELECT phone_number FROM employees WHERE salary BETWEEN 8000 AND 12000
### Context: CREATE TABLE employees (phone_number VARCHAR, salary INTEGER) ### Question: what is the phone number of employees whose salary is in the range of 8000 and 12000? ### Answer: SELECT phone_number FROM employees WHERE salary BETWEEN 8000 AND 12000
display all the information of employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40.
CREATE TABLE employees (department_id VARCHAR, salary VARCHAR, commission_pct VARCHAR)
SELECT * FROM employees WHERE salary BETWEEN 8000 AND 12000 AND commission_pct <> "null" OR department_id <> 40
### Context: CREATE TABLE employees (department_id VARCHAR, salary VARCHAR, commission_pct VARCHAR) ### Question: display all the information of employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40. ### Answer: SELECT * FROM employees WHERE salary BETWEEN 8000 AND 12000 AND commission_pct <> "null" OR department_id <> 40
What are the full name (first and last name) and salary for all employees who does not have any value for commission?
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary VARCHAR, commission_pct VARCHAR)
SELECT first_name, last_name, salary FROM employees WHERE commission_pct = "null"
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary VARCHAR, commission_pct VARCHAR) ### Question: What are the full name (first and last name) and salary for all employees who does not have any value for commission? ### Answer: SELECT first_name, last_name, salary FROM employees WHERE commission_pct = "null"
Display the first and last name, and salary for those employees whose first name is ending with the letter m.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary VARCHAR)
SELECT first_name, last_name, salary FROM employees WHERE first_name LIKE '%m'
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary VARCHAR) ### Question: Display the first and last name, and salary for those employees whose first name is ending with the letter m. ### Answer: SELECT first_name, last_name, salary FROM employees WHERE first_name LIKE '%m'
Find job id and date of hire for those employees who was hired between November 5th, 2007 and July 5th, 2009.
CREATE TABLE employees (job_id VARCHAR, hire_date INTEGER)
SELECT job_id, hire_date FROM employees WHERE hire_date BETWEEN '2007-11-05' AND '2009-07-05'
### Context: CREATE TABLE employees (job_id VARCHAR, hire_date INTEGER) ### Question: Find job id and date of hire for those employees who was hired between November 5th, 2007 and July 5th, 2009. ### Answer: SELECT job_id, hire_date FROM employees WHERE hire_date BETWEEN '2007-11-05' AND '2009-07-05'
What are the first and last name for those employees who works either in department 70 or 90?
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR)
SELECT first_name, last_name FROM employees WHERE department_id = 70 OR department_id = 90
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR) ### Question: What are the first and last name for those employees who works either in department 70 or 90? ### Answer: SELECT first_name, last_name FROM employees WHERE department_id = 70 OR department_id = 90
Find the salary and manager number for those employees who is working under a manager.
CREATE TABLE employees (salary VARCHAR, manager_id VARCHAR)
SELECT salary, manager_id FROM employees WHERE manager_id <> "null"
### Context: CREATE TABLE employees (salary VARCHAR, manager_id VARCHAR) ### Question: Find the salary and manager number for those employees who is working under a manager. ### Answer: SELECT salary, manager_id FROM employees WHERE manager_id <> "null"
display all the details from Employees table for those employees who was hired before 2002-06-21.
CREATE TABLE employees (hire_date INTEGER)
SELECT * FROM employees WHERE hire_date < '2002-06-21'
### Context: CREATE TABLE employees (hire_date INTEGER) ### Question: display all the details from Employees table for those employees who was hired before 2002-06-21. ### Answer: SELECT * FROM employees WHERE hire_date < '2002-06-21'
display all the information for all employees who have the letters D or S in their first name and also arrange the result in descending order by salary.
CREATE TABLE employees (salary VARCHAR, first_name VARCHAR)
SELECT * FROM employees WHERE first_name LIKE '%D%' OR first_name LIKE '%S%' ORDER BY salary DESC
### Context: CREATE TABLE employees (salary VARCHAR, first_name VARCHAR) ### Question: display all the information for all employees who have the letters D or S in their first name and also arrange the result in descending order by salary. ### Answer: SELECT * FROM employees WHERE first_name LIKE '%D%' OR first_name LIKE '%S%' ORDER BY salary DESC
display those employees who joined after 7th September, 1987.
CREATE TABLE employees (hire_date INTEGER)
SELECT * FROM employees WHERE hire_date > '1987-09-07'
### Context: CREATE TABLE employees (hire_date INTEGER) ### Question: display those employees who joined after 7th September, 1987. ### Answer: SELECT * FROM employees WHERE hire_date > '1987-09-07'
display the job title of jobs which minimum salary is greater than 9000.
CREATE TABLE jobs (job_title VARCHAR, min_salary INTEGER)
SELECT job_title FROM jobs WHERE min_salary > 9000
### Context: CREATE TABLE jobs (job_title VARCHAR, min_salary INTEGER) ### Question: display the job title of jobs which minimum salary is greater than 9000. ### Answer: SELECT job_title FROM jobs WHERE min_salary > 9000
display job Title, the difference between minimum and maximum salaries for those jobs which max salary within the range 12000 to 18000.
CREATE TABLE jobs (job_title VARCHAR, max_salary INTEGER, min_salary VARCHAR)
SELECT job_title, max_salary - min_salary FROM jobs WHERE max_salary BETWEEN 12000 AND 18000
### Context: CREATE TABLE jobs (job_title VARCHAR, max_salary INTEGER, min_salary VARCHAR) ### Question: display job Title, the difference between minimum and maximum salaries for those jobs which max salary within the range 12000 to 18000. ### Answer: SELECT job_title, max_salary - min_salary FROM jobs WHERE max_salary BETWEEN 12000 AND 18000
display the emails of the employees who have no commission percentage and salary within the range 7000 to 12000 and works in that department which number is 50.
CREATE TABLE employees (email VARCHAR, department_id VARCHAR, commission_pct VARCHAR, salary VARCHAR)
SELECT email FROM employees WHERE commission_pct = "null" AND salary BETWEEN 7000 AND 12000 AND department_id = 50
### Context: CREATE TABLE employees (email VARCHAR, department_id VARCHAR, commission_pct VARCHAR, salary VARCHAR) ### Question: display the emails of the employees who have no commission percentage and salary within the range 7000 to 12000 and works in that department which number is 50. ### Answer: SELECT email FROM employees WHERE commission_pct = "null" AND salary BETWEEN 7000 AND 12000 AND department_id = 50
display the employee ID for each employee and the date on which he ended his previous job.
CREATE TABLE job_history (employee_id VARCHAR, end_date INTEGER)
SELECT employee_id, MAX(end_date) FROM job_history GROUP BY employee_id
### Context: CREATE TABLE job_history (employee_id VARCHAR, end_date INTEGER) ### Question: display the employee ID for each employee and the date on which he ended his previous job. ### Answer: SELECT employee_id, MAX(end_date) FROM job_history GROUP BY employee_id
display those departments where more than ten employees work who got a commission percentage.
CREATE TABLE employees (department_id VARCHAR, commission_pct VARCHAR)
SELECT department_id FROM employees GROUP BY department_id HAVING COUNT(commission_pct) > 10
### Context: CREATE TABLE employees (department_id VARCHAR, commission_pct VARCHAR) ### Question: display those departments where more than ten employees work who got a commission percentage. ### Answer: SELECT department_id FROM employees GROUP BY department_id HAVING COUNT(commission_pct) > 10
Find the ids of the departments where any manager is managing 4 or more employees.
CREATE TABLE employees (department_id VARCHAR, manager_id VARCHAR, employee_id VARCHAR)
SELECT DISTINCT department_id FROM employees GROUP BY department_id, manager_id HAVING COUNT(employee_id) >= 4
### Context: CREATE TABLE employees (department_id VARCHAR, manager_id VARCHAR, employee_id VARCHAR) ### Question: Find the ids of the departments where any manager is managing 4 or more employees. ### Answer: SELECT DISTINCT department_id FROM employees GROUP BY department_id, manager_id HAVING COUNT(employee_id) >= 4
display the average salary of employees for each department who gets a commission percentage.
CREATE TABLE employees (department_id VARCHAR, salary INTEGER, commission_pct VARCHAR)
SELECT department_id, AVG(salary) FROM employees WHERE commission_pct <> "null" GROUP BY department_id
### Context: CREATE TABLE employees (department_id VARCHAR, salary INTEGER, commission_pct VARCHAR) ### Question: display the average salary of employees for each department who gets a commission percentage. ### Answer: SELECT department_id, AVG(salary) FROM employees WHERE commission_pct <> "null" GROUP BY department_id
display the country ID and number of cities for each country.
CREATE TABLE locations (country_id VARCHAR)
SELECT country_id, COUNT(*) FROM locations GROUP BY country_id
### Context: CREATE TABLE locations (country_id VARCHAR) ### Question: display the country ID and number of cities for each country. ### Answer: SELECT country_id, COUNT(*) FROM locations GROUP BY country_id
display job ID for those jobs that were done by two or more for more than 300 days.
CREATE TABLE job_history (job_id VARCHAR, end_date VARCHAR, start_date VARCHAR)
SELECT job_id FROM job_history WHERE end_date - start_date > 300 GROUP BY job_id HAVING COUNT(*) >= 2
### Context: CREATE TABLE job_history (job_id VARCHAR, end_date VARCHAR, start_date VARCHAR) ### Question: display job ID for those jobs that were done by two or more for more than 300 days. ### Answer: SELECT job_id FROM job_history WHERE end_date - start_date > 300 GROUP BY job_id HAVING COUNT(*) >= 2
display the ID for those employees who did two or more jobs in the past.
CREATE TABLE job_history (employee_id VARCHAR)
SELECT employee_id FROM job_history GROUP BY employee_id HAVING COUNT(*) >= 2
### Context: CREATE TABLE job_history (employee_id VARCHAR) ### Question: display the ID for those employees who did two or more jobs in the past. ### Answer: SELECT employee_id FROM job_history GROUP BY employee_id HAVING COUNT(*) >= 2
Find employee with ID and name of the country presently where (s)he is working.
CREATE TABLE countries (country_name VARCHAR, country_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR); CREATE TABLE locations (location_id VARCHAR, country_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, department_id VARCHAR)
SELECT T1.employee_id, T4.country_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id JOIN countries AS T4 ON T3.country_id = T4.country_id
### Context: CREATE TABLE countries (country_name VARCHAR, country_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR); CREATE TABLE locations (location_id VARCHAR, country_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, department_id VARCHAR) ### Question: Find employee with ID and name of the country presently where (s)he is working. ### Answer: SELECT T1.employee_id, T4.country_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id JOIN countries AS T4 ON T3.country_id = T4.country_id
display the department name and number of employees in each of the department.
CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR)
SELECT T2.department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY T2.department_name
### Context: CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR) ### Question: display the department name and number of employees in each of the department. ### Answer: SELECT T2.department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY T2.department_name
Can you return all detailed info of jobs which was done by any of the employees who is presently earning a salary on and above 12000?
CREATE TABLE job_history (employee_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, salary VARCHAR)
SELECT * FROM job_history AS T1 JOIN employees AS T2 ON T1.employee_id = T2.employee_id WHERE T2.salary >= 12000
### Context: CREATE TABLE job_history (employee_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, salary VARCHAR) ### Question: Can you return all detailed info of jobs which was done by any of the employees who is presently earning a salary on and above 12000? ### Answer: SELECT * FROM job_history AS T1 JOIN employees AS T2 ON T1.employee_id = T2.employee_id WHERE T2.salary >= 12000
display job title and average salary of employees.
CREATE TABLE jobs (job_title VARCHAR, job_id VARCHAR); CREATE TABLE employees (job_id VARCHAR)
SELECT job_title, AVG(salary) FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id GROUP BY T2.job_title
### Context: CREATE TABLE jobs (job_title VARCHAR, job_id VARCHAR); CREATE TABLE employees (job_id VARCHAR) ### Question: display job title and average salary of employees. ### Answer: SELECT job_title, AVG(salary) FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id GROUP BY T2.job_title
What is the full name ( first name and last name ) for those employees who gets more salary than the employee whose id is 163?
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER, employee_id VARCHAR)
SELECT first_name, last_name FROM employees WHERE salary > (SELECT salary FROM employees WHERE employee_id = 163)
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER, employee_id VARCHAR) ### Question: What is the full name ( first name and last name ) for those employees who gets more salary than the employee whose id is 163? ### Answer: SELECT first_name, last_name FROM employees WHERE salary > (SELECT salary FROM employees WHERE employee_id = 163)
return the smallest salary for every departments.
CREATE TABLE employees (department_id VARCHAR, salary INTEGER)
SELECT MIN(salary), department_id FROM employees GROUP BY department_id
### Context: CREATE TABLE employees (department_id VARCHAR, salary INTEGER) ### Question: return the smallest salary for every departments. ### Answer: SELECT MIN(salary), department_id FROM employees GROUP BY department_id
Find the first name and last name and department id for those employees who earn such amount of salary which is the smallest salary of any of the departments.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR, salary INTEGER)
SELECT first_name, last_name, department_id FROM employees WHERE salary IN (SELECT MIN(salary) FROM employees GROUP BY department_id)
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR, salary INTEGER) ### Question: Find the first name and last name and department id for those employees who earn such amount of salary which is the smallest salary of any of the departments. ### Answer: SELECT first_name, last_name, department_id FROM employees WHERE salary IN (SELECT MIN(salary) FROM employees GROUP BY department_id)
Find the employee id for all employees who earn more than the average salary.
CREATE TABLE employees (employee_id VARCHAR, salary INTEGER)
SELECT employee_id FROM employees WHERE salary > (SELECT AVG(salary) FROM employees)
### Context: CREATE TABLE employees (employee_id VARCHAR, salary INTEGER) ### Question: Find the employee id for all employees who earn more than the average salary. ### Answer: SELECT employee_id FROM employees WHERE salary > (SELECT AVG(salary) FROM employees)
display the employee id and salary of all employees who report to Payam (first name).
CREATE TABLE employees (employee_id VARCHAR, salary VARCHAR, manager_id VARCHAR, first_name VARCHAR)
SELECT employee_id, salary FROM employees WHERE manager_id = (SELECT employee_id FROM employees WHERE first_name = 'Payam')
### Context: CREATE TABLE employees (employee_id VARCHAR, salary VARCHAR, manager_id VARCHAR, first_name VARCHAR) ### Question: display the employee id and salary of all employees who report to Payam (first name). ### Answer: SELECT employee_id, salary FROM employees WHERE manager_id = (SELECT employee_id FROM employees WHERE first_name = 'Payam')
find the name of all departments that do actually have one or more employees assigned to them.
CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR)
SELECT DISTINCT T2.department_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id
### Context: CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR); CREATE TABLE employees (department_id VARCHAR) ### Question: find the name of all departments that do actually have one or more employees assigned to them. ### Answer: SELECT DISTINCT T2.department_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id
get the details of employees who manage a department.
CREATE TABLE departments (department_id VARCHAR, manager_id VARCHAR); CREATE TABLE employees (department_id VARCHAR, employee_id VARCHAR)
SELECT DISTINCT * FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T1.employee_id = T2.manager_id
### Context: CREATE TABLE departments (department_id VARCHAR, manager_id VARCHAR); CREATE TABLE employees (department_id VARCHAR, employee_id VARCHAR) ### Question: get the details of employees who manage a department. ### Answer: SELECT DISTINCT * FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T1.employee_id = T2.manager_id
Find the job ID for those jobs which average salary is above 8000.
CREATE TABLE employees (job_id VARCHAR, salary INTEGER)
SELECT job_id FROM employees GROUP BY job_id HAVING AVG(salary) > 8000
### Context: CREATE TABLE employees (job_id VARCHAR, salary INTEGER) ### Question: Find the job ID for those jobs which average salary is above 8000. ### Answer: SELECT job_id FROM employees GROUP BY job_id HAVING AVG(salary) > 8000
display the employee ID and job name for all those jobs in department 80.
CREATE TABLE jobs (job_title VARCHAR, job_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, job_id VARCHAR, department_id VARCHAR)
SELECT T1.employee_id, T2.job_title FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id WHERE T1.department_id = 80
### Context: CREATE TABLE jobs (job_title VARCHAR, job_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR, job_id VARCHAR, department_id VARCHAR) ### Question: display the employee ID and job name for all those jobs in department 80. ### Answer: SELECT T1.employee_id, T2.job_title FROM employees AS T1 JOIN jobs AS T2 ON T1.job_id = T2.job_id WHERE T1.department_id = 80
What is the first name and job id for all employees in the Finance department?
CREATE TABLE departments (department_id VARCHAR, department_name VARCHAR); CREATE TABLE employees (first_name VARCHAR, job_id VARCHAR, department_id VARCHAR)
SELECT T1.first_name, T1.job_id FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T2.department_name = 'Finance'
### Context: CREATE TABLE departments (department_id VARCHAR, department_name VARCHAR); CREATE TABLE employees (first_name VARCHAR, job_id VARCHAR, department_id VARCHAR) ### Question: What is the first name and job id for all employees in the Finance department? ### Answer: SELECT T1.first_name, T1.job_id FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T2.department_name = 'Finance'
display all the information of the employees whose salary if within the range of smallest salary and 2500.
CREATE TABLE employees (salary INTEGER)
SELECT * FROM employees WHERE salary BETWEEN (SELECT MIN(salary) FROM employees) AND 2500
### Context: CREATE TABLE employees (salary INTEGER) ### Question: display all the information of the employees whose salary if within the range of smallest salary and 2500. ### Answer: SELECT * FROM employees WHERE salary BETWEEN (SELECT MIN(salary) FROM employees) AND 2500
Find the ids of the employees who does not work in those departments where some employees works whose manager id within the range 100 and 200.
CREATE TABLE departments (department_id VARCHAR, manager_id INTEGER); CREATE TABLE employees (department_id VARCHAR, manager_id INTEGER)
SELECT * FROM employees WHERE NOT department_id IN (SELECT department_id FROM departments WHERE manager_id BETWEEN 100 AND 200)
### Context: CREATE TABLE departments (department_id VARCHAR, manager_id INTEGER); CREATE TABLE employees (department_id VARCHAR, manager_id INTEGER) ### Question: Find the ids of the employees who does not work in those departments where some employees works whose manager id within the range 100 and 200. ### Answer: SELECT * FROM employees WHERE NOT department_id IN (SELECT department_id FROM departments WHERE manager_id BETWEEN 100 AND 200)
display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, department_id VARCHAR)
SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = "Clara")
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, department_id VARCHAR) ### Question: display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara. ### Answer: SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = "Clara")
display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara excluding Clara.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, department_id VARCHAR)
SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = "Clara") AND first_name <> "Clara"
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, department_id VARCHAR) ### Question: display the employee name ( first name and last name ) and hire date for all employees in the same department as Clara excluding Clara. ### Answer: SELECT first_name, last_name, hire_date FROM employees WHERE department_id = (SELECT department_id FROM employees WHERE first_name = "Clara") AND first_name <> "Clara"
display the employee number and name( first name and last name ) for all employees who work in a department with any employee whose name contains a ’T’.
CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, department_id VARCHAR)
SELECT employee_id, first_name, last_name FROM employees WHERE department_id IN (SELECT department_id FROM employees WHERE first_name LIKE '%T%')
### Context: CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, department_id VARCHAR) ### Question: display the employee number and name( first name and last name ) for all employees who work in a department with any employee whose name contains a ’T’. ### Answer: SELECT employee_id, first_name, last_name FROM employees WHERE department_id IN (SELECT department_id FROM employees WHERE first_name LIKE '%T%')
display the employee number, name( first name and last name ), and salary for all employees who earn more than the average salary and who work in a department with any employee with a 'J' in their first name.
CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, salary INTEGER, department_id VARCHAR)
SELECT employee_id, first_name, last_name, salary FROM employees WHERE salary > (SELECT AVG(salary) FROM employees) AND department_id IN (SELECT department_id FROM employees WHERE first_name LIKE '%J%')
### Context: CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, salary INTEGER, department_id VARCHAR) ### Question: display the employee number, name( first name and last name ), and salary for all employees who earn more than the average salary and who work in a department with any employee with a 'J' in their first name. ### Answer: SELECT employee_id, first_name, last_name, salary FROM employees WHERE salary > (SELECT AVG(salary) FROM employees) AND department_id IN (SELECT department_id FROM employees WHERE first_name LIKE '%J%')
display the employee number and job id for all employees whose salary is smaller than any salary of those employees whose job title is MK_MAN.
CREATE TABLE employees (employee_id VARCHAR, job_id VARCHAR, salary INTEGER)
SELECT employee_id, job_id FROM employees WHERE salary < (SELECT MIN(salary) FROM employees WHERE job_id = 'MK_MAN')
### Context: CREATE TABLE employees (employee_id VARCHAR, job_id VARCHAR, salary INTEGER) ### Question: display the employee number and job id for all employees whose salary is smaller than any salary of those employees whose job title is MK_MAN. ### Answer: SELECT employee_id, job_id FROM employees WHERE salary < (SELECT MIN(salary) FROM employees WHERE job_id = 'MK_MAN')
display the employee number, name( first name and last name ) and job title for all employees whose salary is more than any salary of those employees whose job title is PU_MAN.
CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, job_id VARCHAR, salary INTEGER)
SELECT employee_id, first_name, last_name, job_id FROM employees WHERE salary > (SELECT MAX(salary) FROM employees WHERE job_id = 'PU_MAN')
### Context: CREATE TABLE employees (employee_id VARCHAR, first_name VARCHAR, last_name VARCHAR, job_id VARCHAR, salary INTEGER) ### Question: display the employee number, name( first name and last name ) and job title for all employees whose salary is more than any salary of those employees whose job title is PU_MAN. ### Answer: SELECT employee_id, first_name, last_name, job_id FROM employees WHERE salary > (SELECT MAX(salary) FROM employees WHERE job_id = 'PU_MAN')
display the department id and the total salary for those departments which contains at least two employees.
CREATE TABLE employees (department_id VARCHAR, salary INTEGER)
SELECT department_id, SUM(salary) FROM employees GROUP BY department_id HAVING COUNT(*) >= 2
### Context: CREATE TABLE employees (department_id VARCHAR, salary INTEGER) ### Question: display the department id and the total salary for those departments which contains at least two employees. ### Answer: SELECT department_id, SUM(salary) FROM employees GROUP BY department_id HAVING COUNT(*) >= 2
display all the information of those employees who did not have any job in the past.
CREATE TABLE job_history (employee_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR)
SELECT * FROM employees WHERE NOT employee_id IN (SELECT employee_id FROM job_history)
### Context: CREATE TABLE job_history (employee_id VARCHAR); CREATE TABLE employees (employee_id VARCHAR) ### Question: display all the information of those employees who did not have any job in the past. ### Answer: SELECT * FROM employees WHERE NOT employee_id IN (SELECT employee_id FROM job_history)
display the department ID, full name (first and last name), salary for those employees who is highest salary in every department.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER, department_id VARCHAR)
SELECT first_name, last_name, salary, department_id, MAX(salary) FROM employees GROUP BY department_id
### Context: CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER, department_id VARCHAR) ### Question: display the department ID, full name (first and last name), salary for those employees who is highest salary in every department. ### Answer: SELECT first_name, last_name, salary, department_id, MAX(salary) FROM employees GROUP BY department_id
display the first and last name, department, city, and state province for each employee.
CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR)
SELECT T1.first_name, T1.last_name, T2.department_name, T3.city, T3.state_province FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id
### Context: CREATE TABLE departments (department_name VARCHAR, department_id VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR) ### Question: display the first and last name, department, city, and state province for each employee. ### Answer: SELECT T1.first_name, T1.last_name, T2.department_name, T3.city, T3.state_province FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id
display those employees who contain a letter z to their first name and also display their last name, city.
CREATE TABLE locations (city VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR)
SELECT T1.first_name, T1.last_name, T3.city FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id WHERE T1.first_name LIKE '%z%'
### Context: CREATE TABLE locations (city VARCHAR, location_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR) ### Question: display those employees who contain a letter z to their first name and also display their last name, city. ### Answer: SELECT T1.first_name, T1.last_name, T3.city FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id WHERE T1.first_name LIKE '%z%'
display the department name, city, and state province for each department.
CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR); CREATE TABLE departments (department_name VARCHAR, location_id VARCHAR)
SELECT T1.department_name, T2.city, T2.state_province FROM departments AS T1 JOIN locations AS T2 ON T2.location_id = T1.location_id
### Context: CREATE TABLE locations (city VARCHAR, state_province VARCHAR, location_id VARCHAR); CREATE TABLE departments (department_name VARCHAR, location_id VARCHAR) ### Question: display the department name, city, and state province for each department. ### Answer: SELECT T1.department_name, T2.city, T2.state_province FROM departments AS T1 JOIN locations AS T2 ON T2.location_id = T1.location_id
display the full name (first and last name ) of employee with ID and name of the country presently where (s)he is working.
CREATE TABLE countries (country_name VARCHAR, country_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR); CREATE TABLE locations (location_id VARCHAR, country_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, employee_id VARCHAR, department_id VARCHAR)
SELECT T1.first_name, T1.last_name, T1.employee_id, T4.country_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id JOIN countries AS T4 ON T3.country_id = T4.country_id
### Context: CREATE TABLE countries (country_name VARCHAR, country_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR); CREATE TABLE locations (location_id VARCHAR, country_id VARCHAR); CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, employee_id VARCHAR, department_id VARCHAR) ### Question: display the full name (first and last name ) of employee with ID and name of the country presently where (s)he is working. ### Answer: SELECT T1.first_name, T1.last_name, T1.employee_id, T4.country_name FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id JOIN countries AS T4 ON T3.country_id = T4.country_id
display the department name and number of employees in each of the department.
CREATE TABLE employees (department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR)
SELECT department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY department_name
### Context: CREATE TABLE employees (department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR) ### Question: display the department name and number of employees in each of the department. ### Answer: SELECT department_name, COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY department_name
display the full name (first and last name), and salary of those employees who working in any department located in London.
CREATE TABLE locations (location_id VARCHAR, city VARCHAR); CREATE TABLE employees (department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR)
SELECT first_name, last_name, salary FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id WHERE T3.city = 'London'
### Context: CREATE TABLE locations (location_id VARCHAR, city VARCHAR); CREATE TABLE employees (department_id VARCHAR); CREATE TABLE departments (department_id VARCHAR, location_id VARCHAR) ### Question: display the full name (first and last name), and salary of those employees who working in any department located in London. ### Answer: SELECT first_name, last_name, salary FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id JOIN locations AS T3 ON T2.location_id = T3.location_id WHERE T3.city = 'London'
What is the name of the song that was released in the most recent year?
CREATE TABLE song (song_name VARCHAR, releasedate VARCHAR)
SELECT song_name, releasedate FROM song ORDER BY releasedate DESC LIMIT 1
### Context: CREATE TABLE song (song_name VARCHAR, releasedate VARCHAR) ### Question: What is the name of the song that was released in the most recent year? ### Answer: SELECT song_name, releasedate FROM song ORDER BY releasedate DESC LIMIT 1
What is the id of the longest song?
CREATE TABLE files (f_id VARCHAR, duration VARCHAR)
SELECT f_id FROM files ORDER BY duration DESC LIMIT 1
### Context: CREATE TABLE files (f_id VARCHAR, duration VARCHAR) ### Question: What is the id of the longest song? ### Answer: SELECT f_id FROM files ORDER BY duration DESC LIMIT 1
Find the names of all English songs.
CREATE TABLE song (song_name VARCHAR, languages VARCHAR)
SELECT song_name FROM song WHERE languages = "english"
### Context: CREATE TABLE song (song_name VARCHAR, languages VARCHAR) ### Question: Find the names of all English songs. ### Answer: SELECT song_name FROM song WHERE languages = "english"
What are the id of songs whose format is mp3.
CREATE TABLE files (f_id VARCHAR, formats VARCHAR)
SELECT f_id FROM files WHERE formats = "mp3"
### Context: CREATE TABLE files (f_id VARCHAR, formats VARCHAR) ### Question: What are the id of songs whose format is mp3. ### Answer: SELECT f_id FROM files WHERE formats = "mp3"
List the name and country of origin for all singers who have produced songs with rating above 9.
CREATE TABLE song (artist_name VARCHAR, rating INTEGER); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)
SELECT DISTINCT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.rating > 9
### Context: CREATE TABLE song (artist_name VARCHAR, rating INTEGER); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR) ### Question: List the name and country of origin for all singers who have produced songs with rating above 9. ### Answer: SELECT DISTINCT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T2.rating > 9
List the file size and format for all songs that have resolution lower than 800.
CREATE TABLE song (f_id VARCHAR, resolution INTEGER); CREATE TABLE files (file_size VARCHAR, formats VARCHAR, f_id VARCHAR)
SELECT DISTINCT T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.resolution < 800
### Context: CREATE TABLE song (f_id VARCHAR, resolution INTEGER); CREATE TABLE files (file_size VARCHAR, formats VARCHAR, f_id VARCHAR) ### Question: List the file size and format for all songs that have resolution lower than 800. ### Answer: SELECT DISTINCT T1.file_size, T1.formats FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T2.resolution < 800
What is the name of the artist who produced the shortest song?
CREATE TABLE files (f_id VARCHAR, duration VARCHAR); CREATE TABLE song (artist_name VARCHAR, f_id VARCHAR)
SELECT T1.artist_name FROM song AS T1 JOIN files AS T2 ON T1.f_id = T2.f_id ORDER BY T2.duration LIMIT 1
### Context: CREATE TABLE files (f_id VARCHAR, duration VARCHAR); CREATE TABLE song (artist_name VARCHAR, f_id VARCHAR) ### Question: What is the name of the artist who produced the shortest song? ### Answer: SELECT T1.artist_name FROM song AS T1 JOIN files AS T2 ON T1.f_id = T2.f_id ORDER BY T2.duration LIMIT 1
What are the names and countries of origin for the artists who produced the top three highly rated songs.
CREATE TABLE song (artist_name VARCHAR, rating VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR)
SELECT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name ORDER BY T2.rating DESC LIMIT 3
### Context: CREATE TABLE song (artist_name VARCHAR, rating VARCHAR); CREATE TABLE artist (artist_name VARCHAR, country VARCHAR) ### Question: What are the names and countries of origin for the artists who produced the top three highly rated songs. ### Answer: SELECT T1.artist_name, T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name ORDER BY T2.rating DESC LIMIT 3
How many songs have 4 minute duration?
CREATE TABLE files (duration VARCHAR)
SELECT COUNT(*) FROM files WHERE duration LIKE "4:%"
### Context: CREATE TABLE files (duration VARCHAR) ### Question: How many songs have 4 minute duration? ### Answer: SELECT COUNT(*) FROM files WHERE duration LIKE "4:%"
How many artists are from Bangladesh?
CREATE TABLE artist (country VARCHAR)
SELECT COUNT(*) FROM artist WHERE country = "Bangladesh"
### Context: CREATE TABLE artist (country VARCHAR) ### Question: How many artists are from Bangladesh? ### Answer: SELECT COUNT(*) FROM artist WHERE country = "Bangladesh"
What is the average rating of songs produced by female artists?
CREATE TABLE song (rating INTEGER, artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, gender VARCHAR)
SELECT AVG(T2.rating) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T1.gender = "Female"
### Context: CREATE TABLE song (rating INTEGER, artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, gender VARCHAR) ### Question: What is the average rating of songs produced by female artists? ### Answer: SELECT AVG(T2.rating) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T1.gender = "Female"
What is the most popular file format?
CREATE TABLE files (formats VARCHAR)
SELECT formats FROM files GROUP BY formats ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE files (formats VARCHAR) ### Question: What is the most popular file format? ### Answer: SELECT formats FROM files GROUP BY formats ORDER BY COUNT(*) DESC LIMIT 1
Find the names of the artists who are from UK and have produced English songs.
CREATE TABLE artist (artist_name VARCHAR, country VARCHAR, languages VARCHAR); CREATE TABLE song (artist_name VARCHAR, country VARCHAR, languages VARCHAR)
SELECT artist_name FROM artist WHERE country = "UK" INTERSECT SELECT artist_name FROM song WHERE languages = "english"
### Context: CREATE TABLE artist (artist_name VARCHAR, country VARCHAR, languages VARCHAR); CREATE TABLE song (artist_name VARCHAR, country VARCHAR, languages VARCHAR) ### Question: Find the names of the artists who are from UK and have produced English songs. ### Answer: SELECT artist_name FROM artist WHERE country = "UK" INTERSECT SELECT artist_name FROM song WHERE languages = "english"
Find the id of songs that are available in mp4 format and have resolution lower than 1000.
CREATE TABLE song (f_id VARCHAR, formats VARCHAR, resolution INTEGER); CREATE TABLE files (f_id VARCHAR, formats VARCHAR, resolution INTEGER)
SELECT f_id FROM files WHERE formats = "mp4" INTERSECT SELECT f_id FROM song WHERE resolution < 1000
### Context: CREATE TABLE song (f_id VARCHAR, formats VARCHAR, resolution INTEGER); CREATE TABLE files (f_id VARCHAR, formats VARCHAR, resolution INTEGER) ### Question: Find the id of songs that are available in mp4 format and have resolution lower than 1000. ### Answer: SELECT f_id FROM files WHERE formats = "mp4" INTERSECT SELECT f_id FROM song WHERE resolution < 1000
What is the country of origin of the artist who is female and produced a song in Bangla?
CREATE TABLE artist (country VARCHAR, artist_name VARCHAR, gender VARCHAR); CREATE TABLE song (artist_name VARCHAR, languages VARCHAR)
SELECT T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T1.gender = "Female" AND T2.languages = "bangla"
### Context: CREATE TABLE artist (country VARCHAR, artist_name VARCHAR, gender VARCHAR); CREATE TABLE song (artist_name VARCHAR, languages VARCHAR) ### Question: What is the country of origin of the artist who is female and produced a song in Bangla? ### Answer: SELECT T1.country FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T1.gender = "Female" AND T2.languages = "bangla"
What is the average duration of songs that have mp3 format and resolution below 800?
CREATE TABLE files (duration INTEGER, f_id VARCHAR, formats VARCHAR); CREATE TABLE song (f_id VARCHAR, resolution VARCHAR)
SELECT AVG(T1.duration) FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T1.formats = "mp3" AND T2.resolution < 800
### Context: CREATE TABLE files (duration INTEGER, f_id VARCHAR, formats VARCHAR); CREATE TABLE song (f_id VARCHAR, resolution VARCHAR) ### Question: What is the average duration of songs that have mp3 format and resolution below 800? ### Answer: SELECT AVG(T1.duration) FROM files AS T1 JOIN song AS T2 ON T1.f_id = T2.f_id WHERE T1.formats = "mp3" AND T2.resolution < 800
What is the number of artists for each gender?
CREATE TABLE artist (gender VARCHAR)
SELECT COUNT(*), gender FROM artist GROUP BY gender
### Context: CREATE TABLE artist (gender VARCHAR) ### Question: What is the number of artists for each gender? ### Answer: SELECT COUNT(*), gender FROM artist GROUP BY gender