query_id
int64 0
2.15k
| database_id
stringclasses 40
values | table_id
listlengths 1
4
| query
stringlengths 22
185
| answer
stringlengths 22
608
| difficulty
stringclasses 4
values |
---|---|---|---|---|---|
100 |
e_commerce
|
[
"shipment_items"
] |
How many items are shipped?
|
SELECT count(*) FROM Shipment_Items
|
easy
|
101 |
e_commerce
|
[
"shipment_items"
] |
How many products have been shipped?
|
SELECT count(*) FROM Shipment_Items
|
easy
|
102 |
e_commerce
|
[
"products"
] |
What is the product average price?
|
SELECT avg(product_price) FROM Products
|
easy
|
103 |
e_commerce
|
[
"products"
] |
How much do the products cost on average?
|
SELECT avg(product_price) FROM Products
|
easy
|
104 |
e_commerce
|
[
"order_items",
"products"
] |
What is the average price of the products being ordered?
|
SELECT avg(T1.product_price) FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id
|
easy
|
105 |
e_commerce
|
[
"order_items",
"products"
] |
What is the price of all products being ordered on average?
|
SELECT avg(T1.product_price) FROM Products AS T1 JOIN Order_items AS T2 ON T1.product_id = T2.product_id
|
easy
|
106 |
e_commerce
|
[
"customers"
] |
What are the email address, town and county of the customers who are of the least common gender?
|
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 )
|
extra
|
107 |
e_commerce
|
[
"customers"
] |
What are the email addresses, cities, and counties listed for all cusomters who are from the gender that orders less often?
|
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 )
|
extra
|
108 |
e_commerce
|
[
"orders",
"customer_payment_methods",
"customers"
] |
List the order date of the orders who are placed by customers with at least 2 payment methods.
|
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 )
|
hard
|
109 |
e_commerce
|
[
"orders",
"customer_payment_methods",
"customers"
] |
What is the date of all orders that have been placed by customers with at least 2 payment methods?
|
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 )
|
hard
|
110 |
e_commerce
|
[
"orders"
] |
What is the most uncommon order status?
|
SELECT order_status_code FROM Orders GROUP BY order_status_code ORDER BY count(*) LIMIT 1
|
hard
|
111 |
e_commerce
|
[
"orders"
] |
What is the least common order status?
|
SELECT order_status_code FROM Orders GROUP BY order_status_code ORDER BY count(*) LIMIT 1
|
hard
|
112 |
e_commerce
|
[
"order_items",
"products"
] |
For all the products sold for more than 3 times, list their id and description.
|
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
|
medium
|
113 |
e_commerce
|
[
"order_items",
"products"
] |
For all products sold more than 3 times, what are their ids and descriptions?
|
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
|
medium
|
114 |
e_commerce
|
[
"shipments",
"invoices"
] |
List the invoice dates and ids of the invoices causing at least 2 shipments.
|
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
|
medium
|
115 |
e_commerce
|
[
"shipments",
"invoices"
] |
What are the dates and ids of the invoices that are related to at least 2 shipments?
|
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
|
medium
|
116 |
e_commerce
|
[
"shipments"
] |
what are all shipment tracking numbers and shipment dates?
|
SELECT shipment_tracking_number , shipment_date FROM Shipments
|
medium
|
117 |
e_commerce
|
[
"shipments"
] |
What are the tracking numbers and dates for all shipments listed?
|
SELECT shipment_tracking_number , shipment_date FROM Shipments
|
medium
|
118 |
e_commerce
|
[
"products",
"products"
] |
What are the color, description and size of the products priced below the maximum price.
|
SELECT product_color , product_description , product_size FROM Products WHERE product_price < ( SELECT max(product_price) FROM products )
|
extra
|
119 |
e_commerce
|
[
"products"
] |
What are the colors , descriptions , and sizes for all products that are not at the maximum price ?
|
select product_color , product_description , product_size from products where product_price != ( select max(product_price) from products )
|
extra
|
120 |
bbc_channels
|
[
"director"
] |
Return the names of directors who are older than the average age.
|
SELECT name FROM director WHERE age > (SELECT avg(age) FROM director)
|
hard
|
121 |
bbc_channels
|
[
"director"
] |
Find the the name of the oldest director.
|
SELECT name FROM director ORDER BY age DESC LIMIT 1
|
medium
|
122 |
bbc_channels
|
[
"channel"
] |
How many channels have the word 'bbc' in their internet link?
|
SELECT count(*) FROM channel WHERE internet LIKE "%bbc%"
|
medium
|
123 |
bbc_channels
|
[
"channel"
] |
How many different digital terrestrial channels are there?
|
SELECT count(DISTINCT Digital_terrestrial_channel) FROM channel
|
easy
|
124 |
bbc_channels
|
[
"program"
] |
List all program titles in the order of starting year. List the most recent one first.
|
SELECT title FROM program ORDER BY start_year DESC
|
easy
|
125 |
bbc_channels
|
[
"program",
"director"
] |
Which director is in charge of the most programs?
|
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
|
extra
|
126 |
bbc_channels
|
[
"program",
"director"
] |
Find the name and age of the director who is in charge of the most programs?
|
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
|
extra
|
127 |
bbc_channels
|
[
"program"
] |
Return the title of the program that began most recently.
|
SELECT title FROM program ORDER BY start_year DESC LIMIT 1
|
medium
|
128 |
bbc_channels
|
[
"channel",
"program"
] |
Find the name and website link of the channels that have more than one program.
|
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
|
medium
|
129 |
bbc_channels
|
[
"channel",
"program"
] |
Find the number of programs for each channel. Return the name of each channel as well.
|
SELECT t1.name , count(*) FROM channel AS t1 JOIN program AS t2 ON t1.channel_id = t2.channel_id GROUP BY t1.channel_id
|
medium
|
130 |
bbc_channels
|
[
"channel",
"program"
] |
Find the number of channels that do not run any program.
|
SELECT count(*) FROM channel WHERE channel_id NOT IN (SELECT channel_id FROM program)
|
extra
|
131 |
bbc_channels
|
[
"program",
"director"
] |
What is the name of the director who is in the "Dracula" program?
|
SELECT t2.name FROM program AS t1 JOIN director AS t2 ON t1.director_id = t2.director_id WHERE t1.title = 'Dracula'
|
medium
|
132 |
bbc_channels
|
[
"channel",
"director_admin"
] |
Find the name and internet web of the channel that is directed by the most directors.
|
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
|
extra
|
133 |
bbc_channels
|
[
"director"
] |
Find the name of the directors whose age is between 30 and 60.
|
SELECT name FROM director WHERE age BETWEEN 30 AND 60
|
easy
|
134 |
bbc_channels
|
[
"channel",
"director_admin",
"director"
] |
give me the name of channels that have both a director younger than 40 and a director older than 60.
|
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 = t3.director_id WHERE t3.age > 60
|
extra
|
135 |
bbc_channels
|
[
"channel",
"director_admin",
"director"
] |
Find the id and name of the channel that is not directed by Hank Baskett.
|
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"
|
hard
|
136 |
tv_shows
|
[
"radio"
] |
How many radios are there?
|
SELECT count(*) FROM radio
|
easy
|
137 |
tv_shows
|
[
"radio"
] |
List the transmitters of radios in ascending order of erp kw .
|
select transmitter from radio order by erp_kw asc
|
easy
|
138 |
tv_shows
|
[
"tv_show"
] |
What are the names and original air dates of tv shows?
|
SELECT tv_show_name , Original_Airdate FROM tv_show
|
medium
|
139 |
tv_shows
|
[
"city_channel"
] |
List the station names of city channels whose affiliation is not "ABC".
|
SELECT Station_name FROM city_channel WHERE Affiliation != "ABC"
|
easy
|
140 |
tv_shows
|
[
"radio"
] |
Show the transmitters of radios whose ERP is bigger than 150 or smaller than 30.
|
SELECT Transmitter FROM radio WHERE ERP_kW > 150 OR ERP_kW < 30
|
medium
|
141 |
tv_shows
|
[
"radio"
] |
What is the transmitter of the radio with the largest ERP_kW?
|
SELECT Transmitter FROM radio ORDER BY ERP_kW DESC LIMIT 1
|
medium
|
142 |
tv_shows
|
[
"radio"
] |
What is the average ERP across all radios?
|
SELECT avg(ERP_kW) FROM radio
|
easy
|
143 |
tv_shows
|
[
"city_channel"
] |
Show the different affiliations of city channels and the number of city channels with each affiliation.
|
SELECT Affiliation , COUNT(*) FROM city_channel GROUP BY Affiliation
|
medium
|
144 |
tv_shows
|
[
"city_channel"
] |
Please show the most common affiliation for city channels.
|
SELECT Affiliation FROM city_channel GROUP BY Affiliation ORDER BY COUNT(*) DESC LIMIT 1
|
hard
|
145 |
tv_shows
|
[
"city_channel"
] |
List the affiliations shared by more than three city channels.
|
SELECT Affiliation FROM city_channel GROUP BY Affiliation HAVING COUNT(*) > 3
|
easy
|
146 |
tv_shows
|
[
"city_channel"
] |
Show the cities and station names of city channels in ascending alphabetical order of station name.
|
SELECT City , Station_name FROM city_channel ORDER BY Station_name ASC
|
medium
|
147 |
tv_shows
|
[
"city_channel",
"radio",
"city_channel_radio"
] |
Show the transmitters of radios and the cities of the channels they are associated with.
|
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
|
medium
|
148 |
tv_shows
|
[
"city_channel",
"radio",
"city_channel_radio"
] |
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.
|
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
|
hard
|
149 |
tv_shows
|
[
"radio",
"city_channel_radio"
] |
Show the transmitters of the radios and the number of city channels they are associated with.
|
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
|
medium
|
150 |
tv_shows
|
[
"radio",
"city_channel_radio"
] |
Show the distinct transmitters of radios that are not associated with any city channel.
|
SELECT Transmitter FROM radio WHERE Radio_ID NOT IN (SELECT Radio_ID FROM city_channel_radio)
|
hard
|
151 |
vehicle_driver
|
[
"vehicle"
] |
What is the model of the vehicle with maximum top speed whose power is higher than 6000?
|
SELECT model FROM vehicle WHERE power > 6000 ORDER BY top_speed DESC LIMIT 1
|
hard
|
152 |
vehicle_driver
|
[
"vehicle"
] |
Of vehicles with power over 6000, return the model of the vehicle with the greatest top speed.
|
SELECT model FROM vehicle WHERE power > 6000 ORDER BY top_speed DESC LIMIT 1
|
hard
|
153 |
vehicle_driver
|
[
"driver"
] |
What are the names of the drivers who are citizens of the 'United States'?
|
SELECT name FROM driver WHERE citizenship = 'United States'
|
easy
|
154 |
vehicle_driver
|
[
"driver"
] |
Return the names of drivers with citizenship from the United States.
|
SELECT name FROM driver WHERE citizenship = 'United States'
|
easy
|
155 |
vehicle_driver
|
[
"vehicle_driver"
] |
How many vehicles has a driver driven at most, and what is the driver id of the driver who has driven this many vehicles?
|
SELECT count(*) , driver_id FROM vehicle_driver GROUP BY driver_id ORDER BY count(*) DESC LIMIT 1
|
hard
|
156 |
vehicle_driver
|
[
"vehicle_driver"
] |
What is the id of the driver who has driven the most vehicles, and how many vehicles is this?
|
SELECT count(*) , driver_id FROM vehicle_driver GROUP BY driver_id ORDER BY count(*) DESC LIMIT 1
|
hard
|
157 |
vehicle_driver
|
[
"vehicle"
] |
What is the maximum and average power for the vehicles manufactured by 'Zhuzhou'?
|
SELECT max(power) , avg(power) FROM vehicle WHERE builder = 'Zhuzhou'
|
medium
|
158 |
vehicle_driver
|
[
"vehicle"
] |
Return the maximum and average power for the vehicles built by Zhuzhou.
|
SELECT max(power) , avg(power) FROM vehicle WHERE builder = 'Zhuzhou'
|
medium
|
159 |
vehicle_driver
|
[
"vehicle_driver"
] |
What is the id of the vehicle driven for the least times for the vehicles ever used?
|
SELECT vehicle_id FROM vehicle_driver GROUP BY vehicle_id ORDER BY count(*) ASC LIMIT 1
|
hard
|
160 |
vehicle_driver
|
[
"vehicle_driver"
] |
Return the id of the vehicle that has been driven the fewest times.
|
SELECT vehicle_id FROM vehicle_driver GROUP BY vehicle_id ORDER BY count(*) ASC LIMIT 1
|
hard
|
161 |
vehicle_driver
|
[
"vehicle"
] |
What is the top speed and power of the vehicle manufactured in the year of 1996?
|
SELECT top_speed , power FROM vehicle WHERE build_year = 1996
|
medium
|
162 |
vehicle_driver
|
[
"vehicle"
] |
Return the top speed and power of the vehicle that was built in the year 1996.
|
SELECT top_speed , power FROM vehicle WHERE build_year = 1996
|
medium
|
163 |
vehicle_driver
|
[
"vehicle"
] |
What are the build year, model name and builder of the vehicles?
|
SELECT build_year , model , builder FROM vehicle
|
medium
|
164 |
vehicle_driver
|
[
"vehicle"
] |
Give the build year, model, and builder of each vehicle.
|
SELECT build_year , model , builder FROM vehicle
|
medium
|
165 |
vehicle_driver
|
[
"vehicle",
"vehicle_driver"
] |
How many drivers have driven vehicles built in 2012?
|
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
|
medium
|
166 |
vehicle_driver
|
[
"vehicle",
"vehicle_driver"
] |
Count the number of different drivers who have driven vehicles built in 2012.
|
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
|
medium
|
167 |
vehicle_driver
|
[
"driver"
] |
How many drivers have raced in 'NASCAR'?
|
SELECT count(*) FROM driver WHERE Racing_Series = 'NASCAR'
|
easy
|
168 |
vehicle_driver
|
[
"driver"
] |
Count the number of drivers who have raced in NASCAR.
|
SELECT count(*) FROM driver WHERE Racing_Series = 'NASCAR'
|
easy
|
169 |
vehicle_driver
|
[
"vehicle"
] |
What is the average top speed of vehicles?
|
SELECT avg(top_speed) FROM vehicle
|
easy
|
170 |
vehicle_driver
|
[
"vehicle"
] |
Return the average top speed across all vehicles.
|
SELECT avg(top_speed) FROM vehicle
|
easy
|
171 |
vehicle_driver
|
[
"vehicle",
"driver",
"vehicle_driver"
] |
What are the distinct driver names who have driven vehicles with power more than 5000 ?
|
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
|
hard
|
172 |
vehicle_driver
|
[
"vehicle",
"driver",
"vehicle_driver"
] |
Return the names of drivers who have driven vehicles with power over 5000.
|
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
|
hard
|
173 |
vehicle_driver
|
[
"vehicle"
] |
Which car models have total production larger than 100 or top speed higher than 150?
|
SELECT model FROM vehicle WHERE total_production > 100 OR top_speed > 150
|
medium
|
174 |
vehicle_driver
|
[
"vehicle"
] |
Give the models of cars that have a total production of over 100 or a top speed over 150.
|
SELECT model FROM vehicle WHERE total_production > 100 OR top_speed > 150
|
medium
|
175 |
vehicle_driver
|
[
"vehicle"
] |
What are the model names and build year of the cars with 'DJ' in its model name?
|
SELECT model , build_year FROM vehicle WHERE model LIKE '%DJ%'
|
medium
|
176 |
vehicle_driver
|
[
"vehicle"
] |
Return the model and build year of cars that include "DJ" in their model names.
|
SELECT model , build_year FROM vehicle WHERE model LIKE '%DJ%'
|
medium
|
177 |
vehicle_driver
|
[
"vehicle",
"vehicle_driver"
] |
What are the models which have not been driven by any drivers?
|
SELECT model FROM vehicle EXCEPT SELECT T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id
|
hard
|
178 |
vehicle_driver
|
[
"vehicle",
"vehicle_driver"
] |
Return the models of vehicles that have never been driven.
|
SELECT model FROM vehicle EXCEPT SELECT T1.model FROM vehicle AS T1 JOIN vehicle_driver AS T2 ON T1.vehicle_id = T2.vehicle_id
|
hard
|
179 |
vehicle_driver
|
[
"vehicle",
"vehicle_driver"
] |
What are the vehicle ids and models of the vehicle which have been driven by two drivers or been manufactured by 'Ziyang'.
|
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'
|
hard
|
180 |
vehicle_driver
|
[
"vehicle",
"vehicle_driver"
] |
Return the ids and models of vehicles that have been driven by exactly two drivers or built by Ziyang.
|
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'
|
hard
|
181 |
vehicle_driver
|
[
"vehicle",
"driver",
"vehicle_driver"
] |
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'?
|
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 BY T2.vehicle_id HAVING count(*) > 2
|
extra
|
182 |
vehicle_driver
|
[
"vehicle",
"driver",
"vehicle_driver"
] |
Return the ids and models of vehicles that have been driven by more than 2 drivers or been driven by the Jeff Gordon.
|
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 BY T2.vehicle_id HAVING count(*) > 2
|
extra
|
183 |
vehicle_driver
|
[
"vehicle"
] |
How many vehicles have maximum top speed?
|
SELECT count(*) FROM vehicle WHERE top_speed = (SELECT max(top_speed) FROM vehicle)
|
hard
|
184 |
vehicle_driver
|
[
"vehicle"
] |
Count the number of vehicles that have a top speed equal to the maximum across all vehicles.
|
SELECT count(*) FROM vehicle WHERE top_speed = (SELECT max(top_speed) FROM vehicle)
|
hard
|
185 |
vehicle_driver
|
[
"driver"
] |
Show all driver names in the alphabetical order.
|
SELECT name FROM driver ORDER BY name
|
easy
|
186 |
vehicle_driver
|
[
"driver"
] |
What are the names of drivers, returned in alphbetical order?
|
SELECT name FROM driver ORDER BY name
|
easy
|
187 |
vehicle_driver
|
[
"driver"
] |
How many drivers have been racing in each racing series?
|
SELECT count(*) , racing_series FROM driver GROUP BY racing_series
|
medium
|
188 |
vehicle_driver
|
[
"driver"
] |
Count the number of drivers that have raced in each series.
|
SELECT count(*) , racing_series FROM driver GROUP BY racing_series
|
medium
|
189 |
vehicle_driver
|
[
"vehicle",
"driver",
"vehicle_driver"
] |
What are the name and citizenship of the drivers who have driven the vehicle model 'DJ1'?
|
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'
|
hard
|
190 |
vehicle_driver
|
[
"vehicle",
"driver",
"vehicle_driver"
] |
Return the names and citizenships of drivers who have driven the vehicle with the model 'DJ1'.
|
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'
|
hard
|
191 |
vehicle_driver
|
[
"driver",
"vehicle_driver"
] |
How many drivers have not driven any cars?
|
SELECT count(*) FROM driver WHERE driver_id NOT IN ( SELECT driver_id FROM vehicle_driver )
|
extra
|
192 |
vehicle_driver
|
[
"driver",
"vehicle_driver"
] |
Count the number of drivers who have not driven any vehicles.
|
SELECT count(*) FROM driver WHERE driver_id NOT IN ( SELECT driver_id FROM vehicle_driver )
|
extra
|
193 |
online_exams
|
[
"exams"
] |
How many exams are there?
|
SELECT count(*) FROM Exams
|
easy
|
194 |
online_exams
|
[
"exams"
] |
Count the number of exams.
|
SELECT count(*) FROM Exams
|
easy
|
195 |
online_exams
|
[
"exams"
] |
List the distinct subject code of exams in ascending alphabetical order .
|
select distinct subject_code from exams order by subject_code asc
|
easy
|
196 |
online_exams
|
[
"exams"
] |
Give me an alphabetically ordered list of the distinct subject code for exams.
|
SELECT DISTINCT Subject_Code FROM Exams ORDER BY Subject_Code
|
easy
|
197 |
online_exams
|
[
"exams"
] |
What are the names and dates of the exams with subject code that is not "Database"?
|
SELECT Exam_Date , Exam_Name FROM Exams WHERE Subject_Code != 'Database'
|
medium
|
198 |
online_exams
|
[
"exams"
] |
Find the exams whose subject code is not "Database". What are the exam dates and exam names?
|
SELECT Exam_Date , Exam_Name FROM Exams WHERE Subject_Code != 'Database'
|
medium
|
199 |
online_exams
|
[
"exams"
] |
List the dates of the exams with subject code containing the word "data", in descending order of dates.
|
SELECT Exam_Date FROM Exams WHERE Subject_Code LIKE '%data%' ORDER BY Exam_Date DESC
|
hard
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.