nl
stringlengths
22
185
sql
stringlengths
22
608
db_id
stringclasses
40 values
table_schema
stringclasses
305 values
How many items are shipped?
SELECT count(*) FROM Shipment_Items
e_commerce
[{'table_name': 'shipment items', 'table_schema': [{'col_name': 'shipment id'}, {'col_name': 'order item id'}], 'foreign_key_columns': ['order item id', 'shipment id'], 'primary_keys': ['shipment id']}]
How many products have been shipped?
SELECT count(*) FROM Shipment_Items
e_commerce
[{'table_name': 'shipment items', 'table_schema': [{'col_name': 'shipment id'}, {'col_name': 'order item id'}], 'foreign_key_columns': ['order item id', 'shipment id'], 'primary_keys': ['shipment id']}]
What is the product average price?
SELECT avg(product_price) FROM Products
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
How much do the products cost on average?
SELECT avg(product_price) FROM Products
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
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
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
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
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
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 )
e_commerce
[{'table_name': 'customers', 'table_schema': [{'col_name': 'customer id'}, {'col_name': 'gender code'}, {'col_name': 'customer first name'}, {'col_name': 'customer middle initial'}, {'col_name': 'customer last name'}, {'col_name': 'email address'}, {'col_name': 'login name'}, {'col_name': 'login password'}, {'col_name'...
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 )
e_commerce
[{'table_name': 'customers', 'table_schema': [{'col_name': 'customer id'}, {'col_name': 'gender code'}, {'col_name': 'customer first name'}, {'col_name': 'customer middle initial'}, {'col_name': 'customer last name'}, {'col_name': 'email address'}, {'col_name': 'login name'}, {'col_name': 'login password'}, {'col_name'...
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 )
e_commerce
[{'table_name': 'customers', 'table_schema': [{'col_name': 'customer id'}, {'col_name': 'gender code'}, {'col_name': 'customer first name'}, {'col_name': 'customer middle initial'}, {'col_name': 'customer last name'}, {'col_name': 'email address'}, {'col_name': 'login name'}, {'col_name': 'login password'}, {'col_name'...
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 )
e_commerce
[{'table_name': 'customers', 'table_schema': [{'col_name': 'customer id'}, {'col_name': 'gender code'}, {'col_name': 'customer first name'}, {'col_name': 'customer middle initial'}, {'col_name': 'customer last name'}, {'col_name': 'email address'}, {'col_name': 'login name'}, {'col_name': 'login password'}, {'col_name'...
What is the most uncommon order status?
SELECT order_status_code FROM Orders GROUP BY order_status_code ORDER BY count(*) LIMIT 1
e_commerce
[{'table_name': 'orders', 'table_schema': [{'col_name': 'order id'}, {'col_name': 'customer id'}, {'col_name': 'order status code'}, {'col_name': 'date order placed'}], 'foreign_key_columns': ['customer id'], 'primary_keys': ['order id']}]
What is the least common order status?
SELECT order_status_code FROM Orders GROUP BY order_status_code ORDER BY count(*) LIMIT 1
e_commerce
[{'table_name': 'orders', 'table_schema': [{'col_name': 'order id'}, {'col_name': 'customer id'}, {'col_name': 'order status code'}, {'col_name': 'date order placed'}], 'foreign_key_columns': ['customer id'], 'primary_keys': ['order id']}]
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
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
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
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
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
e_commerce
[{'table_name': 'invoices', 'table_schema': [{'col_name': 'invoice number'}, {'col_name': 'invoice status code'}, {'col_name': 'invoice date'}], 'foreign_key_columns': [], 'primary_keys': ['invoice number']}, {'table_name': 'shipments', 'table_schema': [{'col_name': 'shipment id'}, {'col_name': 'order id'}, {'col_name'...
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
e_commerce
[{'table_name': 'invoices', 'table_schema': [{'col_name': 'invoice number'}, {'col_name': 'invoice status code'}, {'col_name': 'invoice date'}], 'foreign_key_columns': [], 'primary_keys': ['invoice number']}, {'table_name': 'shipments', 'table_schema': [{'col_name': 'shipment id'}, {'col_name': 'order id'}, {'col_name'...
what are all shipment tracking numbers and shipment dates?
SELECT shipment_tracking_number , shipment_date FROM Shipments
e_commerce
[{'table_name': 'shipments', 'table_schema': [{'col_name': 'shipment id'}, {'col_name': 'order id'}, {'col_name': 'invoice number'}, {'col_name': 'shipment tracking number'}, {'col_name': 'shipment date'}], 'foreign_key_columns': ['order id', 'invoice number'], 'primary_keys': ['shipment id']}]
What are the tracking numbers and dates for all shipments listed?
SELECT shipment_tracking_number , shipment_date FROM Shipments
e_commerce
[{'table_name': 'shipments', 'table_schema': [{'col_name': 'shipment id'}, {'col_name': 'order id'}, {'col_name': 'invoice number'}, {'col_name': 'shipment tracking number'}, {'col_name': 'shipment date'}], 'foreign_key_columns': ['order id', 'invoice number'], 'primary_keys': ['shipment id']}]
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 )
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
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 )
e_commerce
[{'table_name': 'products', 'table_schema': [{'col_name': 'product id'}, {'col_name': 'parent product id'}, {'col_name': 'product name'}, {'col_name': 'product price'}, {'col_name': 'product color'}, {'col_name': 'product size'}, {'col_name': 'product description'}], 'foreign_key_columns': [], 'primary_keys': ['product...
Return the names of directors who are older than the average age.
SELECT name FROM director WHERE age > (SELECT avg(age) FROM director)
bbc_channels
[{'table_name': 'director', 'table_schema': [{'col_name': 'director id'}, {'col_name': 'name'}, {'col_name': 'age'}], 'foreign_key_columns': [], 'primary_keys': ['director id']}]
Find the the name of the oldest director.
SELECT name FROM director ORDER BY age DESC LIMIT 1
bbc_channels
[{'table_name': 'director', 'table_schema': [{'col_name': 'director id'}, {'col_name': 'name'}, {'col_name': 'age'}], 'foreign_key_columns': [], 'primary_keys': ['director id']}]
How many channels have the word 'bbc' in their internet link?
SELECT count(*) FROM channel WHERE internet LIKE "%bbc%"
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}]
How many different digital terrestrial channels are there?
SELECT count(DISTINCT Digital_terrestrial_channel) FROM channel
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}]
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
bbc_channels
[{'table_name': 'program', 'table_schema': [{'col_name': 'program id'}, {'col_name': 'start year'}, {'col_name': 'title'}, {'col_name': 'director id'}, {'col_name': 'channel id'}], 'foreign_key_columns': ['channel id', 'director id'], 'primary_keys': ['program id']}]
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
bbc_channels
[{'table_name': 'director', 'table_schema': [{'col_name': 'director id'}, {'col_name': 'name'}, {'col_name': 'age'}], 'foreign_key_columns': [], 'primary_keys': ['director id']}, {'table_name': 'program', 'table_schema': [{'col_name': 'program id'}, {'col_name': 'start year'}, {'col_name': 'title'}, {'col_name': 'direc...
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
bbc_channels
[{'table_name': 'director', 'table_schema': [{'col_name': 'director id'}, {'col_name': 'name'}, {'col_name': 'age'}], 'foreign_key_columns': [], 'primary_keys': ['director id']}, {'table_name': 'program', 'table_schema': [{'col_name': 'program id'}, {'col_name': 'start year'}, {'col_name': 'title'}, {'col_name': 'direc...
Return the title of the program that began most recently.
SELECT title FROM program ORDER BY start_year DESC LIMIT 1
bbc_channels
[{'table_name': 'program', 'table_schema': [{'col_name': 'program id'}, {'col_name': 'start year'}, {'col_name': 'title'}, {'col_name': 'director id'}, {'col_name': 'channel id'}], 'foreign_key_columns': ['channel id', 'director id'], 'primary_keys': ['program id']}]
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
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}, {'table_name': 'program', 'table_schema': [{'col...
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
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}, {'table_name': 'program', 'table_schema': [{'col...
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)
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}, {'table_name': 'program', 'table_schema': [{'col...
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'
bbc_channels
[{'table_name': 'director', 'table_schema': [{'col_name': 'director id'}, {'col_name': 'name'}, {'col_name': 'age'}], 'foreign_key_columns': [], 'primary_keys': ['director id']}, {'table_name': 'program', 'table_schema': [{'col_name': 'program id'}, {'col_name': 'start year'}, {'col_name': 'title'}, {'col_name': 'direc...
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
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}, {'table_name': 'director admin', 'table_schema':...
Find the name of the directors whose age is between 30 and 60.
SELECT name FROM director WHERE age BETWEEN 30 AND 60
bbc_channels
[{'table_name': 'director', 'table_schema': [{'col_name': 'director id'}, {'col_name': 'name'}, {'col_name': 'age'}], 'foreign_key_columns': [], 'primary_keys': ['director id']}]
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 = t...
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}, {'table_name': 'director', 'table_schema': [{'co...
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"
bbc_channels
[{'table_name': 'channel', 'table_schema': [{'col_name': 'channel id'}, {'col_name': 'name'}, {'col_name': 'analogue terrestrial channel'}, {'col_name': 'digital terrestrial channel'}, {'col_name': 'internet'}], 'foreign_key_columns': [], 'primary_keys': ['channel id']}, {'table_name': 'director', 'table_schema': [{'co...
How many radios are there?
SELECT count(*) FROM radio
tv_shows
[{'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmitter'}, {'col_name': 'radio mhz'}, {'col_name': '2fm mhz'}, {'col_name': 'rnag mhz'}, {'col_name': 'lyric fm mhz'}, {'col_name': 'erp kw'}], 'foreign_key_columns': [], 'primary_keys': ['radio id']}]
List the transmitters of radios in ascending order of erp kw .
select transmitter from radio order by erp_kw asc
tv_shows
[{'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmitter'}, {'col_name': 'radio mhz'}, {'col_name': '2fm mhz'}, {'col_name': 'rnag mhz'}, {'col_name': 'lyric fm mhz'}, {'col_name': 'erp kw'}], 'foreign_key_columns': [], 'primary_keys': ['radio id']}]
What are the names and original air dates of tv shows?
SELECT tv_show_name , Original_Airdate FROM tv_show
tv_shows
[{'table_name': 'tv show', 'table_schema': [{'col_name': 'tv show id'}, {'col_name': 'tv show name'}, {'col_name': 'sub tittle'}, {'col_name': 'next show name'}, {'col_name': 'original airdate'}], 'foreign_key_columns': [], 'primary_keys': ['tv show id']}]
List the station names of city channels whose affiliation is not "ABC".
SELECT Station_name FROM city_channel WHERE Affiliation != "ABC"
tv_shows
[{'table_name': 'city channel', 'table_schema': [{'col_name': 'id'}, {'col_name': 'city'}, {'col_name': 'station name'}, {'col_name': 'owned since'}, {'col_name': 'affiliation'}], 'foreign_key_columns': [], 'primary_keys': ['id']}]
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
tv_shows
[{'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmitter'}, {'col_name': 'radio mhz'}, {'col_name': '2fm mhz'}, {'col_name': 'rnag mhz'}, {'col_name': 'lyric fm mhz'}, {'col_name': 'erp kw'}], 'foreign_key_columns': [], 'primary_keys': ['radio id']}]
What is the transmitter of the radio with the largest ERP_kW?
SELECT Transmitter FROM radio ORDER BY ERP_kW DESC LIMIT 1
tv_shows
[{'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmitter'}, {'col_name': 'radio mhz'}, {'col_name': '2fm mhz'}, {'col_name': 'rnag mhz'}, {'col_name': 'lyric fm mhz'}, {'col_name': 'erp kw'}], 'foreign_key_columns': [], 'primary_keys': ['radio id']}]
What is the average ERP across all radios?
SELECT avg(ERP_kW) FROM radio
tv_shows
[{'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmitter'}, {'col_name': 'radio mhz'}, {'col_name': '2fm mhz'}, {'col_name': 'rnag mhz'}, {'col_name': 'lyric fm mhz'}, {'col_name': 'erp kw'}], 'foreign_key_columns': [], 'primary_keys': ['radio id']}]
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
tv_shows
[{'table_name': 'city channel', 'table_schema': [{'col_name': 'id'}, {'col_name': 'city'}, {'col_name': 'station name'}, {'col_name': 'owned since'}, {'col_name': 'affiliation'}], 'foreign_key_columns': [], 'primary_keys': ['id']}]
Please show the most common affiliation for city channels.
SELECT Affiliation FROM city_channel GROUP BY Affiliation ORDER BY COUNT(*) DESC LIMIT 1
tv_shows
[{'table_name': 'city channel', 'table_schema': [{'col_name': 'id'}, {'col_name': 'city'}, {'col_name': 'station name'}, {'col_name': 'owned since'}, {'col_name': 'affiliation'}], 'foreign_key_columns': [], 'primary_keys': ['id']}]
List the affiliations shared by more than three city channels.
SELECT Affiliation FROM city_channel GROUP BY Affiliation HAVING COUNT(*) > 3
tv_shows
[{'table_name': 'city channel', 'table_schema': [{'col_name': 'id'}, {'col_name': 'city'}, {'col_name': 'station name'}, {'col_name': 'owned since'}, {'col_name': 'affiliation'}], 'foreign_key_columns': [], 'primary_keys': ['id']}]
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
tv_shows
[{'table_name': 'city channel', 'table_schema': [{'col_name': 'id'}, {'col_name': 'city'}, {'col_name': 'station name'}, {'col_name': 'owned since'}, {'col_name': 'affiliation'}], 'foreign_key_columns': [], 'primary_keys': ['id']}]
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
tv_shows
[{'table_name': 'city channel', 'table_schema': [{'col_name': 'id'}, {'col_name': 'city'}, {'col_name': 'station name'}, {'col_name': 'owned since'}, {'col_name': 'affiliation'}], 'foreign_key_columns': [], 'primary_keys': ['id']}, {'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmi...
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
tv_shows
[{'table_name': 'city channel', 'table_schema': [{'col_name': 'id'}, {'col_name': 'city'}, {'col_name': 'station name'}, {'col_name': 'owned since'}, {'col_name': 'affiliation'}], 'foreign_key_columns': [], 'primary_keys': ['id']}, {'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmi...
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
tv_shows
[{'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmitter'}, {'col_name': 'radio mhz'}, {'col_name': '2fm mhz'}, {'col_name': 'rnag mhz'}, {'col_name': 'lyric fm mhz'}, {'col_name': 'erp kw'}], 'foreign_key_columns': [], 'primary_keys': ['radio id']}, {'table_name': 'city channel rad...
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)
tv_shows
[{'table_name': 'radio', 'table_schema': [{'col_name': 'radio id'}, {'col_name': 'transmitter'}, {'col_name': 'radio mhz'}, {'col_name': '2fm mhz'}, {'col_name': 'rnag mhz'}, {'col_name': 'lyric fm mhz'}, {'col_name': 'erp kw'}], 'foreign_key_columns': [], 'primary_keys': ['radio id']}, {'table_name': 'city channel rad...
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
What are the names of the drivers who are citizens of the 'United States'?
SELECT name FROM driver WHERE citizenship = 'United States'
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
Return the names of drivers with citizenship from the United States.
SELECT name FROM driver WHERE citizenship = 'United States'
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
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
vehicle_driver
[{'table_name': 'vehicle driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'vehicle id'}], 'foreign_key_columns': ['vehicle id', 'driver id'], 'primary_keys': ['driver id']}]
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
vehicle_driver
[{'table_name': 'vehicle driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'vehicle id'}], 'foreign_key_columns': ['vehicle id', 'driver id'], 'primary_keys': ['driver id']}]
What is the maximum and average power for the vehicles manufactured by 'Zhuzhou'?
SELECT max(power) , avg(power) FROM vehicle WHERE builder = 'Zhuzhou'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
Return the maximum and average power for the vehicles built by Zhuzhou.
SELECT max(power) , avg(power) FROM vehicle WHERE builder = 'Zhuzhou'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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
vehicle_driver
[{'table_name': 'vehicle driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'vehicle id'}], 'foreign_key_columns': ['vehicle id', 'driver id'], 'primary_keys': ['driver id']}]
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
vehicle_driver
[{'table_name': 'vehicle driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'vehicle id'}], 'foreign_key_columns': ['vehicle id', 'driver id'], 'primary_keys': ['driver id']}]
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
What are the build year, model name and builder of the vehicles?
SELECT build_year , model , builder FROM vehicle
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
Give the build year, model, and builder of each vehicle.
SELECT build_year , model , builder FROM vehicle
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'vehicle dri...
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'vehicle dri...
How many drivers have raced in 'NASCAR'?
SELECT count(*) FROM driver WHERE Racing_Series = 'NASCAR'
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
Count the number of drivers who have raced in NASCAR.
SELECT count(*) FROM driver WHERE Racing_Series = 'NASCAR'
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
What is the average top speed of vehicles?
SELECT avg(top_speed) FROM vehicle
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
Return the average top speed across all vehicles.
SELECT avg(top_speed) FROM vehicle
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'driver', 't...
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'driver', 't...
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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%'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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%'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'vehicle dri...
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
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'vehicle dri...
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'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'vehicle dri...
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'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'vehicle dri...
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...
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'driver', 't...
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...
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'driver', 't...
How many vehicles have maximum top speed?
SELECT count(*) FROM vehicle WHERE top_speed = (SELECT max(top_speed) FROM vehicle)
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
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)
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}]
Show all driver names in the alphabetical order.
SELECT name FROM driver ORDER BY name
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
What are the names of drivers, returned in alphbetical order?
SELECT name FROM driver ORDER BY name
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
How many drivers have been racing in each racing series?
SELECT count(*) , racing_series FROM driver GROUP BY racing_series
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
Count the number of drivers that have raced in each series.
SELECT count(*) , racing_series FROM driver GROUP BY racing_series
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}]
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'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'driver', 't...
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'
vehicle_driver
[{'table_name': 'vehicle', 'table_schema': [{'col_name': 'vehicle id'}, {'col_name': 'model'}, {'col_name': 'build year'}, {'col_name': 'top speed'}, {'col_name': 'power'}, {'col_name': 'builder'}, {'col_name': 'total production'}], 'foreign_key_columns': [], 'primary_keys': ['vehicle id']}, {'table_name': 'driver', 't...
How many drivers have not driven any cars?
SELECT count(*) FROM driver WHERE driver_id NOT IN ( SELECT driver_id FROM vehicle_driver )
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}, {'table_name': 'vehicle driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'vehicle id'}], 'f...
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 )
vehicle_driver
[{'table_name': 'driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'name'}, {'col_name': 'citizenship'}, {'col_name': 'racing series'}], 'foreign_key_columns': [], 'primary_keys': ['driver id']}, {'table_name': 'vehicle driver', 'table_schema': [{'col_name': 'driver id'}, {'col_name': 'vehicle id'}], 'f...
How many exams are there?
SELECT count(*) FROM Exams
online_exams
[{'table_name': 'exams', 'table_schema': [{'col_name': 'exam id'}, {'col_name': 'subject code'}, {'col_name': 'exam date'}, {'col_name': 'exam name'}], 'foreign_key_columns': [], 'primary_keys': ['exam id']}]
Count the number of exams.
SELECT count(*) FROM Exams
online_exams
[{'table_name': 'exams', 'table_schema': [{'col_name': 'exam id'}, {'col_name': 'subject code'}, {'col_name': 'exam date'}, {'col_name': 'exam name'}], 'foreign_key_columns': [], 'primary_keys': ['exam id']}]
List the distinct subject code of exams in ascending alphabetical order .
select distinct subject_code from exams order by subject_code asc
online_exams
[{'table_name': 'exams', 'table_schema': [{'col_name': 'exam id'}, {'col_name': 'subject code'}, {'col_name': 'exam date'}, {'col_name': 'exam name'}], 'foreign_key_columns': [], 'primary_keys': ['exam id']}]
Give me an alphabetically ordered list of the distinct subject code for exams.
SELECT DISTINCT Subject_Code FROM Exams ORDER BY Subject_Code
online_exams
[{'table_name': 'exams', 'table_schema': [{'col_name': 'exam id'}, {'col_name': 'subject code'}, {'col_name': 'exam date'}, {'col_name': 'exam name'}], 'foreign_key_columns': [], 'primary_keys': ['exam id']}]
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'
online_exams
[{'table_name': 'exams', 'table_schema': [{'col_name': 'exam id'}, {'col_name': 'subject code'}, {'col_name': 'exam date'}, {'col_name': 'exam name'}], 'foreign_key_columns': [], 'primary_keys': ['exam id']}]
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'
online_exams
[{'table_name': 'exams', 'table_schema': [{'col_name': 'exam id'}, {'col_name': 'subject code'}, {'col_name': 'exam date'}, {'col_name': 'exam name'}], 'foreign_key_columns': [], 'primary_keys': ['exam id']}]
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
online_exams
[{'table_name': 'exams', 'table_schema': [{'col_name': 'exam id'}, {'col_name': 'subject code'}, {'col_name': 'exam date'}, {'col_name': 'exam name'}], 'foreign_key_columns': [], 'primary_keys': ['exam id']}]