db_id stringclasses 40
values | query stringlengths 22 608 | question stringlengths 22 185 |
|---|---|---|
e_commerce | SELECT count(*) FROM Shipment_Items | How many items are shipped? |
e_commerce | SELECT count(*) FROM Shipment_Items | How many products have been shipped? |
e_commerce | SELECT avg(product_price) FROM Products | What is the product average price? |
e_commerce | SELECT avg(product_price) FROM Products | How much do the products cost on average? |
e_commerce | SELECT avg(T1.product_price) FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id | What is the average price of the products being ordered? |
e_commerce | SELECT avg(T1.product_price) FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id | What is the price of all products being ordered on average? |
e_commerce | SELECT email_address , town_city , county FROM Customers WHERE gender_code = ( SELECT gender_code FROM Customers GROUP BY gender_code ORDER BY count(*) ASC LIMIT 1 ) | What are the email address, town and county of the customers who are of the least common gender? |
e_commerce | SELECT email_address , town_city , county FROM Customers WHERE gender_code = ( SELECT gender_code FROM Customers GROUP BY gender_code ORDER BY count(*) ASC LIMIT 1 ) | What are the email addresses, cities, and counties listed for all cusomters who are from the gender that orders less often? |
e_commerce | SELECT date_order_placed FROM Orders WHERE customer_id IN ( SELECT T1.customer_id FROM Customers AS T1 JOIN Customer_Payment_Methods AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING count(*) >= 2 ) | List the order date of the orders who are placed by customers with at least 2 payment methods. |
e_commerce | SELECT date_order_placed FROM Orders WHERE customer_id IN ( SELECT T1.customer_id FROM Customers AS T1 JOIN Customer_Payment_Methods AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING count(*) >= 2 ) | What is the date of all orders that have been placed by customers with at least 2 payment methods? |
e_commerce | SELECT order_status_code FROM Orders GROUP BY order_status_code ORDER BY count(*) LIMIT 1 | What is the most uncommon order status? |
e_commerce | SELECT order_status_code FROM Orders GROUP BY order_status_code ORDER BY count(*) LIMIT 1 | What is the least common order status? |
e_commerce | SELECT T1.product_id , T1.product_description FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_id HAVING count(*) > 3 | For all the products sold for more than 3 times, list their id and description. |
e_commerce | SELECT T1.product_id , T1.product_description FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id GROUP BY T1.product_id HAVING count(*) > 3 | For all products sold more than 3 times, what are their ids and descriptions? |
e_commerce | SELECT T1.invoice_date , T1.invoice_number FROM Invoices AS T1 JOIN Shipments AS T2 ON T1.invoice_number = T2.invoice_number GROUP BY T1.invoice_number HAVING count(*) >= 2 | List the invoice dates and ids of the invoices causing at least 2 shipments. |
e_commerce | SELECT T1.invoice_date , T1.invoice_number FROM Invoices AS T1 JOIN Shipments AS T2 ON T1.invoice_number = T2.invoice_number GROUP BY T1.invoice_number HAVING count(*) >= 2 | What are the dates and ids of the invoices that are related to at least 2 shipments? |
e_commerce | SELECT shipment_tracking_number , shipment_date FROM Shipments | what are all shipment tracking numbers and shipment dates? |
e_commerce | SELECT shipment_tracking_number , shipment_date FROM Shipments | What are the tracking numbers and dates for all shipments listed? |
e_commerce | SELECT product_color , product_description , product_size FROM Products WHERE product_price < ( SELECT max(product_price) FROM products ) | What are the color, description and size of the products priced below the maximum price. |
e_commerce | select product_color , product_description , product_size from products where product_price != ( select max(product_price) from products ) | What are the colors , descriptions , and sizes for all products that are not at the maximum price ? |
bbc_channels | SELECT name FROM director WHERE age > (SELECT avg(age) FROM director) | Return the names of directors who are older than the average age. |
bbc_channels | SELECT name FROM director ORDER BY age DESC LIMIT 1 | Find the the name of the oldest director. |
bbc_channels | SELECT count(*) FROM channel WHERE internet LIKE "%bbc%" | How many channels have the word 'bbc' in their internet link? |
bbc_channels | SELECT count(DISTINCT Digital_terrestrial_channel) FROM channel | How many different digital terrestrial channels are there? |
bbc_channels | SELECT title FROM program ORDER BY start_year DESC | List all program titles in the order of starting year. List the most recent one first. |
bbc_channels | SELECT t2.name FROM program AS t1 JOIN director AS t2 ON t1.director_id = t2.director_id GROUP BY t1.director_id ORDER BY count(*) DESC LIMIT 1 | Which director is in charge of the most programs? |
bbc_channels | SELECT t2.name , t2.age FROM program AS t1 JOIN director AS t2 ON t1.director_id = t2.director_id GROUP BY t1.director_id ORDER BY count(*) DESC LIMIT 1 | Find the name and age of the director who is in charge of the most programs? |
bbc_channels | SELECT title FROM program ORDER BY start_year DESC LIMIT 1 | Return the title of the program that began most recently. |
bbc_channels | SELECT t1.name , t1.internet FROM channel AS t1 JOIN program AS t2 ON t1.channel_id = t2.channel_id GROUP BY t1.channel_id HAVING count(*) > 1 | Find the name and website link of the channels that have more than one program. |
bbc_channels | SELECT t1.name , count(*) FROM channel AS t1 JOIN program AS t2 ON t1.channel_id = t2.channel_id GROUP BY t1.channel_id | Find the number of programs for each channel. Return the name of each channel as well. |
bbc_channels | SELECT count(*) FROM channel WHERE channel_id NOT IN (SELECT channel_id FROM program) | Find the number of channels that do not run any program. |
bbc_channels | SELECT t2.name FROM program AS t1 JOIN director AS t2 ON t1.director_id = t2.director_id WHERE t1.title = 'Dracula' | What is the name of the director who is in the "Dracula" program? |
bbc_channels | SELECT t1.name , t1.internet FROM channel AS t1 JOIN director_admin AS t2 ON t1.channel_id = t2.channel_id GROUP BY t1.channel_id ORDER BY count(*) DESC LIMIT 1 | Find the name and internet web of the channel that is directed by the most directors. |
bbc_channels | SELECT name FROM director WHERE age BETWEEN 30 AND 60 | Find the name of the directors whose age is between 30 and 60. |
bbc_channels | SELECT t1.name FROM channel AS t1 JOIN director_admin AS t2 ON t1.channel_id = t2.channel_id JOIN director AS t3 ON t2.director_id = t3.director_id WHERE t3.age < 40 INTERSECT SELECT t1.name FROM channel AS t1 JOIN director_admin AS t2 ON t1.channel_id = t2.channel_id JOIN director AS t3 ON t2.director_id = t... | give me the name of channels that have both a director younger than 40 and a director older than 60. |
bbc_channels | SELECT t1.name , t1.channel_id FROM channel AS t1 JOIN director_admin AS t2 ON t1.channel_id = t2.channel_id JOIN director AS t3 ON t2.director_id = t3.director_id WHERE t3.name != "Hank Baskett" | Find the id and name of the channel that is not directed by Hank Baskett. |
tv_shows | SELECT count(*) FROM radio | How many radios are there? |
tv_shows | select transmitter from radio order by erp_kw asc | List the transmitters of radios in ascending order of erp kw . |
tv_shows | SELECT tv_show_name , Original_Airdate FROM tv_show | What are the names and original air dates of tv shows? |
tv_shows | SELECT Station_name FROM city_channel WHERE Affiliation != "ABC" | List the station names of city channels whose affiliation is not "ABC". |
tv_shows | SELECT Transmitter FROM radio WHERE ERP_kW > 150 OR ERP_kW < 30 | Show the transmitters of radios whose ERP is bigger than 150 or smaller than 30. |
tv_shows | SELECT Transmitter FROM radio ORDER BY ERP_kW DESC LIMIT 1 | What is the transmitter of the radio with the largest ERP_kW? |
tv_shows | SELECT avg(ERP_kW) FROM radio | What is the average ERP across all radios? |
tv_shows | SELECT Affiliation , COUNT(*) FROM city_channel GROUP BY Affiliation | Show the different affiliations of city channels and the number of city channels with each affiliation. |
tv_shows | SELECT Affiliation FROM city_channel GROUP BY Affiliation ORDER BY COUNT(*) DESC LIMIT 1 | Please show the most common affiliation for city channels. |
tv_shows | SELECT Affiliation FROM city_channel GROUP BY Affiliation HAVING COUNT(*) > 3 | List the affiliations shared by more than three city channels. |
tv_shows | SELECT City , Station_name FROM city_channel ORDER BY Station_name ASC | Show the cities and station names of city channels in ascending alphabetical order of station name. |
tv_shows | SELECT T3.Transmitter , T2.City FROM city_channel_radio AS T1 JOIN city_channel AS T2 ON T1.City_channel_ID = T2.ID JOIN radio AS T3 ON T1.Radio_ID = T3.Radio_ID | Show the transmitters of radios and the cities of the channels they are associated with. |
tv_shows | SELECT T3.Transmitter , T2.Station_name FROM city_channel_radio AS T1 JOIN city_channel AS T2 ON T1.City_channel_ID = T2.ID JOIN radio AS T3 ON T1.Radio_ID = T3.Radio_ID ORDER BY T3.ERP_kW DESC | Show the transmitters of radios and the station names of the channels they are associated with in descending order of the ERP of the radios. |
tv_shows | SELECT T2.Transmitter , COUNT(*) FROM city_channel_radio AS T1 JOIN radio AS T2 ON T1.Radio_ID = T2.Radio_ID GROUP BY T2.Transmitter | Show the transmitters of the radios and the number of city channels they are associated with. |
tv_shows | SELECT Transmitter FROM radio WHERE Radio_ID NOT IN (SELECT Radio_ID FROM city_channel_radio) | Show the distinct transmitters of radios that are not associated with any city channel. |
vehicle_driver | SELECT model FROM vehicle WHERE power > 6000 ORDER BY top_speed DESC LIMIT 1 | What is the model of the vehicle with maximum top speed whose power is higher than 6000? |
vehicle_driver | SELECT model FROM vehicle WHERE power > 6000 ORDER BY top_speed DESC LIMIT 1 | Of vehicles with power over 6000, return the model of the vehicle with the greatest top speed. |
vehicle_driver | SELECT name FROM driver WHERE citizenship = 'United States' | What are the names of the drivers who are citizens of the 'United States'? |
vehicle_driver | SELECT name FROM driver WHERE citizenship = 'United States' | Return the names of drivers with citizenship from the United States. |
vehicle_driver | SELECT count(*) , driver_id FROM vehicle_driver GROUP BY driver_id ORDER BY count(*) DESC LIMIT 1 | How many vehicles has a driver driven at most, and what is the driver id of the driver who has driven this many vehicles? |
vehicle_driver | SELECT count(*) , driver_id FROM vehicle_driver GROUP BY driver_id ORDER BY count(*) DESC LIMIT 1 | What is the id of the driver who has driven the most vehicles, and how many vehicles is this? |
vehicle_driver | SELECT max(power) , avg(power) FROM vehicle WHERE builder = 'Zhuzhou' | What is the maximum and average power for the vehicles manufactured by 'Zhuzhou'? |
vehicle_driver | SELECT max(power) , avg(power) FROM vehicle WHERE builder = 'Zhuzhou' | Return the maximum and average power for the vehicles built by Zhuzhou. |
vehicle_driver | SELECT vehicle_id FROM vehicle_driver GROUP BY vehicle_id ORDER BY count(*) ASC LIMIT 1 | What is the id of the vehicle driven for the least times for the vehicles ever used? |
vehicle_driver | SELECT vehicle_id FROM vehicle_driver GROUP BY vehicle_id ORDER BY count(*) ASC LIMIT 1 | Return the id of the vehicle that has been driven the fewest times. |
vehicle_driver | SELECT top_speed , power FROM vehicle WHERE build_year = 1996 | What is the top speed and power of the vehicle manufactured in the year of 1996? |
vehicle_driver | SELECT top_speed , power FROM vehicle WHERE build_year = 1996 | Return the top speed and power of the vehicle that was built in the year 1996. |
vehicle_driver | SELECT build_year , model , builder FROM vehicle | What are the build year, model name and builder of the vehicles? |
vehicle_driver | SELECT build_year , model , builder FROM vehicle | Give the build year, model, and builder of each vehicle. |
vehicle_driver | SELECT count(DISTINCT T1.driver_id) FROM vehicle_driver AS T1 JOIN vehicle AS T2 ON T1.vehicle_id = T2.vehicle_id WHERE T2.build_year = 2012 | How many drivers have driven vehicles built in 2012? |
vehicle_driver | SELECT count(DISTINCT T1.driver_id) FROM vehicle_driver AS T1 JOIN vehicle AS T2 ON T1.vehicle_id = T2.vehicle_id WHERE T2.build_year = 2012 | Count the number of different drivers who have driven vehicles built in 2012. |
vehicle_driver | SELECT count(*) FROM driver WHERE Racing_Series = 'NASCAR' | How many drivers have raced in 'NASCAR'? |
vehicle_driver | SELECT count(*) FROM driver WHERE Racing_Series = 'NASCAR' | Count the number of drivers who have raced in NASCAR. |
vehicle_driver | SELECT avg(top_speed) FROM vehicle | What is the average top speed of vehicles? |
vehicle_driver | SELECT avg(top_speed) FROM vehicle | Return the average top speed across all vehicles. |
vehicle_driver | select distinct t1.name from driver as t1 join vehicle_driver as t2 on t1.driver_id = t2.driver_id join vehicle as t3 on t2.vehicle_id = t3.vehicle_id where t3.power > 5000 | What are the distinct driver names who have driven vehicles with power more than 5000 ? |
vehicle_driver | SELECT DISTINCT T1.Name FROM driver AS T1 JOIN vehicle_driver AS T2 ON T1.driver_id = T2.driver_id JOIN vehicle AS T3 ON T2.vehicle_id = T3.vehicle_id WHERE T3.power > 5000 | Return the names of drivers who have driven vehicles with power over 5000. |
vehicle_driver | SELECT model FROM vehicle WHERE total_production > 100 OR top_speed > 150 | Which car models have total production larger than 100 or top speed higher than 150? |
vehicle_driver | SELECT model FROM vehicle WHERE total_production > 100 OR top_speed > 150 | Give the models of cars that have a total production of over 100 or a top speed over 150. |
vehicle_driver | SELECT model , build_year FROM vehicle WHERE model LIKE '%DJ%' | What are the model names and build year of the cars with 'DJ' in its model name? |
vehicle_driver | SELECT model , build_year FROM vehicle WHERE model LIKE '%DJ%' | Return the model and build year of cars that include "DJ" in their model names. |
vehicle_driver | SELECT model FROM vehicle EXCEPT SELECT T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id | What are the models which have not been driven by any drivers? |
vehicle_driver | SELECT model FROM vehicle EXCEPT SELECT T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id | Return the models of vehicles that have never been driven. |
vehicle_driver | SELECT T1.vehicle_id , T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id GROUP BY T2.vehicle_id HAVING count(*) = 2 OR T1.builder = 'Ziyang' | What are the vehicle ids and models of the vehicle which have been driven by two drivers or been manufactured by 'Ziyang'. |
vehicle_driver | SELECT T1.vehicle_id , T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id GROUP BY T2.vehicle_id HAVING count(*) = 2 OR T1.builder = 'Ziyang' | Return the ids and models of vehicles that have been driven by exactly two drivers or built by Ziyang. |
vehicle_driver | SELECT T1.vehicle_id , T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id JOIN driver AS T3 ON T2.driver_id = T3.driver_id WHERE T3.name = 'Jeff Gordon' UNION SELECT T1.vehicle_id , T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id GROUP... | What are the vehicle ids and models which have been driven by more than 2 drivers or been driven by the driver named 'Jeff Gordon'? |
vehicle_driver | SELECT T1.vehicle_id , T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id JOIN driver AS T3 ON T2.driver_id = T3.driver_id WHERE T3.name = 'Jeff Gordon' UNION SELECT T1.vehicle_id , T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id GROUP... | Return the ids and models of vehicles that have been driven by more than 2 drivers or been driven by the Jeff Gordon. |
vehicle_driver | SELECT count(*) FROM vehicle WHERE top_speed = (SELECT max(top_speed) FROM vehicle) | How many vehicles have maximum top speed? |
vehicle_driver | SELECT count(*) FROM vehicle WHERE top_speed = (SELECT max(top_speed) FROM vehicle) | Count the number of vehicles that have a top speed equal to the maximum across all vehicles. |
vehicle_driver | SELECT name FROM driver ORDER BY name | Show all driver names in the alphabetical order. |
vehicle_driver | SELECT name FROM driver ORDER BY name | What are the names of drivers, returned in alphbetical order? |
vehicle_driver | SELECT count(*) , racing_series FROM driver GROUP BY racing_series | How many drivers have been racing in each racing series? |
vehicle_driver | SELECT count(*) , racing_series FROM driver GROUP BY racing_series | Count the number of drivers that have raced in each series. |
vehicle_driver | SELECT T1.name , T1.citizenship FROM driver AS T1 JOIN vehicle_driver AS T2 ON T1.driver_id = T2.driver_id JOIN vehicle AS T3 ON T2.vehicle_id = T3.vehicle_id WHERE T3.model = 'DJ1' | What are the name and citizenship of the drivers who have driven the vehicle model 'DJ1'? |
vehicle_driver | SELECT T1.name , T1.citizenship FROM driver AS T1 JOIN vehicle_driver AS T2 ON T1.driver_id = T2.driver_id JOIN vehicle AS T3 ON T2.vehicle_id = T3.vehicle_id WHERE T3.model = 'DJ1' | Return the names and citizenships of drivers who have driven the vehicle with the model 'DJ1'. |
vehicle_driver | SELECT count(*) FROM driver WHERE driver_id NOT IN ( SELECT driver_id FROM vehicle_driver ) | How many drivers have not driven any cars? |
vehicle_driver | SELECT count(*) FROM driver WHERE driver_id NOT IN ( SELECT driver_id FROM vehicle_driver ) | Count the number of drivers who have not driven any vehicles. |
online_exams | SELECT count(*) FROM Exams | How many exams are there? |
online_exams | SELECT count(*) FROM Exams | Count the number of exams. |
online_exams | select distinct subject_code from exams order by subject_code asc | List the distinct subject code of exams in ascending alphabetical order . |
online_exams | SELECT DISTINCT Subject_Code FROM Exams ORDER BY Subject_Code | Give me an alphabetically ordered list of the distinct subject code for exams. |
online_exams | SELECT Exam_Date , Exam_Name FROM Exams WHERE Subject_Code != 'Database' | What are the names and dates of the exams with subject code that is not "Database"? |
online_exams | SELECT Exam_Date , Exam_Name FROM Exams WHERE Subject_Code != 'Database' | Find the exams whose subject code is not "Database". What are the exam dates and exam names? |
online_exams | SELECT Exam_Date FROM Exams WHERE Subject_Code LIKE '%data%' ORDER BY Exam_Date DESC | List the dates of the exams with subject code containing the word "data", in descending order of dates. |
Subsets and Splits
World Countries Non-English Languages
The query filters specific database entries based on a particular query pattern, providing limited insight as it simply retrieves rows that match a specific condition.