question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What is Country, when Score is "69-69=138", and when Player is "Ian Poulter"? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "second_round" WHERE "score"='69-69=138' AND "player"='ian poulter'; | 2-18009462-5 |
What is Score, when Country is "Scotland"? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "score" FROM "second_round" WHERE "country"='scotland'; | 2-18009462-5 |
What is Score, when Country is "United States", and when Player is "Bob Tway"? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "score" FROM "second_round" WHERE "country"='united states' AND "player"='bob tway'; | 2-18009462-5 |
What is Score, when Player is "Ernie Els"? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "score" FROM "second_round" WHERE "player"='ernie els'; | 2-18009462-5 |
What is the smallest Pick with Overall of 244? | CREATE TABLE "american_football_league" (
"year" real,
"round" real,
"pick" real,
"overall" real,
"player_name" text,
"position" text,
"afl_team" text
); | SELECT MIN("pick") FROM "american_football_league" WHERE "overall"=244; | 2-18371034-3 |
What is the smallest Pick with Overall larger than 17, a Player name of dave adams category:articles with hcards, and a Year larger than 1963? | CREATE TABLE "american_football_league" (
"year" real,
"round" real,
"pick" real,
"overall" real,
"player_name" text,
"position" text,
"afl_team" text
); | SELECT MIN("pick") FROM "american_football_league" WHERE "overall">17 AND "player_name"='dave adams category:articles with hcards' AND "year">1963; | 2-18371034-3 |
What is the greatest Year with a Player name of dave adams category:articles with hcards, and a Round smaller than 23? | CREATE TABLE "american_football_league" (
"year" real,
"round" real,
"pick" real,
"overall" real,
"player_name" text,
"position" text,
"afl_team" text
); | SELECT MAX("year") FROM "american_football_league" WHERE "player_name"='dave adams category:articles with hcards' AND "round"<23; | 2-18371034-3 |
Name the Round that has Res of win and an Opponent of demian maia? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT SUM("round") FROM "mixed_martial_arts_record" WHERE "res"='win' AND "opponent"='demian maia'; | 2-18177589-2 |
which Event that has an Opponent of kendall grove? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "event" FROM "mixed_martial_arts_record" WHERE "opponent"='kendall grove'; | 2-18177589-2 |
When has an Event of ufc 123? | CREATE TABLE "mixed_martial_arts_record" (
"res" text,
"record" text,
"opponent" text,
"method" text,
"event" text,
"round" real,
"time" text,
"location" text
); | SELECT "time" FROM "mixed_martial_arts_record" WHERE "event"='ufc 123'; | 2-18177589-2 |
The country of Laos is in what region? | CREATE TABLE "censorship_by_country" (
"country" text,
"region" text,
"fh_freepressreport" text,
"rwb_pressfreedomindex" text,
"internetlists" text,
"on_ipoliticalfiltering" text,
"on_isocialfiltering" text,
"on_isecurityfiltering" text,
"on_itoolsfiltering" text
); | SELECT "region" FROM "censorship_by_country" WHERE "country"='laos'; | 2-18100332-2 |
What is the name of the country that has internetlists of —, and ONIsecurityfiltering of —? | CREATE TABLE "censorship_by_country" (
"country" text,
"region" text,
"fh_freepressreport" text,
"rwb_pressfreedomindex" text,
"internetlists" text,
"on_ipoliticalfiltering" text,
"on_isocialfiltering" text,
"on_isecurityfiltering" text,
"on_itoolsfiltering" text
); | SELECT "country" FROM "censorship_by_country" WHERE "internetlists"='—' AND "on_isecurityfiltering"='—'; | 2-18100332-2 |
With a FHFreepressreport of 54, and ne as ONIsocialfiltering, what is the ONItoolsfiltering? | CREATE TABLE "censorship_by_country" (
"country" text,
"region" text,
"fh_freepressreport" text,
"rwb_pressfreedomindex" text,
"internetlists" text,
"on_ipoliticalfiltering" text,
"on_isocialfiltering" text,
"on_isecurityfiltering" text,
"on_itoolsfiltering" text
); | SELECT "on_itoolsfiltering" FROM "censorship_by_country" WHERE "fh_freepressreport"='54' AND "on_isocialfiltering"='ne'; | 2-18100332-2 |
What were the Results in Arizona 1 District? | CREATE TABLE "arizona" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"results" text
); | SELECT "results" FROM "arizona" WHERE "district"='arizona 1'; | 2-1805191-4 |
What Republican District had Incumbent First Elected in 2000 then Re-elected? | CREATE TABLE "arizona" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"results" text
); | SELECT "district" FROM "arizona" WHERE "party"='republican' AND "results"='re-elected' AND "first_elected"=2000; | 2-1805191-4 |
What is John Shadegg's First Elected date? | CREATE TABLE "arizona" (
"district" text,
"incumbent" text,
"party" text,
"first_elected" real,
"results" text
); | SELECT AVG("first_elected") FROM "arizona" WHERE "incumbent"='john shadegg'; | 2-1805191-4 |
On which date was the opponent lamine ouahab? | CREATE TABLE "singles_28" (
"edition" text,
"round" text,
"date" text,
"against" text,
"surface" text,
"opponent" text,
"result" text
); | SELECT "date" FROM "singles_28" WHERE "opponent"='lamine ouahab'; | 2-18042031-15 |
On what date did the match take place in a round of 1r and have a result 2–6, 5–7, 2–6? | CREATE TABLE "singles_28" (
"edition" text,
"round" text,
"date" text,
"against" text,
"surface" text,
"opponent" text,
"result" text
); | SELECT "date" FROM "singles_28" WHERE "round"='1r' AND "result"='2–6, 5–7, 2–6'; | 2-18042031-15 |
What is the result of the match in round 1r against tunisia and on a hard surface? | CREATE TABLE "singles_28" (
"edition" text,
"round" text,
"date" text,
"against" text,
"surface" text,
"opponent" text,
"result" text
); | SELECT "result" FROM "singles_28" WHERE "round"='1r' AND "surface"='hard' AND "against"='tunisia'; | 2-18042031-15 |
Who was the match against when on a clay surface during round 2r? | CREATE TABLE "singles_28" (
"edition" text,
"round" text,
"date" text,
"against" text,
"surface" text,
"opponent" text,
"result" text
); | SELECT "against" FROM "singles_28" WHERE "round"='2r' AND "surface"='clay'; | 2-18042031-15 |
What round had a amtch against cyprus and an edition of 2010 davis cup europe/africa group ii? | CREATE TABLE "singles_28" (
"edition" text,
"round" text,
"date" text,
"against" text,
"surface" text,
"opponent" text,
"result" text
); | SELECT "round" FROM "singles_28" WHERE "edition"='2010 davis cup europe/africa group ii' AND "against"='cyprus'; | 2-18042031-15 |
What is the most recent year with a time of 10.56? | CREATE TABLE "time_progression_in_the_100_m" (
"year" real,
"time" real,
"windspeed" text,
"city" text,
"date" text
); | SELECT MAX("year") FROM "time_progression_in_the_100_m" WHERE "time"=10.56; | 2-17993892-2 |
When was the game played against Astley Bridge 'a'? | CREATE TABLE "friendlies" (
"date" text,
"opponents" text,
"h_a" text,
"result_f_a" text,
"scorers" text
); | SELECT "date" FROM "friendlies" WHERE "opponents"='astley bridge ''a'''; | 2-17769324-2 |
Who was the girl of the week after nicole woodruff in the same month? | CREATE TABLE "2003" (
"week_1" text,
"week_2" text,
"week_3" text,
"week_4" text,
"week_5" text
); | SELECT "week_5" FROM "2003" WHERE "week_4"='nicole woodruff'; | 2-17993994-4 |
Who was the girl of the week 3 weeks after brianne bailey in the same month? | CREATE TABLE "2003" (
"week_1" text,
"week_2" text,
"week_3" text,
"week_4" text,
"week_5" text
); | SELECT "week_5" FROM "2003" WHERE "week_2"='brianne bailey'; | 2-17993994-4 |
Who was the girl of the week 2 weeks before terri lynn farrow in the same month? | CREATE TABLE "2003" (
"week_1" text,
"week_2" text,
"week_3" text,
"week_4" text,
"week_5" text
); | SELECT "week_2" FROM "2003" WHERE "week_4"='terri lynn farrow'; | 2-17993994-4 |
How many tries did the player have which ended with 20 Points? | CREATE TABLE "scorers" (
"player" text,
"tries" real,
"goals" text,
"field_goals" real,
"points" real
); | SELECT "tries" FROM "scorers" WHERE "points"=20; | 2-17664439-2 |
What is the highest number of points that Justin Hodges earned with 0 field goals and 0 regular goals? | CREATE TABLE "scorers" (
"player" text,
"tries" real,
"goals" text,
"field_goals" real,
"points" real
); | SELECT MAX("points") FROM "scorers" WHERE "field_goals"=0 AND "goals"='0' AND "player"='justin hodges'; | 2-17664439-2 |
What is the average Points, when Date is "February 2", and when Attendance is less than 16,874? | CREATE TABLE "regular_season" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text,
"arena" text,
"points" real
); | SELECT AVG("points") FROM "regular_season" WHERE "date"='february 2' AND "attendance"<'16,874'; | 2-17798130-7 |
What is the lowest Attendance, when Date is "February 4", and when Points is less than 57? | CREATE TABLE "regular_season" (
"date" text,
"opponent" text,
"score" text,
"loss" text,
"attendance" real,
"record" text,
"arena" text,
"points" real
); | SELECT MIN("attendance") FROM "regular_season" WHERE "date"='february 4' AND "points"<57; | 2-17798130-7 |
For a total of 1 and the sport of softball what were the years? | CREATE TABLE "state_titles" (
"school" text,
"sport" text,
"titles" text,
"years" text,
"total" text
); | SELECT "years" FROM "state_titles" WHERE "total"='1' AND "sport"='softball'; | 2-18304058-8 |
What was the total for the year of 1925? | CREATE TABLE "state_titles" (
"school" text,
"sport" text,
"titles" text,
"years" text,
"total" text
); | SELECT "total" FROM "state_titles" WHERE "years"='1925'; | 2-18304058-8 |
Which label is in a limited edition cd/dvd format? | CREATE TABLE "release_history" (
"country" text,
"date" text,
"label" text,
"format" text,
"catalogue_num" text
); | SELECT "label" FROM "release_history" WHERE "format"='limited edition cd/dvd'; | 2-18268852-4 |
What is the date for the United Kingdom with an LP format? | CREATE TABLE "release_history" (
"country" text,
"date" text,
"label" text,
"format" text,
"catalogue_num" text
); | SELECT "date" FROM "release_history" WHERE "country"='united kingdom' AND "format"='lp'; | 2-18268852-4 |
Which format is in Japan? | CREATE TABLE "release_history" (
"country" text,
"date" text,
"label" text,
"format" text,
"catalogue_num" text
); | SELECT "format" FROM "release_history" WHERE "country"='japan'; | 2-18268852-4 |
What is the format of catalog number 886973273913 (gowow012) in the United Kingdom? | CREATE TABLE "release_history" (
"country" text,
"date" text,
"label" text,
"format" text,
"catalogue_num" text
); | SELECT "format" FROM "release_history" WHERE "country"='united kingdom' AND "catalogue_num"='886973273913 (gowow012)'; | 2-18268852-4 |
Which Apps have a Club of barcelona, and a Season of 1996/97, and a Rank smaller than 7? | CREATE TABLE "most_goals_in_a_la_liga_season_at_least_" (
"rank" real,
"club" text,
"season" text,
"goals" real,
"apps" real
); | SELECT MIN("apps") FROM "most_goals_in_a_la_liga_season_at_least_" WHERE "club"='barcelona' AND "season"='1996/97' AND "rank"<7; | 2-17937080-2 |
Which Season has a Club of real madrid, and a Rank smaller than 6, and less than 121 goals? | CREATE TABLE "most_goals_in_a_la_liga_season_at_least_" (
"rank" real,
"club" text,
"season" text,
"goals" real,
"apps" real
); | SELECT "season" FROM "most_goals_in_a_la_liga_season_at_least_" WHERE "club"='real madrid' AND "rank"<6 AND "goals"<121; | 2-17937080-2 |
How many Apps have a Rank larger than 2, and Goals smaller than 102? | CREATE TABLE "most_goals_in_a_la_liga_season_at_least_" (
"rank" real,
"club" text,
"season" text,
"goals" real,
"apps" real
); | SELECT SUM("apps") FROM "most_goals_in_a_la_liga_season_at_least_" WHERE "rank">2 AND "goals"<102; | 2-17937080-2 |
Which Season has a Rank smaller than 4, and a Club of barcelona, and less than 115 goals? | CREATE TABLE "most_goals_in_a_la_liga_season_at_least_" (
"rank" real,
"club" text,
"season" text,
"goals" real,
"apps" real
); | SELECT "season" FROM "most_goals_in_a_la_liga_season_at_least_" WHERE "rank"<4 AND "club"='barcelona' AND "goals"<115; | 2-17937080-2 |
What player has a 147 total from Spain? | CREATE TABLE "missed_the_cut" (
"player" text,
"country" text,
"year_s_won" text,
"total" real,
"to_par" real
); | SELECT "player" FROM "missed_the_cut" WHERE "total"=147 AND "country"='spain'; | 2-18027810-3 |
What year was the 146 total? | CREATE TABLE "missed_the_cut" (
"player" text,
"country" text,
"year_s_won" text,
"total" real,
"to_par" real
); | SELECT "year_s_won" FROM "missed_the_cut" WHERE "total"=146; | 2-18027810-3 |
What country is Paul Lawrie from? | CREATE TABLE "missed_the_cut" (
"player" text,
"country" text,
"year_s_won" text,
"total" real,
"to_par" real
); | SELECT "country" FROM "missed_the_cut" WHERE "player"='paul lawrie'; | 2-18027810-3 |
Which Fuel has an Engine of 4cyl, and a 0–100km/h, s of 11.3? | CREATE TABLE "engines" (
"name" text,
"volume" text,
"engine" text,
"fuel" text,
"output" text,
"torque" text,
"engine_id_code_s" text,
"0_100km_h_s" real,
"top_speed" text,
"co_2" text,
"years" text
); | SELECT "fuel" FROM "engines" WHERE "engine"='4cyl' AND "0_100km_h_s"=11.3; | 2-17941111-2 |
Which Fuel has an Output of ps (kw; hp) @6000 rpm? | CREATE TABLE "engines" (
"name" text,
"volume" text,
"engine" text,
"fuel" text,
"output" text,
"torque" text,
"engine_id_code_s" text,
"0_100km_h_s" real,
"top_speed" text,
"co_2" text,
"years" text
); | SELECT "fuel" FROM "engines" WHERE "output"='ps (kw; hp) @6000 rpm'; | 2-17941111-2 |
Which Torque has a Volume of 1896 cc, and a CO 2 of 140 g/km? | CREATE TABLE "engines" (
"name" text,
"volume" text,
"engine" text,
"fuel" text,
"output" text,
"torque" text,
"engine_id_code_s" text,
"0_100km_h_s" real,
"top_speed" text,
"co_2" text,
"years" text
); | SELECT "torque" FROM "engines" WHERE "volume"='1896 cc' AND "co_2"='140 g/km'; | 2-17941111-2 |
How much 0–100km/h, s has a Fuel of diesel, and a Torque of n·m (lb·ft) @1900 rpm, and an Engine ID code(s) of agr/alh? | CREATE TABLE "engines" (
"name" text,
"volume" text,
"engine" text,
"fuel" text,
"output" text,
"torque" text,
"engine_id_code_s" text,
"0_100km_h_s" real,
"top_speed" text,
"co_2" text,
"years" text
); | SELECT COUNT("0_100km_h_s") FROM "engines" WHERE "fuel"='diesel' AND "torque"='n·m (lb·ft) @1900 rpm' AND "engine_id_code_s"='agr/alh'; | 2-17941111-2 |
Which CO 2 has an Output of ps (kw; hp) @4000 rpm, and a 0–100km/h, s smaller than 11.1? | CREATE TABLE "engines" (
"name" text,
"volume" text,
"engine" text,
"fuel" text,
"output" text,
"torque" text,
"engine_id_code_s" text,
"0_100km_h_s" real,
"top_speed" text,
"co_2" text,
"years" text
); | SELECT "co_2" FROM "engines" WHERE "output"='ps (kw; hp) @4000 rpm' AND "0_100km_h_s"<11.1; | 2-17941111-2 |
What Venue has a Year smaller than 1986, and a Position of 6th? | CREATE TABLE "achievements" (
"year" real,
"competition" text,
"venue" text,
"position" text,
"event" text,
"time" text
); | SELECT "venue" FROM "achievements" WHERE "year"<1986 AND "position"='6th'; | 2-18125937-1 |
What Position has a Time of 3:01.78? | CREATE TABLE "achievements" (
"year" real,
"competition" text,
"venue" text,
"position" text,
"event" text,
"time" text
); | SELECT "position" FROM "achievements" WHERE "time"='3:01.78'; | 2-18125937-1 |
What Event has a Competition of world championships? | CREATE TABLE "achievements" (
"year" real,
"competition" text,
"venue" text,
"position" text,
"event" text,
"time" text
); | SELECT "event" FROM "achievements" WHERE "competition"='world championships'; | 2-18125937-1 |
What Time has a Year of 1984? | CREATE TABLE "achievements" (
"year" real,
"competition" text,
"venue" text,
"position" text,
"event" text,
"time" text
); | SELECT "time" FROM "achievements" WHERE "year"=1984; | 2-18125937-1 |
What Competition has a Year smaller than 1983? | CREATE TABLE "achievements" (
"year" real,
"competition" text,
"venue" text,
"position" text,
"event" text,
"time" text
); | SELECT "competition" FROM "achievements" WHERE "year"<1983; | 2-18125937-1 |
What is the Weight of the Senior Player with a Height of 6–10? | CREATE TABLE "roster" (
"name" text,
"position" text,
"height" text,
"weight" real,
"year" text,
"home_town" text
); | SELECT SUM("weight") FROM "roster" WHERE "year"='senior' AND "height"='6–10'; | 2-17728794-2 |
What is the Year of the Player with a Weight of 230 or less from San Antonio, Texas? | CREATE TABLE "roster" (
"name" text,
"position" text,
"height" text,
"weight" real,
"year" text,
"home_town" text
); | SELECT "year" FROM "roster" WHERE "weight"<230 AND "home_town"='san antonio, texas'; | 2-17728794-2 |
What is the Height of the Sophomore Guard weighing 185? | CREATE TABLE "roster" (
"name" text,
"position" text,
"height" text,
"weight" real,
"year" text,
"home_town" text
); | SELECT "height" FROM "roster" WHERE "year"='sophomore' AND "position"='guard' AND "weight"=185; | 2-17728794-2 |
What is the Year of the Player weighing 185? | CREATE TABLE "roster" (
"name" text,
"position" text,
"height" text,
"weight" real,
"year" text,
"home_town" text
); | SELECT "year" FROM "roster" WHERE "weight"=185; | 2-17728794-2 |
Which club is located in Thomson, Victoria? | CREATE TABLE "former" (
"club" text,
"nickname" text,
"location" text,
"gfl_premierships" text,
"years_in_gfl" text
); | SELECT "club" FROM "former" WHERE "location"='thomson, victoria'; | 2-17982112-2 |
What is the nickname of the team who was in the GFL from 1986-1988? | CREATE TABLE "former" (
"club" text,
"nickname" text,
"location" text,
"gfl_premierships" text,
"years_in_gfl" text
); | SELECT "nickname" FROM "former" WHERE "years_in_gfl"='1986-1988'; | 2-17982112-2 |
Which location did the Tigers have? | CREATE TABLE "former" (
"club" text,
"nickname" text,
"location" text,
"gfl_premierships" text,
"years_in_gfl" text
); | SELECT "location" FROM "former" WHERE "nickname"='tigers'; | 2-17982112-2 |
What was the nickname of the team in the Geelong West Cricket & Football Club? | CREATE TABLE "former" (
"club" text,
"nickname" text,
"location" text,
"gfl_premierships" text,
"years_in_gfl" text
); | SELECT "nickname" FROM "former" WHERE "club"='geelong west cricket & football club'; | 2-17982112-2 |
What GLF Premiership did the Magpies have? | CREATE TABLE "former" (
"club" text,
"nickname" text,
"location" text,
"gfl_premierships" text,
"years_in_gfl" text
); | SELECT "gfl_premierships" FROM "former" WHERE "nickname"='magpies'; | 2-17982112-2 |
What was the nickname of the team in the East Geelong club? | CREATE TABLE "former" (
"club" text,
"nickname" text,
"location" text,
"gfl_premierships" text,
"years_in_gfl" text
); | SELECT "nickname" FROM "former" WHERE "club"='east geelong'; | 2-17982112-2 |
What year has a winning finish of T27? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" text,
"total" real,
"to_par" text,
"finish" text
); | SELECT "year_s_won" FROM "made_the_cut" WHERE "finish"='t27'; | 2-18116595-2 |
What was the finish for England? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" text,
"total" real,
"to_par" text,
"finish" text
); | SELECT "finish" FROM "made_the_cut" WHERE "country"='england'; | 2-18116595-2 |
What county won in 1991? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" text,
"total" real,
"to_par" text,
"finish" text
); | SELECT "country" FROM "made_the_cut" WHERE "year_s_won"='1991'; | 2-18116595-2 |
What is the highest total to par of +9? | CREATE TABLE "made_the_cut" (
"player" text,
"country" text,
"year_s_won" text,
"total" real,
"to_par" text,
"finish" text
); | SELECT MAX("total") FROM "made_the_cut" WHERE "to_par"='+9'; | 2-18116595-2 |
What Status has Against of 12? | CREATE TABLE "1990" (
"opposing_teams" text,
"against" real,
"date" text,
"venue" text,
"status" text
); | SELECT "status" FROM "1990" WHERE "against"=12; | 2-18178534-1 |
What Venue has a Date of 17/03/1990? | CREATE TABLE "1990" (
"opposing_teams" text,
"against" real,
"date" text,
"venue" text,
"status" text
); | SELECT "venue" FROM "1990" WHERE "date"='17/03/1990'; | 2-18178534-1 |
How many weeks had an Attendance of 43,272? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT COUNT("week") FROM "schedule" WHERE "attendance"='43,272'; | 2-17860844-2 |
Who played on december 12, 1993? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "opponent" FROM "schedule" WHERE "date"='december 12, 1993'; | 2-17860844-2 |
What day was United States the opposing team? | CREATE TABLE "matches" (
"opposing_team" text,
"against" real,
"date" text,
"venue" text,
"status" text,
"report" text
); | SELECT "date" FROM "matches" WHERE "opposing_team"='united states'; | 2-18055887-1 |
What was the opposing team for the second test? | CREATE TABLE "matches" (
"opposing_team" text,
"against" real,
"date" text,
"venue" text,
"status" text,
"report" text
); | SELECT "opposing_team" FROM "matches" WHERE "status"='second test'; | 2-18055887-1 |
What was the opposing team for the second test? | CREATE TABLE "matches" (
"opposing_team" text,
"against" real,
"date" text,
"venue" text,
"status" text,
"report" text
); | SELECT "opposing_team" FROM "matches" WHERE "status"='second test'; | 2-18055887-1 |
What round was in canberra stadium? | CREATE TABLE "club_and_player_records" (
"team" text,
"opponent" text,
"score" text,
"venue" text,
"round" text
); | SELECT "round" FROM "club_and_player_records" WHERE "venue"='canberra stadium'; | 2-17678435-10 |
What is the venue of the match with cronulla sharks as the opponent? | CREATE TABLE "club_and_player_records" (
"team" text,
"opponent" text,
"score" text,
"venue" text,
"round" text
); | SELECT "venue" FROM "club_and_player_records" WHERE "opponent"='cronulla sharks'; | 2-17678435-10 |
Who is the opponent at toyota stadium? | CREATE TABLE "club_and_player_records" (
"team" text,
"opponent" text,
"score" text,
"venue" text,
"round" text
); | SELECT "opponent" FROM "club_and_player_records" WHERE "venue"='toyota stadium'; | 2-17678435-10 |
What is the score of the match with the sydney roosters as the opponent? | CREATE TABLE "club_and_player_records" (
"team" text,
"opponent" text,
"score" text,
"venue" text,
"round" text
); | SELECT "score" FROM "club_and_player_records" WHERE "opponent"='sydney roosters'; | 2-17678435-10 |
What is the venue of the match with the cronulla sharks as the opponent? | CREATE TABLE "club_and_player_records" (
"team" text,
"opponent" text,
"score" text,
"venue" text,
"round" text
); | SELECT "venue" FROM "club_and_player_records" WHERE "opponent"='cronulla sharks'; | 2-17678435-10 |
What Location Attendance has a Game of 4? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "game_log" WHERE "game"='4'; | 2-18206835-5 |
What Date has a Location Attendance of reunion arena? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "game_log" WHERE "location_attendance"='reunion arena'; | 2-18206835-5 |
What Record has a Location Attendance of delta center, and an Opponent of vs vancouver grizzlies? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "game_log" WHERE "location_attendance"='delta center' AND "opponent"='vs vancouver grizzlies'; | 2-18206835-5 |
What Location Attendance has an Opponent of at denver nuggets? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "game_log" WHERE "opponent"='at denver nuggets'; | 2-18206835-5 |
What Record has an Opponent of vs washington wizards? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "game_log" WHERE "opponent"='vs washington wizards'; | 2-18206835-5 |
What Location Attendance has a Game of 14? | CREATE TABLE "game_log" (
"game" text,
"date" text,
"opponent" text,
"score" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "game_log" WHERE "game"='14'; | 2-18206835-5 |
What was the final score of the game against shingo kunieda maikel scheffers when robin ammerlaan was Ronald Vink's partner? | CREATE TABLE "runner_ups_5" (
"year" real,
"championship" text,
"partnering" text,
"opponents_in_final" text,
"score_in_final" text
); | SELECT "score_in_final" FROM "runner_ups_5" WHERE "partnering"='robin ammerlaan' AND "opponents_in_final"='shingo kunieda maikel scheffers'; | 2-17773978-2 |
What championship tournament did Ronald Vink play in with maikel scheffers as his partner in 2007 against stephane houdet nicolas peiffer? | CREATE TABLE "runner_ups_5" (
"year" real,
"championship" text,
"partnering" text,
"opponents_in_final" text,
"score_in_final" text
); | SELECT "championship" FROM "runner_ups_5" WHERE "partnering"='maikel scheffers' AND "year">2007 AND "opponents_in_final"='stephane houdet nicolas peiffer'; | 2-17773978-2 |
What is the screen size of the s45 (Australia only) Model with no bluetooth? | CREATE TABLE "previous_models" (
"model" text,
"screen_size" text,
"bluetooth" text,
"fm_transmitter" text,
"flash" text
); | SELECT "screen_size" FROM "previous_models" WHERE "bluetooth"='no' AND "model"='s45 (australia only)'; | 2-1811477-5 |
Does the S90i model have bluetooth? | CREATE TABLE "previous_models" (
"model" text,
"screen_size" text,
"bluetooth" text,
"fm_transmitter" text,
"flash" text
); | SELECT "bluetooth" FROM "previous_models" WHERE "model"='s90i'; | 2-1811477-5 |
Does the s35 model have bluetooth? | CREATE TABLE "previous_models" (
"model" text,
"screen_size" text,
"bluetooth" text,
"fm_transmitter" text,
"flash" text
); | SELECT "bluetooth" FROM "previous_models" WHERE "model"='s35'; | 2-1811477-5 |
What is the height for club Havk Mladost? | CREATE TABLE "croatia" (
"name" text,
"pos" text,
"height" text,
"weight" text,
"date_of_birth" text,
"club" text
); | SELECT "height" FROM "croatia" WHERE "club"='havk mladost'; | 2-17759945-3 |
What is the height for Nikola Franković? | CREATE TABLE "croatia" (
"name" text,
"pos" text,
"height" text,
"weight" text,
"date_of_birth" text,
"club" text
); | SELECT "height" FROM "croatia" WHERE "name"='nikola franković'; | 2-17759945-3 |
What is the weight of Damir Burić? | CREATE TABLE "croatia" (
"name" text,
"pos" text,
"height" text,
"weight" text,
"date_of_birth" text,
"club" text
); | SELECT "weight" FROM "croatia" WHERE "name"='damir burić'; | 2-17759945-3 |
What is Total, when Rank Points is "15", and when Event is "WC Beijing"? | CREATE TABLE "qualification" (
"shooter" text,
"event" text,
"rank_points" text,
"score_points" text,
"total" text
); | SELECT "total" FROM "qualification" WHERE "rank_points"='15' AND "event"='wc beijing'; | 2-18191407-20 |
What is Score Points, when Event is "WC Rio De Janeiro", and when Rank Points is "10"? | CREATE TABLE "qualification" (
"shooter" text,
"event" text,
"rank_points" text,
"score_points" text,
"total" text
); | SELECT "score_points" FROM "qualification" WHERE "event"='wc rio de janeiro' AND "rank_points"='10'; | 2-18191407-20 |
What is Shooter, when Total is "21"? | CREATE TABLE "qualification" (
"shooter" text,
"event" text,
"rank_points" text,
"score_points" text,
"total" text
); | SELECT "shooter" FROM "qualification" WHERE "total"='21'; | 2-18191407-20 |
What is Score Points, when Shooter is "Sandra Kolly ( SUI )"? | CREATE TABLE "qualification" (
"shooter" text,
"event" text,
"rank_points" text,
"score_points" text,
"total" text
); | SELECT "score_points" FROM "qualification" WHERE "shooter"='sandra kolly ( sui )'; | 2-18191407-20 |
What is Rank Points, when Event is "WC Milan", and when Shooter is "Lalita Yauhleuskaya ( AUS )"? | CREATE TABLE "qualification" (
"shooter" text,
"event" text,
"rank_points" text,
"score_points" text,
"total" text
); | SELECT "rank_points" FROM "qualification" WHERE "event"='wc milan' AND "shooter"='lalita yauhleuskaya ( aus )'; | 2-18191407-20 |
What is Rank Points, when Total is "17", and when Shooter is "Lalita Yauhleuskaya ( AUS )"? | CREATE TABLE "qualification" (
"shooter" text,
"event" text,
"rank_points" text,
"score_points" text,
"total" text
); | SELECT "rank_points" FROM "qualification" WHERE "total"='17' AND "shooter"='lalita yauhleuskaya ( aus )'; | 2-18191407-20 |
Which Artist is listed as having Top 6 in Week | CREATE TABLE "list_of_performances_on" (
"week" text,
"theme" text,
"song_sung" text,
"artist" text,
"status" text
); | SELECT "artist" FROM "list_of_performances_on" WHERE "week"='top 6'; | 2-1792668-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.