question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
Name the to par for score of 74-74-74-71=293 | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" text
); | SELECT "to_par" FROM "final_leaderboard" WHERE "score"='74-74-74-71=293'; | 2-12642124-1 |
Name the player for 68-68-75-74=285 | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" text
); | SELECT "player" FROM "final_leaderboard" WHERE "score"='68-68-75-74=285'; | 2-12642124-1 |
Name the to par for gene kunes | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" text
); | SELECT "to_par" FROM "final_leaderboard" WHERE "player"='gene kunes'; | 2-12642124-1 |
What is the average Points for a year before 1955? | CREATE TABLE "complete_formula_one_results" (
"year" real,
"team" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT AVG("points") FROM "complete_formula_one_results" WHERE "year"<1955; | 2-1228351-1 |
What is the total year with a Team of scuderia ferrari, an Engine of ferrari 106 2.5 l4, and more than 12 points? | CREATE TABLE "complete_formula_one_results" (
"year" real,
"team" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT SUM("year") FROM "complete_formula_one_results" WHERE "team"='scuderia ferrari' AND "engine"='ferrari 106 2.5 l4' AND "points">12; | 2-1228351-1 |
How many wins has a podiums greater than 1 and 9 as the races with a season after 1984? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"podiums" real
); | SELECT COUNT("wins") FROM "career_summary" WHERE "podiums">1 AND "races"=9 AND "season">1984; | 2-1235947-1 |
What is the highest Podiums with 0 as wins, and a season later than 1985? | CREATE TABLE "career_summary" (
"season" real,
"series" text,
"team" text,
"races" real,
"wins" real,
"podiums" real
); | SELECT MAX("podiums") FROM "career_summary" WHERE "wins"=0 AND "season">1985; | 2-1235947-1 |
What was the Top Gear budget in March 2013? | CREATE TABLE "specials" (
"month_year" text,
"episode" text,
"title" text,
"hammond_s_vehicle" text,
"clarkson_s_vehicle" text,
"may_s_vehicle" text,
"back_up" text,
"budget" text
); | SELECT "budget" FROM "specials" WHERE "month_year"='march 2013'; | 2-13189034-1 |
Which episode of Top Gear had a budget of £7,000? | CREATE TABLE "specials" (
"month_year" text,
"episode" text,
"title" text,
"hammond_s_vehicle" text,
"clarkson_s_vehicle" text,
"may_s_vehicle" text,
"back_up" text,
"budget" text
); | SELECT "episode" FROM "specials" WHERE "budget"='£7,000'; | 2-13189034-1 |
Which month and year held the Bolivia Special title? | CREATE TABLE "specials" (
"month_year" text,
"episode" text,
"title" text,
"hammond_s_vehicle" text,
"clarkson_s_vehicle" text,
"may_s_vehicle" text,
"back_up" text,
"budget" text
); | SELECT "month_year" FROM "specials" WHERE "title"='bolivia special'; | 2-13189034-1 |
When Hammond had the 1974 Toyota Land Cruiser, what was May's vehicle? | CREATE TABLE "specials" (
"month_year" text,
"episode" text,
"title" text,
"hammond_s_vehicle" text,
"clarkson_s_vehicle" text,
"may_s_vehicle" text,
"back_up" text,
"budget" text
); | SELECT "may_s_vehicle" FROM "specials" WHERE "hammond_s_vehicle"='1974 toyota land cruiser'; | 2-13189034-1 |
Which team has a right wing position listed? | CREATE TABLE "round_five" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "college_junior_club_team" FROM "round_five" WHERE "position"='right wing'; | 2-1213511-5 |
What position is the player that is from Canada and on the Boston Bruins | CREATE TABLE "round_five" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "position" FROM "round_five" WHERE "nationality"='canada' AND "nhl_team"='boston bruins'; | 2-1213511-5 |
What is the position of the player on the Los Angeles Kings? | CREATE TABLE "round_five" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "position" FROM "round_five" WHERE "nhl_team"='los angeles kings'; | 2-1213511-5 |
Which team has the # 64 pick? | CREATE TABLE "round_five" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "college_junior_club_team" FROM "round_five" WHERE "pick_num"='64'; | 2-1213511-5 |
What nationality is the #63 pick? | CREATE TABLE "round_five" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "nationality" FROM "round_five" WHERE "pick_num"='63'; | 2-1213511-5 |
What is the name of the player that is pick #69? | CREATE TABLE "round_five" (
"pick_num" text,
"player" text,
"position" text,
"nationality" text,
"nhl_team" text,
"college_junior_club_team" text
); | SELECT "player" FROM "round_five" WHERE "pick_num"='69'; | 2-1213511-5 |
Which tyres received 8 points? | CREATE TABLE "complete_formula_one_results" (
"year" real,
"chassis" text,
"engine_s" text,
"tyres" text,
"points" real
); | SELECT "tyres" FROM "complete_formula_one_results" WHERE "points"=8; | 2-1226647-2 |
How many points were awarded to the Ford DFZ 3.5 V8? | CREATE TABLE "complete_formula_one_results" (
"year" real,
"chassis" text,
"engine_s" text,
"tyres" text,
"points" real
); | SELECT SUM("points") FROM "complete_formula_one_results" WHERE "engine_s"='ford dfz 3.5 v8'; | 2-1226647-2 |
Which engine received 0 points in 1988? | CREATE TABLE "complete_formula_one_results" (
"year" real,
"chassis" text,
"engine_s" text,
"tyres" text,
"points" real
); | SELECT "engine_s" FROM "complete_formula_one_results" WHERE "points"=0 AND "year"=1988; | 2-1226647-2 |
What's the Issue Date for an Eric Prydz song with a no available Download information? | CREATE TABLE "singles_chart" (
"week" real,
"issue_date" text,
"artist" text,
"single" text,
"download" text,
"title" text
); | SELECT "issue_date" FROM "singles_chart" WHERE "download"='no available' AND "artist"='eric prydz'; | 2-12375494-1 |
What's the Download information for the song from Week 44? | CREATE TABLE "singles_chart" (
"week" real,
"issue_date" text,
"artist" text,
"single" text,
"download" text,
"title" text
); | SELECT "download" FROM "singles_chart" WHERE "week"=44; | 2-12375494-1 |
What is the title of the July 2 song that is downloaded as Crazy Frog? | CREATE TABLE "singles_chart" (
"week" real,
"issue_date" text,
"artist" text,
"single" text,
"download" text,
"title" text
); | SELECT "title" FROM "singles_chart" WHERE "download"='crazy frog' AND "issue_date"='july 2'; | 2-12375494-1 |
What is the division record for Woodbridge? | CREATE TABLE "2009_regular_season_football_standings" (
"school" text,
"team" text,
"division_record" text,
"overall_record" text,
"season_outcome" text
); | SELECT "division_record" FROM "2009_regular_season_football_standings" WHERE "school"='woodbridge'; | 2-13054553-14 |
Who was the runner-up when Polonia Bydgoszcz won and Mega-Lada Togliatti finished 3rd? | CREATE TABLE "previous_winners" (
"year" text,
"venue" text,
"winners" text,
"runner_up" text,
"3rd_place" text
); | SELECT "runner_up" FROM "previous_winners" WHERE "winners"='polonia bydgoszcz' AND "3rd_place"='mega-lada togliatti'; | 2-12324338-1 |
Who was the runner-up in 2004? | CREATE TABLE "previous_winners" (
"year" text,
"venue" text,
"winners" text,
"runner_up" text,
"3rd_place" text
); | SELECT "runner_up" FROM "previous_winners" WHERE "year"='2004'; | 2-12324338-1 |
Who was the 3rd place team at Pardubice? | CREATE TABLE "previous_winners" (
"year" text,
"venue" text,
"winners" text,
"runner_up" text,
"3rd_place" text
); | SELECT "3rd_place" FROM "previous_winners" WHERE "venue"='pardubice'; | 2-12324338-1 |
Which country has a Euro that equals larger than 1.46611, and an usd equal to 1.76650? | CREATE TABLE "currency" (
"country" text,
"currency" text,
"1_euro" real,
"1_usd" text,
"central_bank" text
); | SELECT "country" FROM "currency" WHERE "1_euro">1.46611 AND "1_usd"='1.76650'; | 2-1222653-11 |
Which Chile central bank has a Euro larger than 297.547? | CREATE TABLE "currency" (
"country" text,
"currency" text,
"1_euro" real,
"1_usd" text,
"central_bank" text
); | SELECT "central_bank" FROM "currency" WHERE "1_euro">297.547 AND "country"='chile'; | 2-1222653-11 |
Name the To par for denmark | CREATE TABLE "third_round_saturday" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "to_par" FROM "third_round_saturday" WHERE "country"='denmark'; | 2-12512153-6 |
Nam ethe place for pat perez | CREATE TABLE "third_round_saturday" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "place" FROM "third_round_saturday" WHERE "player"='pat perez'; | 2-12512153-6 |
Name the country vijay singh is from | CREATE TABLE "third_round_saturday" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "third_round_saturday" WHERE "player"='vijay singh'; | 2-12512153-6 |
Which city has frequency under 106.5MHz and a callsign of w218ck? | CREATE TABLE "translators" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"class" text,
"fcc_info" text
); | SELECT "city_of_license" FROM "translators" WHERE "frequency_m_hz"<106.5 AND "call_sign"='w218ck'; | 2-12839896-1 |
Which class has a city of Richmond, Virginia? | CREATE TABLE "translators" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"class" text,
"fcc_info" text
); | SELECT "class" FROM "translators" WHERE "city_of_license"='richmond, virginia'; | 2-12839896-1 |
What is the ERP W for the frequency of 91.3MHz? | CREATE TABLE "translators" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"class" text,
"fcc_info" text
); | SELECT "erp_w" FROM "translators" WHERE "frequency_m_hz"=91.3; | 2-12839896-1 |
Which call sign has a frequency greater than 98.5MHz and ERP W under 155? | CREATE TABLE "translators" (
"call_sign" text,
"frequency_m_hz" real,
"city_of_license" text,
"erp_w" real,
"class" text,
"fcc_info" text
); | SELECT "call_sign" FROM "translators" WHERE "frequency_m_hz">98.5 AND "erp_w"<155; | 2-12839896-1 |
Which tracks have a length of 18:36? | CREATE TABLE "disc_list" (
"disc" text,
"title" text,
"type" text,
"length" text,
"tracks" real
); | SELECT MIN("tracks") FROM "disc_list" WHERE "length"='18:36'; | 2-1224468-1 |
What is the length of disc 67? | CREATE TABLE "disc_list" (
"disc" text,
"title" text,
"type" text,
"length" text,
"tracks" real
); | SELECT "length" FROM "disc_list" WHERE "disc"='67'; | 2-1224468-1 |
What points larger than 1950 has a maserati straight-6 engine? | CREATE TABLE "complete_formula_one_world_championship_" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "points" FROM "complete_formula_one_world_championship_" WHERE "year">1950 AND "engine"='maserati straight-6'; | 2-1228353-1 |
What is the chassis for a 1952 officine alfieri maserati with an entrant? | CREATE TABLE "complete_formula_one_world_championship_" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "chassis" FROM "complete_formula_one_world_championship_" WHERE "entrant"='officine alfieri maserati' AND "year"=1952; | 2-1228353-1 |
What type of engine does a 1951 alfa romeo 159m chasis have? | CREATE TABLE "complete_formula_one_world_championship_" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "engine" FROM "complete_formula_one_world_championship_" WHERE "year"=1951 AND "chassis"='alfa romeo 159m'; | 2-1228353-1 |
What Entrant has a 1952 maserati straight-6 engine? | CREATE TABLE "complete_formula_one_world_championship_" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "entrant" FROM "complete_formula_one_world_championship_" WHERE "engine"='maserati straight-6' AND "year"=1952; | 2-1228353-1 |
What Entrant older than 1950 has points smaller than 7? | CREATE TABLE "complete_formula_one_world_championship_" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "entrant" FROM "complete_formula_one_world_championship_" WHERE "year">1950 AND "points"<7; | 2-1228353-1 |
What is the total points that an 1951 Entrant alfa romeo spa have? | CREATE TABLE "complete_formula_one_world_championship_" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT SUM("points") FROM "complete_formula_one_world_championship_" WHERE "entrant"='alfa romeo spa' AND "year"<1951; | 2-1228353-1 |
Who is the co-driver in 1999 with more than 32 laps? | CREATE TABLE "bathurst_1000_results" (
"year" real,
"number" real,
"team" text,
"co_driver" text,
"position" text,
"laps" real
); | SELECT "co_driver" FROM "bathurst_1000_results" WHERE "laps">32 AND "year"=1999; | 2-13193273-2 |
Name the winning constructor for when the fastest lap was mark webber at the malaysian grand prix | CREATE TABLE "drivers_standings" (
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "winning_constructor" FROM "drivers_standings" WHERE "fastest_lap"='mark webber' AND "grand_prix"='malaysian grand prix'; | 2-12161822-5 |
Name the winning constructor for abu dhabi grand prix | CREATE TABLE "drivers_standings" (
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "winning_constructor" FROM "drivers_standings" WHERE "grand_prix"='abu dhabi grand prix'; | 2-12161822-5 |
Name the pole position for belgian grand prix | CREATE TABLE "drivers_standings" (
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "pole_position" FROM "drivers_standings" WHERE "grand_prix"='belgian grand prix'; | 2-12161822-5 |
Name the pole positon for korean grand prix | CREATE TABLE "drivers_standings" (
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "pole_position" FROM "drivers_standings" WHERE "grand_prix"='korean grand prix'; | 2-12161822-5 |
Name the pole position at the german grand prix | CREATE TABLE "drivers_standings" (
"grand_prix" text,
"pole_position" text,
"fastest_lap" text,
"winning_driver" text,
"winning_constructor" text,
"report" text
); | SELECT "pole_position" FROM "drivers_standings" WHERE "grand_prix"='german grand prix'; | 2-12161822-5 |
What is the code for Latvian Lats? | CREATE TABLE "erm_ii_members" (
"currency" text,
"code" text,
"entry_erm_ii" text,
"central_rate" text,
"official_target_date" text
); | SELECT "code" FROM "erm_ii_members" WHERE "currency"='latvian lats'; | 2-12641034-2 |
Which currency has a central rate of 3.45280? | CREATE TABLE "erm_ii_members" (
"currency" text,
"code" text,
"entry_erm_ii" text,
"central_rate" text,
"official_target_date" text
); | SELECT "currency" FROM "erm_ii_members" WHERE "central_rate"='3.45280'; | 2-12641034-2 |
Which currency has a central rate of 0.702804? | CREATE TABLE "erm_ii_members" (
"currency" text,
"code" text,
"entry_erm_ii" text,
"central_rate" text,
"official_target_date" text
); | SELECT "currency" FROM "erm_ii_members" WHERE "central_rate"='0.702804'; | 2-12641034-2 |
What is the entry ERM II for the Hungarian Forint? | CREATE TABLE "erm_ii_members" (
"currency" text,
"code" text,
"entry_erm_ii" text,
"central_rate" text,
"official_target_date" text
); | SELECT "entry_erm_ii" FROM "erm_ii_members" WHERE "currency"='hungarian forint'; | 2-12641034-2 |
What is the official target date for the Swedish Krona? | CREATE TABLE "erm_ii_members" (
"currency" text,
"code" text,
"entry_erm_ii" text,
"central_rate" text,
"official_target_date" text
); | SELECT "official_target_date" FROM "erm_ii_members" WHERE "currency"='swedish krona'; | 2-12641034-2 |
The EPT German open was won by which listed winner? | CREATE TABLE "european_poker_tour" (
"date" text,
"city" text,
"event" text,
"winner" text,
"prize" text
); | SELECT "winner" FROM "european_poker_tour" WHERE "event"='ept german open'; | 2-1296513-5 |
What event did Will Fry win? | CREATE TABLE "european_poker_tour" (
"date" text,
"city" text,
"event" text,
"winner" text,
"prize" text
); | SELECT "event" FROM "european_poker_tour" WHERE "winner"='will fry'; | 2-1296513-5 |
The EPT German Open took place in what city? | CREATE TABLE "european_poker_tour" (
"date" text,
"city" text,
"event" text,
"winner" text,
"prize" text
); | SELECT "city" FROM "european_poker_tour" WHERE "event"='ept german open'; | 2-1296513-5 |
When did an event take place in the City of Copenhagen? | CREATE TABLE "european_poker_tour" (
"date" text,
"city" text,
"event" text,
"winner" text,
"prize" text
); | SELECT "date" FROM "european_poker_tour" WHERE "city"='copenhagen'; | 2-1296513-5 |
The prize of £1,000,000 was given by an event in what city? | CREATE TABLE "european_poker_tour" (
"date" text,
"city" text,
"event" text,
"winner" text,
"prize" text
); | SELECT "city" FROM "european_poker_tour" WHERE "prize"='£1,000,000'; | 2-1296513-5 |
João Barbosa was the winner of which event? | CREATE TABLE "european_poker_tour" (
"date" text,
"city" text,
"event" text,
"winner" text,
"prize" text
); | SELECT "event" FROM "european_poker_tour" WHERE "winner"='joão barbosa'; | 2-1296513-5 |
What was the Attendance during the Home game where St. Johnstone was the Opponent? | CREATE TABLE "scottish_premier_league" (
"date" text,
"opponent" text,
"venue" text,
"result_celtic_score_first" text,
"attendance" real,
"match_report" text
); | SELECT COUNT("attendance") FROM "scottish_premier_league" WHERE "opponent"='st. johnstone' AND "venue"='home'; | 2-13220230-2 |
Which class has a Class Position of 6th? | CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
"pos" text,
"class_pos" text
); | SELECT "class" FROM "24_hours_of_le_mans_results" WHERE "class_pos"='6th'; | 2-1226460-1 |
Which class has a Year of 1968? | CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
"pos" text,
"class_pos" text
); | SELECT "class" FROM "24_hours_of_le_mans_results" WHERE "year"=1968; | 2-1226460-1 |
Which class has a Team of kouros racing team? | CREATE TABLE "24_hours_of_le_mans_results" (
"year" real,
"team" text,
"co_drivers" text,
"class" text,
"pos" text,
"class_pos" text
); | SELECT "class" FROM "24_hours_of_le_mans_results" WHERE "team"='kouros racing team'; | 2-1226460-1 |
Who is the Winner, when the Loser is the Baltimore Colts, when the Location is Schaefer Stadium, and when the Result is 42-3? | CREATE TABLE "1970s_colts_11_9" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "winner" FROM "1970s_colts_11_9" WHERE "loser"='baltimore colts' AND "location"='schaefer stadium' AND "result"='42-3'; | 2-13342861-3 |
What is the Location, when the Winner is the Baltimore Colts, when the Year is before 1972, and when the Result is 14-6? | CREATE TABLE "1970s_colts_11_9" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "location" FROM "1970s_colts_11_9" WHERE "winner"='baltimore colts' AND "year"<1972 AND "result"='14-6'; | 2-13342861-3 |
What is the Date, when the Year is after 1978, and when the Location is Memorial Stadium (Baltimore)? | CREATE TABLE "1970s_colts_11_9" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "date" FROM "1970s_colts_11_9" WHERE "year">1978 AND "location"='memorial stadium (baltimore)'; | 2-13342861-3 |
Which engine has a Chassis of lotus 44 f2? | CREATE TABLE "formula_one_world_championship_results" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "engine" FROM "formula_one_world_championship_results" WHERE "chassis"='lotus 44 f2'; | 2-1226532-1 |
What entrant appeared in 1969? | CREATE TABLE "formula_one_world_championship_results" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "entrant" FROM "formula_one_world_championship_results" WHERE "year"=1969; | 2-1226532-1 |
Which engine has a Year larger than 1969? | CREATE TABLE "formula_one_world_championship_results" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT "engine" FROM "formula_one_world_championship_results" WHERE "year">1969; | 2-1226532-1 |
What is the largest year with an Entrant of ron harris / team lotus? | CREATE TABLE "formula_one_world_championship_results" (
"year" real,
"entrant" text,
"chassis" text,
"engine" text,
"points" real
); | SELECT MAX("year") FROM "formula_one_world_championship_results" WHERE "entrant"='ron harris / team lotus'; | 2-1226532-1 |
During stage 21, who held the Intergiro classification? | CREATE TABLE "classification_leadership_by_stage" (
"stage" text,
"winner" text,
"general_classification" text,
"points_classification" text,
"mountains_classification" text,
"young_rider_classification" text,
"intergiro_classification" text,
"trofeo_fast_team" text
); | SELECT "intergiro_classification" FROM "classification_leadership_by_stage" WHERE "stage"='21'; | 2-12251219-2 |
During which stage was gatorade the Trofeo Fast Team? | CREATE TABLE "classification_leadership_by_stage" (
"stage" text,
"winner" text,
"general_classification" text,
"points_classification" text,
"mountains_classification" text,
"young_rider_classification" text,
"intergiro_classification" text,
"trofeo_fast_team" text
); | SELECT "stage" FROM "classification_leadership_by_stage" WHERE "trofeo_fast_team"='gatorade'; | 2-12251219-2 |
Who held the Intergiro classificaiton when the Trofeo Fast Team is gb-mg maglificio? | CREATE TABLE "classification_leadership_by_stage" (
"stage" text,
"winner" text,
"general_classification" text,
"points_classification" text,
"mountains_classification" text,
"young_rider_classification" text,
"intergiro_classification" text,
"trofeo_fast_team" text
); | SELECT "intergiro_classification" FROM "classification_leadership_by_stage" WHERE "trofeo_fast_team"='gb-mg maglificio'; | 2-12251219-2 |
During which stage was the Intergiro classification held by Miguel Indurain, the Points classification held by Mario Cipollini, and the Young rider classification held by Leonardo Sierra? | CREATE TABLE "classification_leadership_by_stage" (
"stage" text,
"winner" text,
"general_classification" text,
"points_classification" text,
"mountains_classification" text,
"young_rider_classification" text,
"intergiro_classification" text,
"trofeo_fast_team" text
); | SELECT "stage" FROM "classification_leadership_by_stage" WHERE "intergiro_classification"='miguel indurain' AND "points_classification"='mario cipollini' AND "young_rider_classification"='leonardo sierra'; | 2-12251219-2 |
Who was the winner when the General classification was held by Miguel Indurain, the Points classification held by Mario Cipollini, the Mountains classification held by Claudio Chiappucci, and the Young RIder classification held by Pavel Tonkov? | CREATE TABLE "classification_leadership_by_stage" (
"stage" text,
"winner" text,
"general_classification" text,
"points_classification" text,
"mountains_classification" text,
"young_rider_classification" text,
"intergiro_classification" text,
"trofeo_fast_team" text
); | SELECT "winner" FROM "classification_leadership_by_stage" WHERE "general_classification"='miguel indurain' AND "points_classification"='mario cipollini' AND "mountains_classification"='claudio chiappucci' AND "young_rider_classification"='pavel tonkov'; | 2-12251219-2 |
What is the rank of Strong's Words Compounded of yasha [# 3467] & yahu? | CREATE TABLE "table_of_theophoric_names_with_yah_and_y" (
"strong_s_num" text,
"hebrew_word" text,
"strong_s_transliteration" text,
"strong_s_words_compounded" text,
"english_spelling" text
); | SELECT "strong_s_num" FROM "table_of_theophoric_names_with_yah_and_y" WHERE "strong_s_words_compounded"='yasha [# 3467] & yahu'; | 2-1242447-2 |
How to spell Strong's # of 5166 in English? | CREATE TABLE "table_of_theophoric_names_with_yah_and_y" (
"strong_s_num" text,
"hebrew_word" text,
"strong_s_transliteration" text,
"strong_s_words_compounded" text,
"english_spelling" text
); | SELECT "english_spelling" FROM "table_of_theophoric_names_with_yah_and_y" WHERE "strong_s_num"='5166'; | 2-1242447-2 |
What is the Words with a Strong's # of 5418? | CREATE TABLE "table_of_theophoric_names_with_yah_and_y" (
"strong_s_num" text,
"hebrew_word" text,
"strong_s_transliteration" text,
"strong_s_words_compounded" text,
"english_spelling" text
); | SELECT "strong_s_words_compounded" FROM "table_of_theophoric_names_with_yah_and_y" WHERE "strong_s_num"='5418'; | 2-1242447-2 |
What is the goals against for the goalkeeper with 2520 minutes? | CREATE TABLE "goalkeeping_leaders" (
"player" text,
"club" text,
"games_played" real,
"minutes" real,
"goals_against" real,
"ga_average" real,
"wins" real,
"loses" real
); | SELECT "goals_against" FROM "goalkeeping_leaders" WHERE "minutes"=2520; | 2-1244766-10 |
What is the average Games Played for Bo Oshoniyi, who had more than 1170 minutes and 10 loses? | CREATE TABLE "goalkeeping_leaders" (
"player" text,
"club" text,
"games_played" real,
"minutes" real,
"goals_against" real,
"ga_average" real,
"wins" real,
"loses" real
); | SELECT AVG("games_played") FROM "goalkeeping_leaders" WHERE "loses"=10 AND "player"='bo oshoniyi' AND "minutes">1170; | 2-1244766-10 |
What is the highest goals against the goalkeeper of Dallas Burn, who had a GA average larger than 1.46, had? | CREATE TABLE "goalkeeping_leaders" (
"player" text,
"club" text,
"games_played" real,
"minutes" real,
"goals_against" real,
"ga_average" real,
"wins" real,
"loses" real
); | SELECT MAX("goals_against") FROM "goalkeeping_leaders" WHERE "club"='dallas burn' AND "ga_average">1.46; | 2-1244766-10 |
What is the lowest number of losses a goalkeeper with more than 2776 minutes had? | CREATE TABLE "goalkeeping_leaders" (
"player" text,
"club" text,
"games_played" real,
"minutes" real,
"goals_against" real,
"ga_average" real,
"wins" real,
"loses" real
); | SELECT MIN("loses") FROM "goalkeeping_leaders" WHERE "minutes">2776; | 2-1244766-10 |
What is the lowest minutes a goalkeeper with 13 games played has? | CREATE TABLE "goalkeeping_leaders" (
"player" text,
"club" text,
"games_played" real,
"minutes" real,
"goals_against" real,
"ga_average" real,
"wins" real,
"loses" real
); | SELECT MIN("minutes") FROM "goalkeeping_leaders" WHERE "games_played"=13; | 2-1244766-10 |
Which round resulted in 10-52? | CREATE TABLE "biggest_losses" (
"margin" real,
"score" text,
"opponent" text,
"venue" text,
"round" text
); | SELECT "round" FROM "biggest_losses" WHERE "score"='10-52'; | 2-13105612-8 |
What venue did Melbourne Storm played in Rd 7, 2006? | CREATE TABLE "biggest_losses" (
"margin" real,
"score" text,
"opponent" text,
"venue" text,
"round" text
); | SELECT "venue" FROM "biggest_losses" WHERE "opponent"='melbourne storm' AND "round"='rd 7, 2006'; | 2-13105612-8 |
In which venue was the result a draw? | CREATE TABLE "international_goals" (
"date" text,
"venue" text,
"score" text,
"result" text,
"competition" text
); | SELECT "venue" FROM "international_goals" WHERE "result"='draw'; | 2-12161548-1 |
Who is the singer that has Comedian; II of Preeti Amin? | CREATE TABLE "comedy_circus_ke_taansen" (
"pair_no" real,
"comedian_1" text,
"comedian_ii" text,
"tansen_singers" text,
"place_result" text
); | SELECT "tansen_singers" FROM "comedy_circus_ke_taansen" WHERE "comedian_ii"='preeti amin'; | 2-12316202-5 |
Who is the comedian that has a pair no larger than 5 with a comedian II: Jimmy Moses? | CREATE TABLE "comedy_circus_ke_taansen" (
"pair_no" real,
"comedian_1" text,
"comedian_ii" text,
"tansen_singers" text,
"place_result" text
); | SELECT "comedian_1" FROM "comedy_circus_ke_taansen" WHERE "pair_no">5 AND "comedian_ii"='jimmy moses'; | 2-12316202-5 |
What is the result of Comedian : II of Ali Asgar? | CREATE TABLE "comedy_circus_ke_taansen" (
"pair_no" real,
"comedian_1" text,
"comedian_ii" text,
"tansen_singers" text,
"place_result" text
); | SELECT "place_result" FROM "comedy_circus_ke_taansen" WHERE "comedian_ii"='ali asgar'; | 2-12316202-5 |
Which School Colors were Founded of 1969, with an Institution of barton community college? | CREATE TABLE "western_division" (
"institution" text,
"main_campus_location" text,
"founded" real,
"mascot" text,
"school_colors" text
); | SELECT "school_colors" FROM "western_division" WHERE "founded"=1969 AND "institution"='barton community college'; | 2-12434380-2 |
Which Institution has a Mascot of broncbusters? | CREATE TABLE "western_division" (
"institution" text,
"main_campus_location" text,
"founded" real,
"mascot" text,
"school_colors" text
); | SELECT "institution" FROM "western_division" WHERE "mascot"='broncbusters'; | 2-12434380-2 |
What is the largest Founded with an Institution of cloud county community college? | CREATE TABLE "western_division" (
"institution" text,
"main_campus_location" text,
"founded" real,
"mascot" text,
"school_colors" text
); | SELECT MAX("founded") FROM "western_division" WHERE "institution"='cloud county community college'; | 2-12434380-2 |
What is the total Founded with a Main Campus Location of liberal? | CREATE TABLE "western_division" (
"institution" text,
"main_campus_location" text,
"founded" real,
"mascot" text,
"school_colors" text
); | SELECT COUNT("founded") FROM "western_division" WHERE "main_campus_location"='liberal'; | 2-12434380-2 |
What is the 3-person dive that has none as the 2-person dive? | CREATE TABLE "encounters" (
"1_person_dive" text,
"2_person_dive" text,
"3_person_dive" text,
"surface" text,
"cage_dive" text,
"seal_turtle_decoy" text,
"catch_release" text,
"attached_camera" text,
"remote_camera" text
); | SELECT "3_person_dive" FROM "encounters" WHERE "2_person_dive"='none'; | 2-12586369-4 |
What is the 2-person dive that has 2 as the surface? | CREATE TABLE "encounters" (
"1_person_dive" text,
"2_person_dive" text,
"3_person_dive" text,
"surface" text,
"cage_dive" text,
"seal_turtle_decoy" text,
"catch_release" text,
"attached_camera" text,
"remote_camera" text
); | SELECT "2_person_dive" FROM "encounters" WHERE "surface"='2'; | 2-12586369-4 |
What surface has 2 as a cage dive? | CREATE TABLE "encounters" (
"1_person_dive" text,
"2_person_dive" text,
"3_person_dive" text,
"surface" text,
"cage_dive" text,
"seal_turtle_decoy" text,
"catch_release" text,
"attached_camera" text,
"remote_camera" text
); | SELECT "surface" FROM "encounters" WHERE "cage_dive"='2'; | 2-12586369-4 |
Which cage dive has none as a 3-person dive? | CREATE TABLE "encounters" (
"1_person_dive" text,
"2_person_dive" text,
"3_person_dive" text,
"surface" text,
"cage_dive" text,
"seal_turtle_decoy" text,
"catch_release" text,
"attached_camera" text,
"remote_camera" text
); | SELECT "cage_dive" FROM "encounters" WHERE "3_person_dive"='none'; | 2-12586369-4 |
Which 3-person dive has 0 as a remote camera? | CREATE TABLE "encounters" (
"1_person_dive" text,
"2_person_dive" text,
"3_person_dive" text,
"surface" text,
"cage_dive" text,
"seal_turtle_decoy" text,
"catch_release" text,
"attached_camera" text,
"remote_camera" text
); | SELECT "3_person_dive" FROM "encounters" WHERE "remote_camera"='0'; | 2-12586369-4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.