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 loss on September 2? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"save" text,
"record" text
); | SELECT "loss" FROM "game_log" WHERE "date"='september 2'; | 2-13964884-7 |
What is the total number of byes that are associated with 1 draw, 5 wins, and fewer than 12 losses? | CREATE TABLE "2010_ladder" (
"ntfa_div_1" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT SUM("byes") FROM "2010_ladder" WHERE "draws"=1 AND "wins"=5 AND "losses"<12; | 2-14756291-5 |
What is the total number of byes associated with fewer than 8 wins and fewer than 1 draw? | CREATE TABLE "2010_ladder" (
"ntfa_div_1" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT COUNT("byes") FROM "2010_ladder" WHERE "draws"<1 AND "wins"<8; | 2-14756291-5 |
What is the NTFA Div 1 team that has 15 wins and less than 1 draw? | CREATE TABLE "2010_ladder" (
"ntfa_div_1" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT "ntfa_div_1" FROM "2010_ladder" WHERE "draws"<1 AND "wins"=15; | 2-14756291-5 |
What is the average number of losses for teams with 0 draws and 0 byes? | CREATE TABLE "2010_ladder" (
"ntfa_div_1" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT AVG("losses") FROM "2010_ladder" WHERE "draws"=0 AND "byes"<0; | 2-14756291-5 |
What is the most number of losses for teams with 5 wins and an against value under 1607? | CREATE TABLE "2010_ladder" (
"ntfa_div_1" text,
"wins" real,
"byes" real,
"losses" real,
"draws" real,
"against" real
); | SELECT MAX("losses") FROM "2010_ladder" WHERE "wins"=5 AND "against"<1607; | 2-14756291-5 |
Race that has a Podium larger than 1, and a Season of 1982, and a flap smaller than 1 had how many number of races? | CREATE TABLE "by_season" (
"season" text,
"race" real,
"podium" real,
"pole" real,
"f_lap" real
); | SELECT COUNT("race") FROM "by_season" WHERE "podium">1 AND "season"='1982' AND "f_lap"<1; | 2-15143883-1 |
Pole smaller than 0 had what lowest podium? | CREATE TABLE "by_season" (
"season" text,
"race" real,
"podium" real,
"pole" real,
"f_lap" real
); | SELECT MIN("podium") FROM "by_season" WHERE "pole"<0; | 2-15143883-1 |
Flap of 0, and a Race smaller than 2, and a Season of 1989, and a Pole smaller than 0 had what average podium? | CREATE TABLE "by_season" (
"season" text,
"race" real,
"podium" real,
"pole" real,
"f_lap" real
); | SELECT AVG("podium") FROM "by_season" WHERE "f_lap"=0 AND "race"<2 AND "season"='1989' AND "pole"<0; | 2-15143883-1 |
What was the record on august 24? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"stadium" text,
"attendance" real,
"record" text
); | SELECT "record" FROM "game_log" WHERE "date"='august 24'; | 2-13983270-8 |
Elevation of 11,158 feet 3401 m had what route? | CREATE TABLE "colorado_highway_summits_not_on_a_pass" (
"rank" real,
"highway" text,
"elevation" text,
"surface" text,
"route" real
); | SELECT "route" FROM "colorado_highway_summits_not_on_a_pass" WHERE "elevation"='11,158 feet 3401 m'; | 2-14926835-2 |
Route larger than 24, and a Highway of trail ridge road had what elevation? | CREATE TABLE "colorado_highway_summits_not_on_a_pass" (
"rank" real,
"highway" text,
"elevation" text,
"surface" text,
"route" real
); | SELECT "elevation" FROM "colorado_highway_summits_not_on_a_pass" WHERE "route">24 AND "highway"='trail ridge road'; | 2-14926835-2 |
Elevation of 12,183 feet 3713 m is what average route? | CREATE TABLE "colorado_highway_summits_not_on_a_pass" (
"rank" real,
"highway" text,
"elevation" text,
"surface" text,
"route" real
); | SELECT AVG("route") FROM "colorado_highway_summits_not_on_a_pass" WHERE "elevation"='12,183 feet 3713 m'; | 2-14926835-2 |
What Opponent has a Results¹ of 1:3? | CREATE TABLE "1982" (
"date" text,
"city" text,
"opponent" text,
"results" text,
"type_of_game" text
); | SELECT "opponent" FROM "1982" WHERE "results"='1:3'; | 2-14305653-60 |
On what Date was the Results¹ 1:2? | CREATE TABLE "1982" (
"date" text,
"city" text,
"opponent" text,
"results" text,
"type_of_game" text
); | SELECT "date" FROM "1982" WHERE "results"='1:2'; | 2-14305653-60 |
What City had Results¹ of 1:2? | CREATE TABLE "1982" (
"date" text,
"city" text,
"opponent" text,
"results" text,
"type_of_game" text
); | SELECT "city" FROM "1982" WHERE "results"='1:2'; | 2-14305653-60 |
On what Date was Wales the Opponent? | CREATE TABLE "1982" (
"date" text,
"city" text,
"opponent" text,
"results" text,
"type_of_game" text
); | SELECT "date" FROM "1982" WHERE "opponent"='wales'; | 2-14305653-60 |
In what City was Bulgaria the Opponent with Results¹ of 1:0? | CREATE TABLE "1982" (
"date" text,
"city" text,
"opponent" text,
"results" text,
"type_of_game" text
); | SELECT "city" FROM "1982" WHERE "results"='1:0' AND "opponent"='bulgaria'; | 2-14305653-60 |
What Vancouver canucks game was on a date closest to November 4? | CREATE TABLE "regular_season" (
"game" real,
"november" real,
"opponent" text,
"score" text,
"record" text,
"points" real
); | SELECT MAX("game") FROM "regular_season" WHERE "opponent"='vancouver canucks' AND "november"<4; | 2-14318917-3 |
Name the year for jerry sichting | CREATE TABLE "1990s" (
"year" text,
"flagship_station" text,
"play_by_play" text,
"color_commentator_s" text,
"studio_host" text
); | SELECT "year" FROM "1990s" WHERE "color_commentator_s"='jerry sichting'; | 2-14902507-9 |
Name the studio host for glenn ordway and jerry sichting with year of 1993-94 | CREATE TABLE "1990s" (
"year" text,
"flagship_station" text,
"play_by_play" text,
"color_commentator_s" text,
"studio_host" text
); | SELECT "studio_host" FROM "1990s" WHERE "play_by_play"='glenn ordway' AND "color_commentator_s"='jerry sichting' AND "year"='1993-94'; | 2-14902507-9 |
Name the flagship station for cedric maxwell and year of 1995-96 | CREATE TABLE "1990s" (
"year" text,
"flagship_station" text,
"play_by_play" text,
"color_commentator_s" text,
"studio_host" text
); | SELECT "flagship_station" FROM "1990s" WHERE "color_commentator_s"='cedric maxwell' AND "year"='1995-96'; | 2-14902507-9 |
Who was the architect of the 10 floor building with a height of 42 M? | CREATE TABLE "manitoba" (
"building" text,
"height_m" real,
"floors" real,
"built" real,
"city" text,
"architect" text
); | SELECT "architect" FROM "manitoba" WHERE "height_m"=42 AND "floors"=10; | 2-1363000-3 |
What is the height of the building built by architects Ross and Macfarlane? | CREATE TABLE "manitoba" (
"building" text,
"height_m" real,
"floors" real,
"built" real,
"city" text,
"architect" text
); | SELECT "height_m" FROM "manitoba" WHERE "architect"='ross and macfarlane'; | 2-1363000-3 |
Who was the architect that built the Electric Railway Chambers before 1915? | CREATE TABLE "manitoba" (
"building" text,
"height_m" real,
"floors" real,
"built" real,
"city" text,
"architect" text
); | SELECT "architect" FROM "manitoba" WHERE "built"<1915 AND "building"='electric railway chambers'; | 2-1363000-3 |
What is the Time on july 18 that has a Loss of lilly (3-3)? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"time" text,
"att" real,
"record" text
); | SELECT "time" FROM "game_log" WHERE "date"='july 18' AND "loss"='lilly (3-3)'; | 2-14337020-5 |
Which Opponent has a Record of 43-56? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"time" text,
"att" real,
"record" text
); | SELECT "opponent" FROM "game_log" WHERE "record"='43-56'; | 2-14337020-5 |
What is the Score on July 18 that has Record of 41-51? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"time" text,
"att" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='july 18' AND "record"='41-51'; | 2-14337020-5 |
Which Record is on july 31? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"time" text,
"att" real,
"record" text
); | SELECT "record" FROM "game_log" WHERE "date"='july 31'; | 2-14337020-5 |
Which Opponent has a Loss of weaver (9-9)? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"time" text,
"att" real,
"record" text
); | SELECT "opponent" FROM "game_log" WHERE "loss"='weaver (9-9)'; | 2-14337020-5 |
Which Season was the Poles greater than 14? | CREATE TABLE "highest_percentage_of_pole_positions_in_" (
"driver" text,
"season" real,
"races" real,
"poles" real,
"percentage" text
); | SELECT "season" FROM "highest_percentage_of_pole_positions_in_" WHERE "poles">14; | 2-13599687-29 |
Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver? | CREATE TABLE "highest_percentage_of_pole_positions_in_" (
"driver" text,
"season" real,
"races" real,
"poles" real,
"percentage" text
); | SELECT MAX("season") FROM "highest_percentage_of_pole_positions_in_" WHERE "percentage"='67%' AND "driver"='alberto ascari'; | 2-13599687-29 |
Name the Driver that has Races greater than 16? | CREATE TABLE "highest_percentage_of_pole_positions_in_" (
"driver" text,
"season" real,
"races" real,
"poles" real,
"percentage" text
); | SELECT "driver" FROM "highest_percentage_of_pole_positions_in_" WHERE "races">16; | 2-13599687-29 |
What is the average Long that has a GP-GS less than 14, a AVg/G less than 0.8 and a Gain less than 3 and a Loss greater than 8? | CREATE TABLE "rushing" (
"name" text,
"gp_gs" real,
"gain" real,
"loss" real,
"long" real,
"avg_g" real
); | SELECT AVG("long") FROM "rushing" WHERE "gp_gs"<14 AND "avg_g"<0.8 AND "gain"<3 AND "loss">8; | 2-14931889-21 |
What is the lowest Avg/G with a Long less than 0? | CREATE TABLE "rushing" (
"name" text,
"gp_gs" real,
"gain" real,
"loss" real,
"long" real,
"avg_g" real
); | SELECT MIN("avg_g") FROM "rushing" WHERE "long"<0; | 2-14931889-21 |
What is the amount of Avg/G with a Name of blaine gabbert and a Long greater than 30? | CREATE TABLE "rushing" (
"name" text,
"gp_gs" real,
"gain" real,
"loss" real,
"long" real,
"avg_g" real
); | SELECT SUM("avg_g") FROM "rushing" WHERE "name"='blaine gabbert' AND "long">30; | 2-14931889-21 |
What is the total number of Long with a Av/g of 124.9 but Loss greater than 0? | CREATE TABLE "rushing" (
"name" text,
"gp_gs" real,
"gain" real,
"loss" real,
"long" real,
"avg_g" real
); | SELECT COUNT("long") FROM "rushing" WHERE "loss">0 AND "avg_g"=124.9; | 2-14931889-21 |
What date has parlophone as the label, and lp as a format? | CREATE TABLE "release_history" (
"country" text,
"date" text,
"label" text,
"format" text,
"catalog" text
); | SELECT "date" FROM "release_history" WHERE "label"='parlophone' AND "format"='lp'; | 2-1472429-3 |
What school has oregon as the state, and ashland as the city? | CREATE TABLE "see_also" (
"school" text,
"team" text,
"city" text,
"state" text,
"conference" text
); | SELECT "school" FROM "see_also" WHERE "state"='oregon' AND "city"='ashland'; | 2-14262530-1 |
What conference has mayville state as the school? | CREATE TABLE "see_also" (
"school" text,
"team" text,
"city" text,
"state" text,
"conference" text
); | SELECT "conference" FROM "see_also" WHERE "school"='mayville state'; | 2-14262530-1 |
What school has belleville as the city? | CREATE TABLE "see_also" (
"school" text,
"team" text,
"city" text,
"state" text,
"conference" text
); | SELECT "school" FROM "see_also" WHERE "city"='belleville'; | 2-14262530-1 |
What city has trojans as the team, and taylor as the school? | CREATE TABLE "see_also" (
"school" text,
"team" text,
"city" text,
"state" text,
"conference" text
); | SELECT "city" FROM "see_also" WHERE "team"='trojans' AND "school"='taylor'; | 2-14262530-1 |
What team has great plains as the conference, and concordia (ne) as the school? | CREATE TABLE "see_also" (
"school" text,
"team" text,
"city" text,
"state" text,
"conference" text
); | SELECT "team" FROM "see_also" WHERE "conference"='great plains' AND "school"='concordia (ne)'; | 2-14262530-1 |
What school is in hillsboro city? | CREATE TABLE "see_also" (
"school" text,
"team" text,
"city" text,
"state" text,
"conference" text
); | SELECT "school" FROM "see_also" WHERE "city"='hillsboro'; | 2-14262530-1 |
How many games have a February larger than 11, and a Record of 23-7-8? | CREATE TABLE "schedule_and_results" (
"game" real,
"february" real,
"opponent" text,
"score" text,
"record" text
); | SELECT COUNT("game") FROM "schedule_and_results" WHERE "february">11 AND "record"='23-7-8'; | 2-14473419-5 |
How much February has a Game larger than 37, and an Opponent of chicago black hawks? | CREATE TABLE "schedule_and_results" (
"game" real,
"february" real,
"opponent" text,
"score" text,
"record" text
); | SELECT COUNT("february") FROM "schedule_and_results" WHERE "game">37 AND "opponent"='chicago black hawks'; | 2-14473419-5 |
Which February has a Game of 40? | CREATE TABLE "schedule_and_results" (
"game" real,
"february" real,
"opponent" text,
"score" text,
"record" text
); | SELECT "february" FROM "schedule_and_results" WHERE "game"=40; | 2-14473419-5 |
Which Record has a February smaller than 8, and an Opponent of montreal canadiens? | CREATE TABLE "schedule_and_results" (
"game" real,
"february" real,
"opponent" text,
"score" text,
"record" text
); | SELECT "record" FROM "schedule_and_results" WHERE "february"<8 AND "opponent"='montreal canadiens'; | 2-14473419-5 |
Which Score has a Game larger than 40, and a Record of 25-10-8? | CREATE TABLE "schedule_and_results" (
"game" real,
"february" real,
"opponent" text,
"score" text,
"record" text
); | SELECT "score" FROM "schedule_and_results" WHERE "game">40 AND "record"='25-10-8'; | 2-14473419-5 |
What was the team performance in 1977? | CREATE TABLE "nfl_defensive_players_of_the_year" (
"year" real,
"nfl_team" text,
"position" text,
"team_defense_rank" real,
"team_performance" text
); | SELECT "team_performance" FROM "nfl_defensive_players_of_the_year" WHERE "year"=1977; | 2-1402270-1 |
What was the position of the player whose team lost super bowl xxv before 1992, with a team defense rank larger than 3? | CREATE TABLE "nfl_defensive_players_of_the_year" (
"year" real,
"nfl_team" text,
"position" text,
"team_defense_rank" real,
"team_performance" text
); | SELECT "position" FROM "nfl_defensive_players_of_the_year" WHERE "team_defense_rank">3 AND "year"<1992 AND "team_performance"='lost super bowl xxv'; | 2-1402270-1 |
What round was Joe Patton selected with a pick over 68? | CREATE TABLE "nfl_draft" (
"round" real,
"pick" real,
"player" text,
"position" text,
"school" text
); | SELECT "round" FROM "nfl_draft" WHERE "pick">68 AND "player"='joe patton'; | 2-14610018-1 |
Which Sail number has a Position smaller than 2? | CREATE TABLE "handicap_results_top_10" (
"position" real,
"sail_number" text,
"yacht" text,
"state_country" text,
"yacht_type" text,
"loa_metres" real,
"skipper" text,
"corrected_time_d_hh_mm_ss" text
); | SELECT "sail_number" FROM "handicap_results_top_10" WHERE "position"<2; | 2-14882588-3 |
WHICH Corrected time d:hh:mm:ss has a Position smaller than 7, and a Yacht type of cookson 50 | CREATE TABLE "handicap_results_top_10" (
"position" real,
"sail_number" text,
"yacht" text,
"state_country" text,
"yacht_type" text,
"loa_metres" real,
"skipper" text,
"corrected_time_d_hh_mm_ss" text
); | SELECT "corrected_time_d_hh_mm_ss" FROM "handicap_results_top_10" WHERE "position"<7 AND "yacht_type"='cookson 50'; | 2-14882588-3 |
WHICH State/country that has ray roberts? | CREATE TABLE "handicap_results_top_10" (
"position" real,
"sail_number" text,
"yacht" text,
"state_country" text,
"yacht_type" text,
"loa_metres" real,
"skipper" text,
"corrected_time_d_hh_mm_ss" text
); | SELECT "state_country" FROM "handicap_results_top_10" WHERE "skipper"='ray roberts'; | 2-14882588-3 |
WHICH Yacht type has a Corrected time 2:13:04:48? | CREATE TABLE "handicap_results_top_10" (
"position" real,
"sail_number" text,
"yacht" text,
"state_country" text,
"yacht_type" text,
"loa_metres" real,
"skipper" text,
"corrected_time_d_hh_mm_ss" text
); | SELECT "yacht_type" FROM "handicap_results_top_10" WHERE "corrected_time_d_hh_mm_ss"='2:13:04:48'; | 2-14882588-3 |
WHICH LOA (Metres) has a Corrected time d:hh:mm:ss of 3:12:07:43? | CREATE TABLE "handicap_results_top_10" (
"position" real,
"sail_number" text,
"yacht" text,
"state_country" text,
"yacht_type" text,
"loa_metres" real,
"skipper" text,
"corrected_time_d_hh_mm_ss" text
); | SELECT AVG("loa_metres") FROM "handicap_results_top_10" WHERE "corrected_time_d_hh_mm_ss"='3:12:07:43'; | 2-14882588-3 |
What surface did Smeets play on during the Kuwait tournament? | CREATE TABLE "singles_titles_10" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "surface" FROM "singles_titles_10" WHERE "tournament"='kuwait'; | 2-15145771-3 |
What tournament did Smeets play against Mark nielsen? | CREATE TABLE "singles_titles_10" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "tournament" FROM "singles_titles_10" WHERE "opponent_in_the_final"='mark nielsen'; | 2-15145771-3 |
Who was the opponent during the tournament in Kuwait? | CREATE TABLE "singles_titles_10" (
"date" text,
"tournament" text,
"surface" text,
"opponent_in_the_final" text,
"score" text
); | SELECT "opponent_in_the_final" FROM "singles_titles_10" WHERE "tournament"='kuwait'; | 2-15145771-3 |
What is the weight of the player from the vk primorac kotor club? | CREATE TABLE "men_s_tournament" (
"name_v_t_e" text,
"pos" text,
"height" text,
"weight" text,
"club" text
); | SELECT "weight" FROM "men_s_tournament" WHERE "club"='vk primorac kotor'; | 2-15170808-7 |
What is the weight of the player from pvk jadran club? | CREATE TABLE "men_s_tournament" (
"name_v_t_e" text,
"pos" text,
"height" text,
"weight" text,
"club" text
); | SELECT "weight" FROM "men_s_tournament" WHERE "club"='pvk jadran'; | 2-15170808-7 |
What is the name of the player from club pro recco? | CREATE TABLE "men_s_tournament" (
"name_v_t_e" text,
"pos" text,
"height" text,
"weight" text,
"club" text
); | SELECT "name_v_t_e" FROM "men_s_tournament" WHERE "club"='pro recco'; | 2-15170808-7 |
What is the height of the player from club vk primorac kotor who plays gk? | CREATE TABLE "men_s_tournament" (
"name_v_t_e" text,
"pos" text,
"height" text,
"weight" text,
"club" text
); | SELECT "height" FROM "men_s_tournament" WHERE "pos"='gk' AND "club"='vk primorac kotor'; | 2-15170808-7 |
What is Team 1 where Team 2 is gombe united f.c.? | CREATE TABLE "first_round_1_16_finals" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "team_1" FROM "first_round_1_16_finals" WHERE "team_2"='gombe united f.c.'; | 2-14562907-2 |
What is Team 1 where Team 2 is al tahrir? | CREATE TABLE "first_round_1_16_finals" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "team_1" FROM "first_round_1_16_finals" WHERE "team_2"='al tahrir'; | 2-14562907-2 |
What is the 2nd leg where Team 2 is fc 105 libreville? | CREATE TABLE "first_round_1_16_finals" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "2nd_leg" FROM "first_round_1_16_finals" WHERE "team_2"='fc 105 libreville'; | 2-14562907-2 |
What was the course called that had an Edition of 117th? | CREATE TABLE "future_sites" (
"year" real,
"edition" text,
"course" text,
"location" text,
"dates" text
); | SELECT "course" FROM "future_sites" WHERE "edition"='117th'; | 2-1510466-2 |
What was the earliest year that had a location of Brookline, Massachusetts? | CREATE TABLE "future_sites" (
"year" real,
"edition" text,
"course" text,
"location" text,
"dates" text
); | SELECT MIN("year") FROM "future_sites" WHERE "location"='brookline, massachusetts'; | 2-1510466-2 |
What year had an edition of 115th? | CREATE TABLE "future_sites" (
"year" real,
"edition" text,
"course" text,
"location" text,
"dates" text
); | SELECT AVG("year") FROM "future_sites" WHERE "edition"='115th'; | 2-1510466-2 |
How many points did ginger have when she was ranked 5th on a 350cc class bike? | CREATE TABLE "grand_prix_motorcycle_racing_results" (
"year" real,
"class" text,
"team" text,
"points" real,
"rank" text,
"wins" real
); | SELECT COUNT("points") FROM "grand_prix_motorcycle_racing_results" WHERE "class"='350cc' AND "rank"='5th'; | 2-15230272-3 |
What year was she ranked 16th with over 12 points? | CREATE TABLE "grand_prix_motorcycle_racing_results" (
"year" real,
"class" text,
"team" text,
"points" real,
"rank" text,
"wins" real
); | SELECT COUNT("year") FROM "grand_prix_motorcycle_racing_results" WHERE "rank"='16th' AND "points">12; | 2-15230272-3 |
What year was she on a 350cc class bike, ranked 16th, with over 0 wins? | CREATE TABLE "grand_prix_motorcycle_racing_results" (
"year" real,
"class" text,
"team" text,
"points" real,
"rank" text,
"wins" real
); | SELECT SUM("year") FROM "grand_prix_motorcycle_racing_results" WHERE "class"='350cc' AND "rank"='16th' AND "wins">0; | 2-15230272-3 |
How many points did she have with team bultaco, ranked 6th? | CREATE TABLE "grand_prix_motorcycle_racing_results" (
"year" real,
"class" text,
"team" text,
"points" real,
"rank" text,
"wins" real
); | SELECT SUM("points") FROM "grand_prix_motorcycle_racing_results" WHERE "team"='bultaco' AND "rank"='6th'; | 2-15230272-3 |
What is the Kashmiri word for the Indonesian word senin? | CREATE TABLE "days_of_the_week" (
"arabic" text,
"english" text,
"maltese" text,
"turkish" text,
"somali" text,
"persian" text,
"urdu" text,
"hindi" text,
"punjabi_india" text,
"punjabi_pakistan" text,
"malayalam" text,
"bangla" text,
"hebrew" text,
"indonesian" text,
"malay" text,
"fili... | SELECT "kashmiri" FROM "days_of_the_week" WHERE "indonesian"='senin'; | 2-14810-1 |
What is the Turkish word for the Bangla word shombar সোমবার? | CREATE TABLE "days_of_the_week" (
"arabic" text,
"english" text,
"maltese" text,
"turkish" text,
"somali" text,
"persian" text,
"urdu" text,
"hindi" text,
"punjabi_india" text,
"punjabi_pakistan" text,
"malayalam" text,
"bangla" text,
"hebrew" text,
"indonesian" text,
"malay" text,
"fili... | SELECT "turkish" FROM "days_of_the_week" WHERE "bangla"='shombar সোমবার'; | 2-14810-1 |
What is the Pashto word for the Somali word talaado? | CREATE TABLE "days_of_the_week" (
"arabic" text,
"english" text,
"maltese" text,
"turkish" text,
"somali" text,
"persian" text,
"urdu" text,
"hindi" text,
"punjabi_india" text,
"punjabi_pakistan" text,
"malayalam" text,
"bangla" text,
"hebrew" text,
"indonesian" text,
"malay" text,
"fili... | SELECT "pashto" FROM "days_of_the_week" WHERE "somali"='talaado'; | 2-14810-1 |
What is the Punjabi (Pakistan) word for the Kurdish word یـــەک شـەمـمـە yak sham? | CREATE TABLE "days_of_the_week" (
"arabic" text,
"english" text,
"maltese" text,
"turkish" text,
"somali" text,
"persian" text,
"urdu" text,
"hindi" text,
"punjabi_india" text,
"punjabi_pakistan" text,
"malayalam" text,
"bangla" text,
"hebrew" text,
"indonesian" text,
"malay" text,
"fili... | SELECT "punjabi_pakistan" FROM "days_of_the_week" WHERE "kurdish"='یـــەک شـەمـمـە yak sham'; | 2-14810-1 |
What is the Maltese word for the Malay word rabu? | CREATE TABLE "days_of_the_week" (
"arabic" text,
"english" text,
"maltese" text,
"turkish" text,
"somali" text,
"persian" text,
"urdu" text,
"hindi" text,
"punjabi_india" text,
"punjabi_pakistan" text,
"malayalam" text,
"bangla" text,
"hebrew" text,
"indonesian" text,
"malay" text,
"fili... | SELECT "maltese" FROM "days_of_the_week" WHERE "malay"='rabu'; | 2-14810-1 |
What is the Pashto word for the Malayalam word വ്യാഴം vyazham? | CREATE TABLE "days_of_the_week" (
"arabic" text,
"english" text,
"maltese" text,
"turkish" text,
"somali" text,
"persian" text,
"urdu" text,
"hindi" text,
"punjabi_india" text,
"punjabi_pakistan" text,
"malayalam" text,
"bangla" text,
"hebrew" text,
"indonesian" text,
"malay" text,
"fili... | SELECT "pashto" FROM "days_of_the_week" WHERE "malayalam"='വ്യാഴം vyazham'; | 2-14810-1 |
Which Score has a Date of june 22? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='june 22'; | 2-14546545-4 |
How much Attendance has an Opponent of rockies, and a Record of 32-30? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT SUM("attendance") FROM "game_log" WHERE "opponent"='rockies' AND "record"='32-30'; | 2-14546545-4 |
Who was the opponent in which the bout ended in round 2? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "opponent" FROM "mixed_martial_arts_record" WHERE "round"=2; | 2-14795931-2 |
What was the method of the bout lasting 4:15? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "method" FROM "mixed_martial_arts_record" WHERE "time"='4:15'; | 2-14795931-2 |
What was the record after the bout lasting 4:15? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "record" FROM "mixed_martial_arts_record" WHERE "time"='4:15'; | 2-14795931-2 |
How many Pick has a Round smaller than 13, and a Position of fullback? | CREATE TABLE "nfl_draft" (
"round" real,
"pick" real,
"player" text,
"position" text,
"school_club_team" text
); | SELECT COUNT("pick") FROM "nfl_draft" WHERE "round"<13 AND "position"='fullback'; | 2-14877674-1 |
WHo has a Position of end and a School/Club Team of oregon state? | CREATE TABLE "nfl_draft" (
"round" real,
"pick" real,
"player" text,
"position" text,
"school_club_team" text
); | SELECT "player" FROM "nfl_draft" WHERE "position"='end' AND "school_club_team"='oregon state'; | 2-14877674-1 |
Which Round has a Player of brunel christensen and a Pick smaller than 293? | CREATE TABLE "nfl_draft" (
"round" real,
"pick" real,
"player" text,
"position" text,
"school_club_team" text
); | SELECT MIN("round") FROM "nfl_draft" WHERE "player"='brunel christensen' AND "pick"<293; | 2-14877674-1 |
What score was on July 25? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='july 25'; | 2-14271815-6 |
Who is the opponent on July 2 with more than 39,290 attendance? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "opponent" FROM "game_log" WHERE "attendance">'39,290' AND "date"='july 2'; | 2-14271815-6 |
Which rule has The Event of n/a, The Result of loss, and The Location of winsford england? | CREATE TABLE "partial_kickboxing_record" (
"result" text,
"opponent" text,
"method" text,
"event" text,
"date" text,
"round" text,
"time" text,
"location" text,
"rules" text
); | SELECT "rules" FROM "partial_kickboxing_record" WHERE "event"='n/a' AND "result"='loss' AND "location"='winsford england'; | 2-13845847-3 |
Which Opponent has a Round of 4, and a Rules of thai boxing? | CREATE TABLE "partial_kickboxing_record" (
"result" text,
"opponent" text,
"method" text,
"event" text,
"date" text,
"round" text,
"time" text,
"location" text,
"rules" text
); | SELECT "opponent" FROM "partial_kickboxing_record" WHERE "round"='4' AND "rules"='thai boxing'; | 2-13845847-3 |
Which Opponent has a Round of 3, a Time of n/a, and a Rules of n/a? | CREATE TABLE "partial_kickboxing_record" (
"result" text,
"opponent" text,
"method" text,
"event" text,
"date" text,
"round" text,
"time" text,
"location" text,
"rules" text
); | SELECT "opponent" FROM "partial_kickboxing_record" WHERE "round"='3' AND "time"='n/a' AND "rules"='n/a'; | 2-13845847-3 |
Where has a Rules of thai boxing, and a Round of n/a, and an Opponent of everton crawford? | CREATE TABLE "partial_kickboxing_record" (
"result" text,
"opponent" text,
"method" text,
"event" text,
"date" text,
"round" text,
"time" text,
"location" text,
"rules" text
); | SELECT "location" FROM "partial_kickboxing_record" WHERE "rules"='thai boxing' AND "round"='n/a' AND "opponent"='everton crawford'; | 2-13845847-3 |
WHich Rules has a Method of ko (punch)? | CREATE TABLE "partial_kickboxing_record" (
"result" text,
"opponent" text,
"method" text,
"event" text,
"date" text,
"round" text,
"time" text,
"location" text,
"rules" text
); | SELECT "rules" FROM "partial_kickboxing_record" WHERE "method"='ko (punch)'; | 2-13845847-3 |
What torque does a 1905 cc capacity have? | CREATE TABLE "engines" (
"name" text,
"capacity" text,
"type" text,
"power" text,
"torque" text
); | SELECT "torque" FROM "engines" WHERE "capacity"='1905 cc'; | 2-1371853-1 |
What torque does 1.9 diesel with 1905 cc have? | CREATE TABLE "engines" (
"name" text,
"capacity" text,
"type" text,
"power" text,
"torque" text
); | SELECT "torque" FROM "engines" WHERE "name"='1.9 diesel' AND "capacity"='1905 cc'; | 2-1371853-1 |
What torque does daewoo have? | CREATE TABLE "engines" (
"name" text,
"capacity" text,
"type" text,
"power" text,
"torque" text
); | SELECT "torque" FROM "engines" WHERE "type"='daewoo'; | 2-1371853-1 |
Score of 3–4, and a Attendance larger than 34,609 happened on what date? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "date" FROM "game_log" WHERE "score"='3–4' AND "attendance">'34,609'; | 2-13978258-4 |
Record of 12–15 happened on what date? | CREATE TABLE "game_log" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text
); | SELECT "date" FROM "game_log" WHERE "record"='12–15'; | 2-13978258-4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.