output stringlengths 27 479 | instruction stringlengths 407 1.39k |
|---|---|
SELECT "result" FROM "schedule" WHERE "date"='november 6, 1988'; |
## Task
Generate a SQL query to answer the following question:
`What was the result of the game on November 6, 1988?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attend... |
SELECT "date" FROM "schedule" WHERE "opponent"='los angeles rams'; |
## Task
Generate a SQL query to answer the following question:
`What was the date of the game against the Los Angeles Rams?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
... |
SELECT "total" FROM "results_pool_d" WHERE "set_2"='25-19' AND "date"='jun 17'; |
## Task
Generate a SQL query to answer the following question:
`What is the total with a 25-19 set 2 on Jun 17?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "results_pool_d" (
"date" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" t... |
SELECT "set_4" FROM "results_pool_d" WHERE "score"='2-3'; |
## Task
Generate a SQL query to answer the following question:
`What is the set 4 with a 2-3 score?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "results_pool_d" (
"date" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"set_... |
SELECT "set_5" FROM "results_pool_d" WHERE "set_1"='19-25'; |
## Task
Generate a SQL query to answer the following question:
`What is the set 5 with a 19-25 set 1?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "results_pool_d" (
"date" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"se... |
SELECT "set_1" FROM "results_pool_d" WHERE "set_4"='28-30'; |
## Task
Generate a SQL query to answer the following question:
`What is the set 1 with a 28-30 set 4?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "results_pool_d" (
"date" text,
"score" text,
"set_1" text,
"set_2" text,
"set_3" text,
"se... |
SELECT "result" FROM "giovanni_hern_ndez_international_goals" WHERE "goal"<2; |
## Task
Generate a SQL query to answer the following question:
`What is the result when there's less than 2 goals?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "giovanni_hern_ndez_international_goals" (
"goal" real,
"date" text,
"venue" text,
... |
SELECT "score" FROM "giovanni_hern_ndez_international_goals" WHERE "goal"<2; |
## Task
Generate a SQL query to answer the following question:
`What is the score when there are less than 2 goals?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "giovanni_hern_ndez_international_goals" (
"goal" real,
"date" text,
"venue" text,
... |
SELECT "position" FROM "list_of_united_states_national_ice_hocke" WHERE "2009_2010_team"='los angeles kings' AND "birthdate"='may 13, 1983'; |
## Task
Generate a SQL query to answer the following question:
`What is the position of the player born on May 13, 1983 who played for the Los Angeles Kings during 2009-2010?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list_of_united_states_nationa... |
SELECT "birthplace" FROM "list_of_united_states_national_ice_hocke" WHERE "2009_2010_team"='calgary flames' AND "jersey_num">23; |
## Task
Generate a SQL query to answer the following question:
`What is the birthplace of the player who played for the Calgary Flames between 2009-2010 and wears a jersey number greater than 23?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list_of_... |
SELECT AVG("points") FROM "campeonato_paulista" WHERE "position"<8 AND "played"=16 AND "lost">9; |
## Task
Generate a SQL query to answer the following question:
`How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "campeonato_paulista" (
"position" real,
"t... |
SELECT MAX("total") FROM "victories_by_nationality" WHERE "women_s_wheelchair"=2 AND "men_s_wheelchair"<1 AND "women_s_race">0; |
## Task
Generate a SQL query to answer the following question:
`What's the highest Total when Women's Wheelchair was 2, Men's Wheelchair was smaller than 1, and Women's race was larger than 0?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "victories_b... |
SELECT AVG("men_s_wheelchair") FROM "victories_by_nationality" WHERE "women_s_wheelchair"<0; |
## Task
Generate a SQL query to answer the following question:
`What's the average men's wheelchair when women's wheelchair is less than 0?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "victories_by_nationality" (
"country" text,
"men_s_race" rea... |
SELECT AVG("total") FROM "victories_by_nationality" WHERE "men_s_race">0 AND "country"='mexico' AND "women_s_race"<0; |
## Task
Generate a SQL query to answer the following question:
`When the Country is Mexico, Women's race is less than 0, and Men's race is more than 0, what's the average total?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "victories_by_nationality" ... |
SELECT SUM("men_s_race") FROM "victories_by_nationality" WHERE "women_s_race"<1 AND "women_s_wheelchair"=1 AND "total">3 AND "men_s_wheelchair">3; |
## Task
Generate a SQL query to answer the following question:
`What's the sum of Men's race when Women's race is less than 1, Women's Wheelchair is 1, Men's wheelchair is more than 3 and the Total is more than 3?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREA... |
SELECT AVG("women_s_wheelchair") FROM "victories_by_nationality" WHERE "men_s_race"=0 AND "women_s_race"=1 AND "men_s_wheelchair"<2; |
## Task
Generate a SQL query to answer the following question:
`What's the average Women's Wheelchair when Men's race is 0, Women's race is 1, and Men's wheelchair is less than 2?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "victories_by_nationality... |
SELECT MIN("attendance") FROM "schedule" WHERE "opponent"='maryland'; |
## Task
Generate a SQL query to answer the following question:
`What was the lowest Attendance when the Opponent was Maryland?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"date" text,
"opponent" text,
"location" text,
"result" t... |
SELECT "network" FROM "international_versions" WHERE "local_name"='moj tata je bolji od tvog tate'; |
## Task
Generate a SQL query to answer the following question:
`Which Network has a Local name of moj tata je bolji od tvog tate?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "international_versions" (
"country" text,
"local_name" text,
"host" ... |
SELECT "country" FROM "international_versions" WHERE "network"='channel 1'; |
## Task
Generate a SQL query to answer the following question:
`Which Country has a Network of channel 1?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "international_versions" (
"country" text,
"local_name" text,
"host" text,
"network" text,
... |
SELECT "country" FROM "international_versions" WHERE "network"='nelonen'; |
## Task
Generate a SQL query to answer the following question:
`Which Country has a Network of nelonen?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "international_versions" (
"country" text,
"local_name" text,
"host" text,
"network" text,
... |
SELECT "local_name" FROM "international_versions" WHERE "network"='nova tv'; |
## Task
Generate a SQL query to answer the following question:
`Which Local name has a Network of nova tv?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "international_versions" (
"country" text,
"local_name" text,
"host" text,
"network" text,... |
SELECT "local_name" FROM "international_versions" WHERE "network"='tvn'; |
## Task
Generate a SQL query to answer the following question:
`Which Local name has a Network of tvn?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "international_versions" (
"country" text,
"local_name" text,
"host" text,
"network" text,
"... |
SELECT "country" FROM "international_versions" WHERE "host"='miguel esteban'; |
## Task
Generate a SQL query to answer the following question:
`Which Country has a Host of miguel esteban?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "international_versions" (
"country" text,
"local_name" text,
"host" text,
"network" text... |
SELECT MIN("chapter") FROM "text" WHERE "pinyin"='dehua' AND "articles"<16; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the lowest Chapter that has the Pinyin of dehua, and the Articles smaller than 16?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "text" (
"chapter" real,
"chinese" tex... |
SELECT AVG("chapter") FROM "text" WHERE "articles"<15; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the average Chapter that has Articles smaller than 15?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "text" (
"chapter" real,
"chinese" text,
"pinyin" text,
"engli... |
SELECT "chinese" FROM "text" WHERE "chapter">4 AND "english_translation"='food transformations'; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the Chinese that has the Chapter larger than 4, and the English Translation of food transformations?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "text" (
"chapter" rea... |
SELECT "english_translation" FROM "text" WHERE "articles"=24; |
## Task
Generate a SQL query to answer the following question:
`Can you tell me the English Translation that has the Articles of 24?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "text" (
"chapter" real,
"chinese" text,
"pinyin" text,
"english... |
SELECT "icao" FROM "destinations" WHERE "iata"='sin'; |
## Task
Generate a SQL query to answer the following question:
`What shows for ICAO when the IATA is sin?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "destinations" (
"city" text,
"country" text,
"iata" text,
"icao" text,
"airport" text
);... |
SELECT "iata" FROM "destinations" WHERE "country"='france' AND "icao"='lfrn'; |
## Task
Generate a SQL query to answer the following question:
`What is the IATA when France was the country, and the ICAO was lfrn?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "destinations" (
"city" text,
"country" text,
"iata" text,
"icao... |
SELECT "airport" FROM "destinations" WHERE "country"='france' AND "city"='montpellier'; |
## Task
Generate a SQL query to answer the following question:
`What is the Airport when France was the country, and Montpellier was the city?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "destinations" (
"city" text,
"country" text,
"iata" tex... |
SELECT "icao" FROM "destinations" WHERE "airport"='luqa airport'; |
## Task
Generate a SQL query to answer the following question:
`What is the ICAO for luqa airport?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "destinations" (
"city" text,
"country" text,
"iata" text,
"icao" text,
"airport" text
);
### SQ... |
SELECT "airport" FROM "destinations" WHERE "city"='new york'; |
## Task
Generate a SQL query to answer the following question:
`What is the Airport for New York City?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "destinations" (
"city" text,
"country" text,
"iata" text,
"icao" text,
"airport" text
);
##... |
SELECT "country" FROM "destinations" WHERE "iata"='osl'; |
## Task
Generate a SQL query to answer the following question:
`What is the Country when the IATA was osl?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "destinations" (
"city" text,
"country" text,
"iata" text,
"icao" text,
"airport" text
)... |
SELECT "division" FROM "year_by_year" WHERE "year">1996 AND "regular_season"='4th' AND "playoffs"='final'; |
## Task
Generate a SQL query to answer the following question:
`Which Division has a Year larger than 1996,a Regular Season of 4th, and a Playoffs of final?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "year_by_year" (
"year" real,
"division" tex... |
SELECT "league" FROM "year_by_year" WHERE "open_cup"='1st round' AND "year"=2009; |
## Task
Generate a SQL query to answer the following question:
`Which League that has a Open Cup of 1st round, and a Year of 2009?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "year_by_year" (
"year" real,
"division" text,
"league" text,
"reg... |
SELECT "playoffs" FROM "year_by_year" WHERE "division"='2' AND "regular_season"='4th, southeast'; |
## Task
Generate a SQL query to answer the following question:
`Which Playoffs has a Division of 2 and a Regular Season of 4th, southeast?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "year_by_year" (
"year" real,
"division" text,
"league" text... |
SELECT MIN("points") FROM "2007_results" WHERE "points_for">438 AND "points_against">943; |
## Task
Generate a SQL query to answer the following question:
`What are the least amount of points that have points for greater than 438, and points against greater than 943?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2007_results" (
"club" tex... |
SELECT MAX("loses") FROM "2007_results" WHERE "points_against"<956 AND "club"='high park demons' AND "points"<16; |
## Task
Generate a SQL query to answer the following question:
`What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2007_results" (
... |
SELECT "club" FROM "2007_results" WHERE "loses">1 AND "wins"=4 AND "points_against"<894; |
## Task
Generate a SQL query to answer the following question:
`What club has losses greater than 1, 4 for the wins, with points against less than 894?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2007_results" (
"club" text,
"wins" real,
"los... |
SELECT COUNT("loses") FROM "2007_results" WHERE "points_against">592 AND "club"='high park demons' AND "points_for">631; |
## Task
Generate a SQL query to answer the following question:
`How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2007_results" (
... |
SELECT "loses" FROM "2007_results" WHERE "points_for"<1175 AND "wins">2 AND "points_against">894 AND "points"=24; |
## Task
Generate a SQL query to answer the following question:
`What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "2007_results" (
"c... |
SELECT MIN("track") FROM "side_two" WHERE "writer_s"='dennis linde' AND "time"='2:50'; |
## Task
Generate a SQL query to answer the following question:
`What's the smallest track written by dennis linde that's 2:50 minutes long`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "side_two" (
"track" real,
"recorded" text,
"catalogue" text... |
SELECT "time" FROM "side_two" WHERE "song_title"='burning love'; |
## Task
Generate a SQL query to answer the following question:
`How long is the song titled burning love?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "side_two" (
"track" real,
"recorded" text,
"catalogue" text,
"release_date" text,
"song_... |
SELECT "release_date" FROM "side_two" WHERE "song_title"='if you talk in your sleep'; |
## Task
Generate a SQL query to answer the following question:
`When was the song titled if you talk in your sleep released?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "side_two" (
"track" real,
"recorded" text,
"catalogue" text,
"release_d... |
SELECT "city" FROM "televised_era" WHERE "state"='california' AND "year">2009; |
## Task
Generate a SQL query to answer the following question:
`What is the city that is located in California when the year is greater than 2009?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "televised_era" (
"year" real,
"venue" text,
"city" ... |
SELECT "host" FROM "televised_era" WHERE "year">1989 AND "state"='california' AND "venue"='staples center'; |
## Task
Generate a SQL query to answer the following question:
`What is the host in a year greater than 1989 and when the venue is the Staples Center located in California?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "televised_era" (
"year" real,... |
SELECT "venue" FROM "televised_era" WHERE "state"='california' AND "year"=2011; |
## Task
Generate a SQL query to answer the following question:
`What is the venue in 2011, when the state is California?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "televised_era" (
"year" real,
"venue" text,
"city" text,
"state" text,
"h... |
SELECT "wards_branches_in_arkansas" FROM "arkansas_stakes" WHERE "stake"='fort smith arkansas'; |
## Task
Generate a SQL query to answer the following question:
`What is the wards/branches of the fort smith Arkansas stake?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "arkansas_stakes" (
"stake" text,
"organized" text,
"wards_branches_in_ark... |
SELECT "stake" FROM "arkansas_stakes" WHERE "occupation"='realtor for american equity realty'; |
## Task
Generate a SQL query to answer the following question:
`What stake has realtor for American equity realty as their occupation?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "arkansas_stakes" (
"stake" text,
"organized" text,
"wards_branc... |
SELECT "organized" FROM "arkansas_stakes" WHERE "occupation"='senior buyer for wal-mart'; |
## Task
Generate a SQL query to answer the following question:
`What is the organized date of the stake with an occupation of senior buyer for Wal-mart?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "arkansas_stakes" (
"stake" text,
"organized" te... |
SELECT SUM("wards_branches_in_arkansas") FROM "arkansas_stakes" WHERE "stake"='north little rock arkansas'; |
## Task
Generate a SQL query to answer the following question:
`What is the sum of the wards/branches in Arkansas of the North Little Rock Arkansas stake?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "arkansas_stakes" (
"stake" text,
"organized" ... |
SELECT "stake" FROM "arkansas_stakes" WHERE "wards_branches_in_arkansas"=16; |
## Task
Generate a SQL query to answer the following question:
`What stake has 16 wards/branches in Arkansas?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "arkansas_stakes" (
"stake" text,
"organized" text,
"wards_branches_in_arkansas" real,
... |
SELECT "stable" FROM "list" WHERE "current_rank"='f1 jūryō 14 west'; |
## Task
Generate a SQL query to answer the following question:
`What is Stable, when Current Rank is F1 Jūryō 14 West?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list" (
"ring_name" text,
"current_rank" text,
"debut" text,
"stable" text,
... |
SELECT "ring_name" FROM "list" WHERE "current_rank"='e0 maegashira 9 west'; |
## Task
Generate a SQL query to answer the following question:
`What is Ring Name, when Current Rank is E0 Maegashira 9 West?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list" (
"ring_name" text,
"current_rank" text,
"debut" text,
"stable" ... |
SELECT "birthplace" FROM "list" WHERE "ring_name"='masunoyama tomoharu'; |
## Task
Generate a SQL query to answer the following question:
`What is Birthplace, when Ring Name is Masunoyama Tomoharu?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list" (
"ring_name" text,
"current_rank" text,
"debut" text,
"stable" tex... |
SELECT "current_rank" FROM "list" WHERE "ring_name"='tamaasuka daisuke'; |
## Task
Generate a SQL query to answer the following question:
`What is Current Rank, when Ring Name is Tamaasuka Daisuke?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list" (
"ring_name" text,
"current_rank" text,
"debut" text,
"stable" tex... |
SELECT "ring_name" FROM "list" WHERE "stable"='kasugano' AND "birthplace"='z mtskheta , georgia'; |
## Task
Generate a SQL query to answer the following question:
`What is Ring Name, when Stable is Kasugano, and when Birthplace is Z Mtskheta , Georgia?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list" (
"ring_name" text,
"current_rank" text,
... |
SELECT "current_rank" FROM "list" WHERE "ring_name"='kimurayama mamoru'; |
## Task
Generate a SQL query to answer the following question:
`What is Current Rank, when Ring Name is Kimurayama Mamoru?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "list" (
"ring_name" text,
"current_rank" text,
"debut" text,
"stable" tex... |
SELECT "interview_subject" FROM "1984" WHERE "pictorials"='christie brinkley'; |
## Task
Generate a SQL query to answer the following question:
`Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "1984" (
"date" text,
"cover_model" text,
"c... |
SELECT "pictorials" FROM "1984" WHERE "interview_subject"='jesse jackson'; |
## Task
Generate a SQL query to answer the following question:
`In the issue in which the Interview subject was Jesse Jackson, who were there Pictorials of?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "1984" (
"date" text,
"cover_model" text,
... |
SELECT "centerfold_model" FROM "1984" WHERE "interview_subject"='paul simon'; |
## Task
Generate a SQL query to answer the following question:
`Who was the Centerfold model in the issue in which the Interview subject was Paul Simon?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "1984" (
"date" text,
"cover_model" text,
"cen... |
SELECT "centerfold_model" FROM "1984" WHERE "interview_subject"='josé napoleón duarte'; |
## Task
Generate a SQL query to answer the following question:
`Who was the Centerfold model in the issue in which the Interview subject was José Napoleón Duarte?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "1984" (
"date" text,
"cover_model" te... |
SELECT "cover_model" FROM "1984" WHERE "interview_subject"='joan collins'; |
## Task
Generate a SQL query to answer the following question:
`Who was the Cover model in the issue in which the Interview subject was Joan Collins?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "1984" (
"date" text,
"cover_model" text,
"center... |
SELECT "date" FROM "race_calendar" WHERE "round">9; |
## Task
Generate a SQL query to answer the following question:
`Which date has a round more than 9?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "race_calendar" (
"round" real,
"location" text,
"circuit" text,
"date" text,
"winning_driver" ... |
SELECT "winning_driver" FROM "race_calendar" WHERE "winning_team"='tpc team qi-meritus' AND "round">8; |
## Task
Generate a SQL query to answer the following question:
`Who is the driver that one for the winning tpc team qi-meritus that has a round more than 8?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "race_calendar" (
"round" real,
"location" t... |
SELECT "time" FROM "track_records" WHERE "record"='start' AND "date"='12 december 2009'; |
## Task
Generate a SQL query to answer the following question:
`What is the time of 12 December 2009 with record start?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "track_records" (
"sport" text,
"record" text,
"athlete_s" text,
"nation" tex... |
SELECT "nation" FROM "track_records" WHERE "athlete_s"='elizabeth yarnold'; |
## Task
Generate a SQL query to answer the following question:
`What is Elizabeth Yarnold's nation?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "track_records" (
"sport" text,
"record" text,
"athlete_s" text,
"nation" text,
"date" text,
... |
SELECT "location" FROM "newly_named_pterosaurs" WHERE "unit"='jiufotang formation'; |
## Task
Generate a SQL query to answer the following question:
`What country is the Jiufotang Formation located in?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "newly_named_pterosaurs" (
"name" text,
"status" text,
"authors" text,
"unit" tex... |
SELECT "authors" FROM "newly_named_pterosaurs" WHERE "location"='mexico'; |
## Task
Generate a SQL query to answer the following question:
`Which author is located in Mexico?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "newly_named_pterosaurs" (
"name" text,
"status" text,
"authors" text,
"unit" text,
"location" t... |
SELECT "location" FROM "newly_named_pterosaurs" WHERE "authors"='wang li duan cheng'; |
## Task
Generate a SQL query to answer the following question:
`Where is wang li duan cheng located?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "newly_named_pterosaurs" (
"name" text,
"status" text,
"authors" text,
"unit" text,
"location"... |
SELECT "status" FROM "newly_named_pterosaurs" WHERE "name"='cathayopterus'; |
## Task
Generate a SQL query to answer the following question:
`What is the status of the pterosaur named Cathayopterus?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "newly_named_pterosaurs" (
"name" text,
"status" text,
"authors" text,
"unit... |
SELECT "years_in_orlando" FROM "b" WHERE "school_club_team"='texas tech'; |
## Task
Generate a SQL query to answer the following question:
`Which Years in Orlando has a School/Club Team of texas tech?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "b" (
"player" text,
"nationality" text,
"position" text,
"years_in_orla... |
SELECT "nationality" FROM "b" WHERE "player"='keith bogans' AND "years_in_orlando"='2006–2009'; |
## Task
Generate a SQL query to answer the following question:
`Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "b" (
"player" text,
"nationality" text,
"position... |
SELECT "nationality" FROM "b" WHERE "player"='pat burke'; |
## Task
Generate a SQL query to answer the following question:
`What is Pat Burke's Nationality?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "b" (
"player" text,
"nationality" text,
"position" text,
"years_in_orlando" text,
"school_club_te... |
SELECT "school_club_team" FROM "b" WHERE "player"='michael bradley'; |
## Task
Generate a SQL query to answer the following question:
`Which School/Club Team has a Player of michael bradley?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "b" (
"player" text,
"nationality" text,
"position" text,
"years_in_orlando" ... |
SELECT "years_in_orlando" FROM "b" WHERE "school_club_team"='kentucky'; |
## Task
Generate a SQL query to answer the following question:
`Which Years in Orlando has a School/Club Team of kentucky?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "b" (
"player" text,
"nationality" text,
"position" text,
"years_in_orland... |
SELECT "school_club_team" FROM "b" WHERE "player"='jud buechler'; |
## Task
Generate a SQL query to answer the following question:
`Which School/Club Team has a Player of jud buechler?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "b" (
"player" text,
"nationality" text,
"position" text,
"years_in_orlando" tex... |
SELECT "pos" FROM "24_hours_of_le_mans_results" WHERE "year"<1999; |
## Task
Generate a SQL query to answer the following question:
`What is the position for years under 1999?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,... |
SELECT AVG("year") FROM "24_hours_of_le_mans_results" WHERE "team"='team oreca'; |
## Task
Generate a SQL query to answer the following question:
`What is the average year for Team Oreca?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
... |
SELECT "team" FROM "24_hours_of_le_mans_results" WHERE "class_pos"='5th'; |
## Task
Generate a SQL query to answer the following question:
`Which team had a class position of 5th?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
... |
SELECT "class" FROM "24_hours_of_le_mans_results" WHERE "year"<2010 AND "class_pos"='5th'; |
## Task
Generate a SQL query to answer the following question:
`What is the class having a year under 2010 and a class position of 5th?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_d... |
SELECT MIN("position") FROM "campeonato_paulista" WHERE "against">17 AND "team"='juventus' AND "drawn"<4; |
## Task
Generate a SQL query to answer the following question:
`Which Position has an Against larger than 17, and a Team of juventus, and a Drawn smaller than 4?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "campeonato_paulista" (
"position" real,
... |
SELECT COUNT("lost") FROM "campeonato_paulista" WHERE "against"=49 AND "played"<20; |
## Task
Generate a SQL query to answer the following question:
`Which Lost has an Against of 49 and a Played smaller than 20?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "campeonato_paulista" (
"position" real,
"team" text,
"points" real,
"p... |
SELECT "championship" FROM "championships" WHERE "previous_champion_s"='defeated justin corino in tournament final'; |
## Task
Generate a SQL query to answer the following question:
`In which championship had a previous champion of "defeated Justin Corino in tournament final"?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "championships" (
"championship" text,
"cu... |
SELECT "location" FROM "championships" WHERE "previous_champion_s"='mike webb and nick fahrenheit'; |
## Task
Generate a SQL query to answer the following question:
`Which location had previous champions of Mike Webb and Nick Fahrenheit?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "championships" (
"championship" text,
"current_champion_s" text,... |
SELECT "previous_champion_s" FROM "championships" WHERE "date_won"='may 1, 2010'; |
## Task
Generate a SQL query to answer the following question:
`Who were the previous champions from the event won on May 1, 2010?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "championships" (
"championship" text,
"current_champion_s" text,
"p... |
SELECT "current_champion_s" FROM "championships" WHERE "location"='beverly, ma' AND "previous_champion_s"='mike webb and nick fahrenheit'; |
## Task
Generate a SQL query to answer the following question:
`Who is the current champion for the event in Beverly, MA, with previous champions of Mike Webb and Nick Fahrenheit?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "championships" (
"cham... |
SELECT "current_champion_s" FROM "championships" WHERE "championship"='necw heavyweight champion'; |
## Task
Generate a SQL query to answer the following question:
`Who is the current champion in the NECW Heavyweight Championship?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "championships" (
"championship" text,
"current_champion_s" text,
"pr... |
SELECT "location" FROM "championships" WHERE "championship"='iron 8 championship tournament'; |
## Task
Generate a SQL query to answer the following question:
`Which location held the Iron 8 Championship tournament?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "championships" (
"championship" text,
"current_champion_s" text,
"previous_cha... |
SELECT "capacity" FROM "electrostatic_electrolytic_and_electroch" WHERE "volts"='3500v'; |
## Task
Generate a SQL query to answer the following question:
`What is the capacity of 3500v volts?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "electrostatic_electrolytic_and_electroch" (
"capacity" text,
"volts" text,
"temp" text,
"energy... |
SELECT "volts" FROM "electrostatic_electrolytic_and_electroch" WHERE "energy_to_weight_ratio"='54 kj/kg to 2.0v'; |
## Task
Generate a SQL query to answer the following question:
`How many volts has an energy-to-weight ratio of 54 kj/kg to 2.0v?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "electrostatic_electrolytic_and_electroch" (
"capacity" text,
"volts" t... |
SELECT "capacity" FROM "electrostatic_electrolytic_and_electroch" WHERE "volts"='2.7v' AND "power_to_weight_ratio"='5.44 w/kg c/1 (1.875a)'; |
## Task
Generate a SQL query to answer the following question:
`What is the capacity with 2.7v volts and a power-to-weight ratio of 5.44 w/kg c/1 (1.875a)?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "electrostatic_electrolytic_and_electroch" (
"c... |
SELECT "season" FROM "final_league_positions_since_1992" WHERE "pos"=13 AND "head_coach"='protasov lyutyi talalayev balakhnin baidachny'; |
## Task
Generate a SQL query to answer the following question:
`Which season led to a position of 13, and a head coach of Protasov Lyutyi Talalayev Balakhnin Baidachny?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "final_league_positions_since_1992" ... |
SELECT MAX("week") FROM "schedule" WHERE "attendance"='58,701'; |
## Task
Generate a SQL query to answer the following question:
`Which week had the highest attendance with 58,701?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendan... |
SELECT SUM("week") FROM "schedule" WHERE "opponent"='san diego chargers'; |
## Task
Generate a SQL query to answer the following question:
`What was the score of the game against the San Diego Chargers?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,... |
SELECT "date" FROM "schedule" WHERE "week"<4 AND "attendance"='44,851'; |
## Task
Generate a SQL query to answer the following question:
`When was the attendance less than 44,851 during the first 4 weeks of the season?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text... |
SELECT "result" FROM "schedule" WHERE "week"=13; |
## Task
Generate a SQL query to answer the following question:
`On week 13 what was the score of the game?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text... |
SELECT SUM("week") FROM "schedule" WHERE "attendance"='58,025'; |
## Task
Generate a SQL query to answer the following question:
`What week had 58,025 in attendance?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
);
###... |
SELECT "date" FROM "schedule" WHERE "attendance"='58,025'; |
## Task
Generate a SQL query to answer the following question:
`When was the game that had 58,025 people in attendance?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"att... |
SELECT MIN("drawn") FROM "campeonato_paulista" WHERE "played"<11 AND "points">7 AND "team"='mackenzie'; |
## Task
Generate a SQL query to answer the following question:
`What is the lowest number of Drawn games for Team Mackenzie where the Played is less and 11 and the Points are greater than 7?`
### Database Schema
This query will run on a database whose schema is represented in this string:
CREATE TABLE "campeonato_pa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.