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