db_id stringclasses 66
values | question stringlengths 24 325 | evidence stringlengths 1 673 ⌀ | gold_query stringlengths 23 804 | db_schema stringclasses 66
values |
|---|---|---|---|---|
authors | How many authors finished the paper "An Improved Active Suspension Model for Attitude Control of Electric Vehicles" together? | authors refers to AuthorId; 'An Improved Active Suspension Model for Attitude Control of Electric Vehicles' is the Title of a paper; A paper can have more than one author. Co-authorship can be derived from (paper ID, author ID) pair. | SELECT COUNT(T2.AuthorId) FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'An Improved Active Suspension Model for Attitude Control of Electric Vehicles' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
book_publishing_company | Which title is about helpful hints on how to use your electronic resources, which publisher published it and what is the price of this book? | publisher refers to pub_name; about the title refers to notes | SELECT T1.title, T2.pub_name, T1.price FROM titles AS T1 INNER JOIN publishers AS T2 ON T1.pub_id = T2.pub_id WHERE T1.notes = 'Helpful hints on how to use your electronic resources to the best advantage.' | CREATE TABLE jobs
(
max_lvl INTEGER not null, -- Example Values: `10`, `250`, `225`, `200`, `175` | Value Statics: Total count 14 - Distinct count 8 - Null count 0
job_desc TEXT not null, -- Example Values: `New Hire - Job not specified`, `Chief Executive Officer`, `Business Operations Manager`, `Chief Financial O... |
movie_3 | How much is the total rental payment for the first 10 rentals? | first 10 rental refers to rental id between 1 and 10; total rental payment refers to sum(amount) | SELECT SUM(amount) FROM payment WHERE rental_id BETWEEN 1 AND 10 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | How many deserts are not located in a single country? Name them. | null | SELECT Desert FROM geo_desert GROUP BY Desert HAVING COUNT(DISTINCT Country) > 1 | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
shipping | In which city did the heaviest shipment transported? | heaviest shipment refers to Max(weight); city refers to city_name | SELECT T2.city_name FROM shipment AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.city_id ORDER BY T1.weight DESC LIMIT 1 | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
citeseer | In the papers classified as ML, how many cited butz01algorithmic? | classification refers to class_label; paper cited by refers to citing_paper_id; citing_paper_id = 'butz01algorithmic'; | SELECT COUNT(T1.paper_id) FROM paper AS T1 INNER JOIN cites AS T2 ON T1.paper_id = T2.citing_paper_id WHERE T1.class_label = 'ML' AND T2.cited_paper_id = 'butz01algorithmic' | CREATE TABLE cites
(
primary key (cited_paper_id, citing_paper_id),
cited_paper_id TEXT not null, --
citing_paper_id TEXT not null, --
);
CREATE TABLE paper
(
paper_id TEXT not null primary key,
class_label TEXT not null, -- Example Values: `Agents`, `IR`, `ML`, `AI`, `DB` | Value Statics: Total count 3312 - ... |
authors | Which conference has the longest name? | the longest name refers to MAX(length(FullName)) | SELECT FullName FROM Conference ORDER BY LENGTH(FullName) DESC LIMIT 1 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
book_publishing_company | How many sales did the store in Remulade make? | Remulade is a city; sales in the store refers to ord_num | SELECT COUNT(T1.ord_num) FROM sales AS T1 INNER JOIN stores AS T2 ON T1.stor_id = T2.stor_id WHERE T2.city = 'Remulade' | CREATE TABLE jobs
(
max_lvl INTEGER not null, -- Example Values: `10`, `250`, `225`, `200`, `175` | Value Statics: Total count 14 - Distinct count 8 - Null count 0
job_desc TEXT not null, -- Example Values: `New Hire - Job not specified`, `Chief Executive Officer`, `Business Operations Manager`, `Chief Financial O... |
movie_3 | List the names of the films that are more than 180 minutes long. | more than 180 min long refers to length > 180; name of film refers to title | SELECT title FROM film WHERE length > 180 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | In countries where there is more than one ethnic group, name the ethnic group with the greatest presence in each country and the country to which it corresponds. | greatest presence can be represented by largest percentage. | SELECT Country, Name FROM ethnicGroup AS T1 WHERE Percentage < 100 AND Percentage = ( SELECT MAX(Percentage) FROM ethnicGroup AS T2 WHERE T1.Country = T2.Country ) | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
shipping | Among the shipments shipped to Cicero, Illinois, how many shipments weighed between 9,000 to 15,000? | "Cicero" is the city; 'Illinois' is the state | SELECT COUNT(*) FROM shipment AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.city_id WHERE T2.city_name = 'Cicero' AND T2.state = 'Illinois' AND T1.weight BETWEEN 9000 AND 15000 | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
citeseer | Find the words cited in papers that are cited by sima01computational? | paper cited by refers to citing_paper_id; citing_paper_id = 'sima01computational'; | SELECT DISTINCT T2.word_cited_id FROM cites AS T1 INNER JOIN content AS T2 ON T1.cited_paper_id = T2.paper_id WHERE T1.citing_paper_id = 'sima01computational' | CREATE TABLE cites
(
primary key (cited_paper_id, citing_paper_id),
cited_paper_id TEXT not null, --
citing_paper_id TEXT not null, --
);
CREATE TABLE paper
(
paper_id TEXT not null primary key,
class_label TEXT not null, -- Example Values: `Agents`, `IR`, `ML`, `AI`, `DB` | Value Statics: Total count 3312 - ... |
authors | Show the keywords of the paper that was presented at "International Radar Symposium" in 2012. | 'International Radar Symposium' is the FullName of the conference; 2012 refers to Year = '2012' | SELECT T1.Keyword FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.FullName = 'International Radar Symposium' AND T1.Year = 2012 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
book_publishing_company | List the type of the book for the order which was sold on 1993/5/29. | sold on refers to ord_date | SELECT DISTINCT T1.type FROM titles AS T1 INNER JOIN sales AS T2 ON T1.title_id = T2.title_id WHERE STRFTIME('%Y-%m-%d', T2.ord_date) = '1993-05-29' | CREATE TABLE jobs
(
max_lvl INTEGER not null, -- Example Values: `10`, `250`, `225`, `200`, `175` | Value Statics: Total count 14 - Distinct count 8 - Null count 0
job_desc TEXT not null, -- Example Values: `New Hire - Job not specified`, `Chief Executive Officer`, `Business Operations Manager`, `Chief Financial O... |
movie_3 | How many customers paid over the amount of 10 on August 2005? | over the amount of 10 refers to amount > 10; paid on August 2005 refers to payment_date like '2005_08%'; customer refers to customer_id | SELECT COUNT(customer_id) FROM payment WHERE SUBSTR(payment_date, 1, 7) LIKE '2005-08' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | What is the population density of Hanoi's home country? | population density = Population / Area | SELECT T1.Population / T1.Area FROM country AS T1 INNER JOIN province AS T2 ON T1.Code = T2.Country INNER JOIN city AS T3 ON T3.Province = T2.Name WHERE T3.Name = 'Hanoi' | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
shipping | Calculate the percentage of the weight of goods being transported by Zachery Hicks to California in year 2016. | "California" is the state; in 2016 refers to CAST (ship_date AS DATE) = 2016; percentage = Divide (Sum(weight where first_name = 'Zachery' AND last_name = 'Hicks'), Sum(weight)) * 100 | SELECT CAST(SUM(CASE WHEN T2.first_name = 'Zachery' AND T2.last_name = 'Hicks' THEN T1.weight ELSE 0 END) AS REAL) * 100 / SUM(T1.weight) FROM shipment AS T1 INNER JOIN driver AS T2 ON T1.driver_id = T2.driver_id WHERE STRFTIME('%Y', T1.ship_date) = '2016' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
authors | What is the oldest published book? | published book refers to Title; the oldest book refers to MIN(Year) | SELECT Title FROM Paper WHERE Year > 0 ORDER BY Year ASC LIMIT 1 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | Among the clients who did receive a timely response for their complaint, how many of them are from New York? | did not receive a timely response refers to "Timely response?" = 'No'; New York refers to city = 'New York'; | SELECT COUNT(T1.city) FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T2.`Timely response?` = 'No' AND T1.city = 'New York City' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | What are the special features for the film "Smoochy Control"? | "SMOOCHY CONTROL" is the title of film | SELECT special_features FROM film WHERE title = 'SMOOCHY CONTROL' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | How many times longer is the longest river in Tajikistan than the shortest river? | TJ is an abbreviated country code of Tajikistan | SELECT MAX(T2.Length) / MIN(T2.Length) FROM located AS T1 INNER JOIN river AS T2 ON T1.River = T2.Name WHERE T1.Country = 'TJ' | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
citeseer | Among the papers under DB classification, which paper has the highest number of words cited? | classification refers to class_label; class_label = 'DB'; | SELECT T1.paper_id FROM paper AS T1 INNER JOIN content AS T2 ON T1.paper_id = T2.paper_id WHERE T1.class_label = 'DB' GROUP BY T1.paper_id ORDER BY COUNT(T2.word_cited_id) DESC LIMIT 1 | CREATE TABLE cites
(
primary key (cited_paper_id, citing_paper_id),
cited_paper_id TEXT not null, --
citing_paper_id TEXT not null, --
);
CREATE TABLE paper
(
paper_id TEXT not null primary key,
class_label TEXT not null, -- Example Values: `Agents`, `IR`, `ML`, `AI`, `DB` | Value Statics: Total count 3312 - ... |
retail_complains | Did Ms. Lyric Emely Taylor provide the consent for result of the complaint call on 2016/5/20? | Ms refers to sex = 'Female'; "Consumer consent provided?" in (null, 'N/A', 'Empty') means that the company didn't get the permission of consent; "Consumer consent provided?" not in (null, 'N/A', 'Empty') means the customers provide the consent; on 2016/5/20 refers to Date received = '2016-05-20'; | SELECT CASE WHEN T2.`Consumer consent provided?` IN (NULL, 'N/A', '') THEN 'No' ELSE 'Yes' END FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T1.first = 'Lyric' AND T1.middle = 'Emely' AND T1.last = 'Taylor' AND T1.sex = 'Female' AND T2.`Date received` = '2016-05-20' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | How many actors starred in the film id 508? | null | SELECT COUNT(actor_id) FROM film_actor WHERE film_id = 508 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | What is the GDP for Service of the country with Fuenlabrada as its city. | null | SELECT T4.Service * T4.GDP FROM country AS T1 INNER JOIN province AS T2 ON T1.Code = T2.Country INNER JOIN city AS T3 ON T3.Province = T2.Name INNER JOIN economy AS T4 ON T4.Country = T2.Country WHERE T3.Name = 'Fuenlabrada' | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
simpson_episodes | What's the nickname for Dan Castellaneta? | "Dan Castellaneta" is the name of Person | SELECT nickname FROM Person WHERE name = 'Dan Castellaneta'; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
authors | How many journals don’t have a short name? | don’t have a short name means ShortName is null | SELECT COUNT(ShortName) FROM Journal WHERE ShortName = '' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | What is the detailed product of the complaint filed by Diesel Galloway on 2014/7/3? | detailed product refers to "sub-product"; on 2014/7/3 refers to "Date received" = '2014-07-03'; | SELECT T2.`Sub-product` FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T1.first = 'Diesel' AND T1.last = 'Galloway' AND T2.`Date received` = '2014-07-03' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | In 2006, how many restricted films were released? | restricted refers to rating = 'R'; release refers to release_year; in 2006 refers to release_year = 2006; film refers to title | SELECT COUNT(film_id) FROM film WHERE rating = 'R' AND release_year = 2006 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | What is the GDP per capita in Switzerland? | GDP per capita = GDP / Population | SELECT T2.GDP / T1.Population FROM country AS T1 INNER JOIN economy AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Switzerland' | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
shipping | List the drivers who shipped the shipments to the least populated city. | least populated city refers to Min(population); name refers to first_name, last_name | SELECT T3.first_name, T3.last_name FROM shipment AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.city_id INNER JOIN driver AS T3 ON T3.driver_id = T1.driver_id ORDER BY T2.population ASC LIMIT 1 | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
movie_3 | How many times is the number of films Gina DeGeneres acted in than Penelope Guinness? | "Gina DeGeneres" and "Penelope Guinness" are both full name of actor; times number of film = Divide (Count (film_id where first_name = 'GINA' and last_name = 'DEGENERES'), Count(film_id where first_name = 'PENELOPE' and last_name = 'GUINESS')) | SELECT CAST(SUM(IIF(T2.first_name = 'GINA' AND T2.last_name = 'DEGENERES', 1, 0)) AS REAL) * 100 / SUM(IIF(T2.first_name = 'PENELOPE' AND T2.last_name = 'GUINESS', 1, 0)) FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | When did Equatorial Guinea become independent? | Equatorial Guinea is a country | SELECT T2.Independence FROM country AS T1 INNER JOIN politics AS T2 ON T1.Code = T2.Country WHERE T1.Name = 'Equatorial Guinea' | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
shipping | What is the address of the driver that delivers the shipment for the customer lives at 7052 Carroll Road, San Diego, California? | "7052 Carroll Road" is the address of customer; 'San Diego' is the city; 'California' is the state | SELECT T3.address FROM shipment AS T1 INNER JOIN customer AS T2 ON T1.cust_id = T2.cust_id INNER JOIN driver AS T3 ON T3.driver_id = T1.driver_id WHERE T2.address = '7052 Carroll Road' AND T2.city = 'San Diego' AND T2.state = 'CA' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
public_review_platform | How many businesses in the city of Scottsdale open on Sunday at 12PM? | businesses that opened on Sunday refers to day_of_week = 'Sunday'; businesses that opened at 12PM refers to opening_time = '12PM' | SELECT COUNT(DISTINCT T2.business_id) FROM Business AS T1 INNER JOIN Business_hours AS T2 ON T1.business_id = T2.business_id INNER JOIN Days AS T3 ON T2.day_id = T3.day_id WHERE T1.city = 'Scottsdale' AND T3.day_of_week = 'Sunday' AND T2.opening_time = '12PM' | CREATE TABLE Attributes
(
attribute_name TEXT, --
attribute_id INTEGER constraint Attributes_pk primary key,
);
CREATE TABLE Elite
(
year_id INTEGER constraint Elite_Years_year_id_fk references Years, -- Example Values: `2010`, `2011`, `2012`, `2013`, `2014` | Value Statics: Total count 16366 - Distinct count 10 ... |
authors | What is the percentage of preprints of John Van Reenen's papers? | year = 0 means this paper is preprint; John Van Reenen is the author's name; papers refers to paper.Id; calculation = DIVIDE(SUM(paper.Id where Name = 'John Van Reenen' AND ConferenceID = 0 AND JournalId = 0), SUM(paper.Id where Name = 'John Van Reenen')) | SELECT CAST(SUM(CASE WHEN T1.ConferenceId = 0 AND T1.JournalId = 0 THEN 1 ELSE 0 END) AS REAL) / COUNT(T1.Id) FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'John Van Reenen' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | List by name all customers who provided consent for the tag Older American. | name refers to first; provided consent refers to "Consumer consent provided?" not in ('N/A', null, 'empty'); | SELECT T1.first, T1.middle, T1.last FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T2.Tags = 'Older American' AND T2.`Consumer consent provided?` != 'N/A' AND T2.`Consumer consent provided?` IS NOT NULL AND T2.`Consumer consent provided?` != '' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | How many times is the number of Indian cities than Italian cities? | indian refers to country = 'India'; Italian refers to country = 'Italy'; times = Divide(Count(city where country = 'India), Count(city where country = 'Italy')) | SELECT CAST(SUM(IIF(T1.country = 'India', 1, 0)) AS REAL) / SUM(IIF(T1.country = 'Italy', 1, 0)) FROM country AS T1 INNER JOIN city AS T2 ON T1.country_id = T2.country_id | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | What is the ship ID of shipments shipped to the city with the largest area? | city with largest area refers to Max(area) | SELECT T1.ship_id FROM shipment AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.city_id ORDER BY T2.area DESC LIMIT 1 | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
retail_complains | Was the tag in the complaint filed by Matthew Pierce on 2016/10/28 approved by himself? | on 2016/10/28 refers to Date received = '2016-10-28'; "Consumer consent provided?" in (null, 'N/A', 'Empty') means that the company didn't get the permission of consent; "Consumer consent provided?" not in (null, 'N/A', 'Empty') means that customers provide the consent for this tag; | SELECT CASE WHEN T2.`Consumer consent provided?` IN (NULL, 'N/A', 'Empty') THEN 'No' ELSE 'Yes' END FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T1.first = 'Matthew' AND T1.last = 'Pierce' AND T2.`Date received` = '2016-10-28' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | What is the percentage more for the rental payment for store No.2 than store No.1? | store no. 1 refers to store_id = 1; store no.2 refers to store_id = 2; rental payment refers to amount; percent more = Divide (Subtract(amount where store_id = 2, amount where store_id = 1), amount where store_id = 1) *100 | SELECT CAST((SUM(IIF(T2.store_id = 2, T1.amount, 0)) - SUM(IIF(T2.store_id = 1, T1.amount, 0))) AS REAL) * 100 / SUM(IIF(T2.store_id = 1, T1.amount, 0)) FROM payment AS T1 INNER JOIN customer AS T2 ON T1.customer_id = T2.customer_id INNER JOIN store AS T3 ON T2.store_id = T3.store_id | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
mondial_geo | How many mountains are there in the United States? | null | SELECT COUNT(T1.Name) FROM mountain AS T1 INNER JOIN geo_mountain AS T2 ON T1.Name = T2.Mountain INNER JOIN province AS T3 ON T3.Name = T2.Province INNER JOIN country AS T4 ON T4.Province = T3.Name WHERE T4.Name = 'United States' | CREATE TABLE politics
(
Government TEXT, --
Country TEXT default '' not null primary key constraint politics_ibfk_1 references country on update cascade on delete cascade,
Independence DATE, --
Dependent TEXT constraint politics_ibfk_2 references country on update cascade on delete cascade, -- Example Values: `... |
simpson_episodes | Please list the names of all the awards won by the crew member whose nickname is Doofus. | award won refers to result = 'Winner' | SELECT T2.award FROM Person AS T1 INNER JOIN Award AS T2 ON T1.name = T2.person WHERE T1.nickname = 'Doofus' AND T2.result = 'Winner'; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
authors | How many authors are affiliated with NASA Langley Research Center? | NASA Langley Research Center is the Affiliation | SELECT COUNT(Name) FROM Author WHERE Affiliation = 'NASA Langley Research Center' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | For how long was the complaint filed by Matthew Pierce on 2016/10/28 delayed? | on 2016/10/28 refers to "Date received" = '2016-10-28'; delayed = SUBTRACT("Date sent to company', 'Date received"); | SELECT 365 * (strftime('%Y', T2.`Date sent to company`) - strftime('%Y', T2.`Date received`)) + 30 * (strftime('%M', T2.`Date sent to company`) - strftime('%M', T2.`Date received`)) + (strftime('%d', T2.`Date sent to company`) - strftime('%d', T2.`Date received`)) FROM client AS T1 INNER JOIN events AS T2 ON T1.client_... | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | Give the name of the film for inventory No.3479. | inventory no. 3479 refers to inventory_id = '3479'; name of film refers to title | SELECT T1.title FROM film AS T1 INNER JOIN inventory AS T2 ON T1.film_id = T2.film_id WHERE T2.inventory_id = 3479 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | What model year of truck delivered the ship ID 1233? | null | SELECT T1.model_year FROM truck AS T1 INNER JOIN shipment AS T2 ON T1.truck_id = T2.truck_id WHERE T2.ship_id = '1233' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
simpson_episodes | Which crew member of the simpson 20s is the oldest? | oldest refers to Min(birthdate) | SELECT name FROM Person WHERE birthdate IS NOT NULL ORDER BY birthdate ASC LIMIT 1; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
retail_complains | Please list the full names of all the male clients born after the year 1990. | full names = first, middle, last; male refers to sex = 'Male'; year > 1990; | SELECT first, middle, last FROM client WHERE year > 1990 | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | State the name of the category which has the most number of films. | category refers to name; most number of films refers to Max(Count(film_id)) | SELECT T.name FROM ( SELECT T2.name, COUNT(T1.film_id) AS num FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id GROUP BY T2.name ) AS T ORDER BY T.num DESC LIMIT 1 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | What is the truck's model year used to ship the ship ID 1245? | null | SELECT T1.model_year FROM truck AS T1 INNER JOIN shipment AS T2 ON T1.truck_id = T2.truck_id WHERE T2.ship_id = '1245' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
authors | What is the title of the paper with the most authors? | paper refers to paper.Id; paper with the most authors refers to MAX(PaperAuthor.PaperId) | SELECT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id GROUP BY T1.PaperId ORDER BY COUNT(T1.PaperId) DESC LIMIT 1 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
book_publishing_company | Which titles has above average royalty rate? Give those title's name, type and price? | average royalty rate = DIVIDE(SUM(royalty), COUNT(title_id)) | SELECT DISTINCT T1.title, T1.type, T1.price FROM titles AS T1 INNER JOIN roysched AS T2 ON T1.title_id = T2.title_id WHERE T2.royalty > ( SELECT CAST(SUM(royalty) AS REAL) / COUNT(title_id) FROM roysched ) | CREATE TABLE jobs
(
max_lvl INTEGER not null, -- Example Values: `10`, `250`, `225`, `200`, `175` | Value Statics: Total count 14 - Distinct count 8 - Null count 0
job_desc TEXT not null, -- Example Values: `New Hire - Job not specified`, `Chief Executive Officer`, `Business Operations Manager`, `Chief Financial O... |
movie_3 | Give the number of documentary films. | "Documentary" is the name of category; number of film refers to Count(film_id) | SELECT COUNT(T1.film_id) FROM film_category AS T1 INNER JOIN category AS T2 ON T1.category_id = T2.category_id WHERE T2.name = 'Documentary' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
authors | What is the journal's short and full names that feature papers on the "Materials" topic? | papers on the "Materials" topic refers to Keyword = 'Materials' | SELECT T2.ShortName, T2.FullName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Keyword LIKE '%Materials%' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | When did the earliest complaint start on 2017/3/22? | earliest complaint refers to oldest ser_start; on 2017/3/22 refers to "Date received" = '2017-03-22'; | SELECT MIN(ser_time) FROM callcenterlogs WHERE `Date received` = '2017-03-22' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | Which category does the film Working Microcosmos belong to? | "WORKING MICROCOSMOS" is the title of film; category refers to name | SELECT T3.name FROM film AS T1 INNER JOIN film_category AS T2 ON T1.film_id = T2.film_id INNER JOIN category AS T3 ON T2.category_id = T3.category_id WHERE T1.title = 'WORKING MICROCOSMOS' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | Identify the total weight of shipments transported in 2016 by the newest Peterbilt. | transported in 2016 refers to CAST(ship_date as DATE) = 2016; 'Peterbilt' is the make; newest refers to Max(model_year) | SELECT SUM(T2.weight) FROM truck AS T1 INNER JOIN shipment AS T2 ON T1.truck_id = T2.truck_id WHERE T1.make = 'Peterbilt' AND STRFTIME('%Y', T2.ship_date) = '2016' ORDER BY T1.model_year DESC LIMIT 1 | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
simpson_episodes | In which country was the winner of the Outstanding Voice-Over Performance award of 2009 born? | "Outstanding Voice-Over Performance" is the award; 2009 refers to year = 2009; 'Winner' is the result; country refers to birth_country | SELECT T1.birth_country FROM Person AS T1 INNER JOIN Award AS T2 ON T1.name = T2.person WHERE T2.award = 'Outstanding Voice-Over Performance' AND T2.year = 2009 AND T2.result = 'Winner'; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
authors | How many papers were published by the "Virtual Reality, IEEE Annual International Symposium" conference in 2012? | 'Virtual Reality, IEEE Annual International Symposium' is the FullName of conference; in 2012 refers to Year = 2012; | SELECT COUNT(T2.Id) FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T1.FullName = 'Virtual Reality, IEEE Annual International Symposium' AND T2.Year = 2012 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | How many complaints have the client Diesel Galloway filed? | null | SELECT COUNT(T1.client_id) FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T1.first = 'Diesel' AND T1.last = 'Galloway' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | How much money did the customer No.297 pay for the rental which happened at 12:27:27 on 2005/7/28? | customer no. 297 refers to customer_id = 297; at 12:27:27 on 2005/7/28 refers to rental_date = '2005-07-28 12:27:27'; money pay for rent refers to amount | SELECT T1.amount FROM payment AS T1 INNER JOIN rental AS T2 ON T1.rental_id = T2.rental_id WHERE T2.rental_date = '2005-07-28 12:27:27' AND T2.customer_id = 297 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | Give the annual revenue of the customer of ship ID 1047. | null | SELECT T2.annual_revenue FROM shipment AS T1 INNER JOIN customer AS T2 ON T1.cust_id = T2.cust_id WHERE T1.ship_id = '1047' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
book_publishing_company | Name the top five titles that sold more than average and list them in descending order of the number of sales in California stores? | qty is abbreviation for quantity; sold more than average refers to qty > AVG(qty); california refers to state = 'CA" | SELECT T1.title FROM titles AS T1 INNER JOIN sales AS T2 ON T1.title_id = T2.title_id INNER JOIN publishers AS T3 ON T1.pub_id = T3.pub_id WHERE T2.qty > ( SELECT CAST(SUM(qty) AS REAL) / COUNT(title_id) FROM sales ) AND T3.state = 'CA' ORDER BY T2.qty DESC LIMIT 5 | CREATE TABLE jobs
(
max_lvl INTEGER not null, -- Example Values: `10`, `250`, `225`, `200`, `175` | Value Statics: Total count 14 - Distinct count 8 - Null count 0
job_desc TEXT not null, -- Example Values: `New Hire - Job not specified`, `Chief Executive Officer`, `Business Operations Manager`, `Chief Financial O... |
movie_3 | Give the email address of the person who lives in "1411 Lillydale Drive". | "1411 Lillydate Drive" is the address | SELECT T2.email FROM address AS T1 INNER JOIN staff AS T2 ON T1.address_id = T2.address_id WHERE T1.address = '1411 Lillydale Drive' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | Among the shipments delivered by Maria Craft, how many shipments were delivered in 2017? | delivered in 2017 refers to Cast(ship_date AS DATE) = 2017 | SELECT COUNT(*) FROM shipment AS T1 INNER JOIN driver AS T2 ON T1.driver_id = T2.driver_id WHERE T2.first_name = 'Maria' AND T2.last_name = 'Craft' AND STRFTIME('%Y', T1.ship_date) = '2017' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
simpson_episodes | Which character won the Outstanding Voice-Over Performance award in 2009? | won refers to result = 'Winner' | SELECT DISTINCT T1.character FROM Character_Award AS T1 INNER JOIN Award AS T2 ON T1.award_id = T2.award_id WHERE T2.award = 'Outstanding Voice-Over Performance' AND T2.year = 2009 AND T2.result = 'Winner'; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
retail_complains | How did Kyran Muller submit his complaint? | how it was submitted refers to "Submitted via"; | SELECT DISTINCT T2.`Submitted via` FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T1.first = 'Kyran' AND T1.last = 'Muller' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | Give the address location of Heather Morris. | address location refers to address | SELECT T1.address FROM address AS T1 INNER JOIN customer AS T2 ON T1.address_id = T2.address_id WHERE T2.first_name = 'HEATHER' AND T2.last_name = 'MORRIS' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
authors | How many of the papers are preprinted? | year = 0 means this paper is preprint; papers refers to Paper.Id | SELECT COUNT(Id) FROM Paper WHERE ConferenceId = 0 AND JournalId = 0 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | What is the average number of stars given by Oregon clients in their reviews? | average = DIVIDE(SUM(State = 'Oregon'), COUNT(district_id)); Oregon refers to state = 'Oregon'; | SELECT CAST(SUM(T3.Stars) AS REAL) / COUNT(T3.Stars) AS average FROM state AS T1 INNER JOIN district AS T2 ON T1.StateCode = T2.state_abbrev INNER JOIN reviews AS T3 ON T2.district_id = T3.district_id WHERE T1.State = 'Oregon' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | How many films are in English? | "English" is the name of language | SELECT COUNT(T1.film_id) FROM film AS T1 INNER JOIN language AS T2 ON T1.language_id = T2.language_id WHERE T2.name = 'English' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | How many shipments were delivered to a customer from New York? | "New York" refers to state = 'NY' | SELECT COUNT(*) FROM shipment AS T1 INNER JOIN customer AS T2 ON T1.cust_id = T2.cust_id WHERE T2.state = 'NY' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
simpson_episodes | Among the crew members of the simpson 20s born in the New York city, how many of them were born after the year 1970? | born in New York city refers to birth_region = 'New York'; born after year 1970 refers to ('%Y', birthdate) > 1970 | SELECT COUNT(name) FROM Person WHERE birth_region = 'New York' AND SUBSTR(birthdate, 1, 4) > '1970'; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
authors | List all of the papers written by the author "Karin Rengefors." | all the papers refers to Title; Karin Rengefors is the Name of the author | SELECT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Name = 'Karin Rengefors' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | Which region does Noah Thompson live in? | null | SELECT T2.division FROM client AS T1 INNER JOIN district AS T2 ON T1.district_id = T2.district_id WHERE T1.first = 'Noah' AND T1.last = 'Thompson' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | How many addresses are there in Woodridge city? | "Woodridge" is the city | SELECT COUNT(T1.address_id) FROM address AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.city_id WHERE T2.city = 'Woodridge' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
retail_complains | What is the average age of Norwalk clients? | average age = AVG(age); Norwalk refers to city = 'Norwalk'; | SELECT CAST(SUM(T1.age) AS REAL) / COUNT(T1.age) AS average FROM client AS T1 INNER JOIN district AS T2 ON T1.district_id = T2.district_id WHERE T2.city = 'Norwalk' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | Where does the staff Jon Stephens live? | location refers to address, address2, district | SELECT T1.address, T1.address2 FROM address AS T1 INNER JOIN staff AS T2 ON T1.address_id = T2.address_id WHERE T2.first_name = 'Jon' AND T2.last_name = 'Stephens' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | Where does the driver of ship ID 1127 live? | live refers to address | SELECT T2.address FROM shipment AS T1 INNER JOIN driver AS T2 ON T1.driver_id = T2.driver_id WHERE T1.ship_id = '1127' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
simpson_episodes | How many crew members who were born in the USA were nominated for the Outstanding Animated Program (For Programming Less Than One Hour) award in 2009? | born in USA refers to birth_country = 'USA'; were nominated refers to result = 'Nominee'; 'Outstanding Animated Program (For Programming Less Than One Hour)' is the award; in 2009 refers to year = 2009 | SELECT COUNT(*) FROM Person AS T1 INNER JOIN Award AS T2 ON T1.name = T2.person WHERE T1.birth_country = 'USA' AND T2.result = 'Nominee' AND T2.award = 'Outstanding Animated Program (For Programming Less Than One Hour)' AND T2.year = 2009; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
authors | What are the affiliations of the author "Mark A. Musen" written on and off paper? | Mark A. Musen refer to Author.Name; | SELECT T1.Affiliation FROM PaperAuthor AS T1 INNER JOIN Author AS T2 ON T1.AuthorId = T2.Id WHERE T2.Name = 'Mark A. Musen' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | How many clients who live in New York City submitted their complaints via fax? | submitted complaints via fax refers to "Submitted via" = 'Fax'; | SELECT COUNT(T1.client_id) FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T1.city = 'New York City' AND T2.`Submitted via` = 'Fax' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | State the address location of store No.1. | store no. 1 refers to store_id = 1; address location refers to address, address2, district | SELECT T1.address, T1.address2, T1.district FROM address AS T1 INNER JOIN store AS T2 ON T1.address_id = T2.address_id WHERE T2.store_id = 1 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
simpson_episodes | How many keywords does the episode that was aired on 2008/10/19 have? | aired on 2008/10/19 refers to air_date = '2008-10-19' | SELECT COUNT(T2.keyword) FROM Episode AS T1 INNER JOIN Keyword AS T2 ON T1.episode_id = T2.episode_id WHERE T1.air_date = '2008-10-19'; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
authors | Which paper published by the "TUBERCLE LUNG DIS" journal is the oldest? | paper refers to Title; TUBERCLE LUNG DIS is the ShortName of journal; the oldest refers to MIN(Year) | SELECT T2.Title FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.ShortName = 'TUBERCLE LUNG DIS' ORDER BY T2.Year ASC LIMIT 1 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | Please list any two clients with their full names who have been tagged as "Older American" by the company without seeking their permission. | full names = first, middle, last; without seeking their permission refers to "Consumer consent provided?" in (null, 'N/A' or 'empty'); | SELECT T1.first, T1.middle, T1.last FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T2.Tags = 'Older American' AND T2.`Consumer consent provided?` IN (NULL, 'N/A', '') LIMIT 2 | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | Give the name of the manager staff for store No.1. | store no. 1 refers to store_id = 1; name refers to first_name, last_name | SELECT T1.first_name, T1.last_name FROM staff AS T1 INNER JOIN store AS T2 ON T1.store_id = T2.store_id WHERE T2.store_id = 1 | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | Provide the destination city of the shipment shipped by January 16, 2017. | January 16, 2017 refers to ship_date = '2017-01-16'; city refers to city_name | SELECT T2.city_name FROM shipment AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.city_id WHERE T1.ship_date = '2017-01-16' | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
public_review_platform | List by their id all businesses that are open on Sunday. | day_of_week = 'Sunday'; open on Sunday refers to day_id = 1 | SELECT T1.business_id FROM Business_Hours AS T1 INNER JOIN Days AS T2 ON T1.day_id = T2.day_id WHERE T1.day_id = 1 | CREATE TABLE Attributes
(
attribute_name TEXT, --
attribute_id INTEGER constraint Attributes_pk primary key,
);
CREATE TABLE Elite
(
year_id INTEGER constraint Elite_Years_year_id_fk references Years, -- Example Values: `2010`, `2011`, `2012`, `2013`, `2014` | Value Statics: Total count 16366 - Distinct count 10 ... |
authors | List all the titles and their publishing journals from the 60's. | from the 60’s refer to Year 1960 BETWEEN 1970
| SELECT T1.Title, T1.JournalId FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Year >= 1960 AND T1.Year <= 1970 | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | What was the issue that the client with the longest server time faced? | longest server time refers to MAX(ser_time); | SELECT T2.Issue FROM callcenterlogs AS T1 INNER JOIN events AS T2 ON T1.`Complaint ID` = T2.`Complaint ID` WHERE T1.ser_time = ( SELECT MAX(ser_time) FROM callcenterlogs ) | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | Sherri Rhodes rented a film at 12:27:27 on 2005/7/28, when did she/he return that film? | rented at 12:27:27 on 2005/7/28 refers to rental_date = '2005-07-28 12:27:27' | SELECT T2.return_date FROM customer AS T1 INNER JOIN rental AS T2 ON T1.customer_id = T2.customer_id WHERE T1.first_name = 'SHERRI' AND T1.last_name = 'RHODES' AND T2.rental_date = '2005-07-28 12:27:27' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
retail_complains | How many times does the consumer have no dispute over a non-timely response from the company? | no dispute refers to Consumer disputed? = 'No'; non-timely response refers to Timely response? = 'No' | SELECT COUNT(`Timely response?`) FROM events WHERE `Timely response?` = 'No' AND `Consumer disputed?` = 'No' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | How many films did actor Daryl Wahlberg appear in? | null | SELECT COUNT(T1.film_id) FROM film_actor AS T1 INNER JOIN actor AS T2 ON T1.actor_id = T2.actor_id WHERE T2.first_name = 'DARYL' AND T2.last_name = 'WAHLBERG' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
shipping | List the ship ID of shipments shipped to the most populated city. | most populated city refers to Max(population) | SELECT T1.ship_id FROM shipment AS T1 INNER JOIN city AS T2 ON T1.city_id = T2.city_id ORDER BY T2.population DESC LIMIT 1 | CREATE TABLE city
(
population INTEGER, --
state TEXT, --
city_name TEXT, --
city_id INTEGER primary key,
area REAL, --
);
CREATE TABLE driver
(
driver_id INTEGER primary key,
address TEXT, -- Example Values: `268 Richmond Ave`, `3574 Oak Limb Cv`, `1839 S Orleans St`, `3649 Park Lake Dr`, `749 E Mckell... |
simpson_episodes | How many stars did most of the voters give in star score for the episode Lost Verizon? | "Lost Verizon" is the title of episode; most voters refers to Max(votes) | SELECT T2.stars FROM Episode AS T1 INNER JOIN Vote AS T2 ON T2.episode_id = T1.episode_id WHERE T1.title = 'Lost Verizon' ORDER BY T2.votes DESC LIMIT 1; | CREATE TABLE Keyword
(
foreign key (episode_id) references Episode(episode_id),
keyword TEXT, --
primary key (episode_id, keyword),
episode_id TEXT, --
);
CREATE TABLE Vote
(
foreign key (episode_id) references Episode(episode_id),
votes INTEGER, --
episode_id TEXT, --
percent REAL, --
stars INTEGER... |
authors | What is the short name for the journal that published the paper "A Case of Unilateral Ashy Dermatosis"? | A Case of Unilateral Ashy Dermatosis refer to Title | SELECT T2.ShortName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Title = 'A Case of Unilateral Ashy Dermatosis' | CREATE TABLE Journal
(
FullName TEXT, --
ShortName TEXT, --
HomePage TEXT, --
Id INTEGER constraint Journal_pk primary key,
);
CREATE TABLE Conference
(
ShortName TEXT, --
Id INTEGER constraint Conference_pk primary key,
HomePage TEXT, --
FullName TEXT, --
);
CREATE TABLE Paper
(
Title TEXT, -- ... |
retail_complains | What is the percentage of male clients complaining about their credit cards? | percentage = MULTIPLY(DIVIDE(SUM(sex = 'Male'), COUNT(client_id)), 1.0); male refers to sex = 'Male'; credit cards refers to Product = 'Credit card'; | SELECT CAST(SUM(CASE WHEN T1.sex = 'Male' THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.sex) FROM client AS T1 INNER JOIN events AS T2 ON T1.client_id = T2.Client_ID WHERE T2.Product = 'Credit card' | CREATE TABLE state
(
Region TEXT, -- Example Values: `South`, `West`, `Northeast`, `Midwest` | Value Statics: Total count 48 - Distinct count 4 - Null count 0
State TEXT, --
StateCode TEXT constraint state_pk primary key,
);
CREATE TABLE callcenterlogs
(
ser_time TEXT, --
"Complaint ID" TEXT, --
ser_exi... |
movie_3 | The actor Dan Harris played in a 77 minute film with replacement cost of 9.99, what was the rating for that film? | 77 min film refers to length = 77 | SELECT T3.rating FROM actor AS T1 INNER JOIN film_actor AS T2 ON T1.actor_id = T2.actor_id INNER JOIN film AS T3 ON T2.film_id = T3.film_id WHERE T1.first_name = 'DAN' AND T1.last_name = 'HARRIS' AND T3.length = 77 AND T3.replacement_cost = '9.99' | CREATE TABLE staff
(
last_name TEXT not null, -- Example Values: `Hillyer`, `Stephens` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
email TEXT, -- Example Values: `Mike.Hillyer@sakilastaff.com`, `Jon.Stephens@sakilastaff.com` | Value Statics: Total count 2 - Distinct count 2 - Null count 0
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.