question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What score did Ed Furgol get to come in at T6? | CREATE TABLE "third_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" real
); | SELECT "score" FROM "third_round" WHERE "place"='t6' AND "player"='ed furgol'; | 2-17290135-3 |
What score did Ted Kroll get to come in at T2? | CREATE TABLE "third_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" real
); | SELECT "score" FROM "third_round" WHERE "place"='t2' AND "player"='ted kroll'; | 2-17290135-3 |
Where is Fred Haas from? | CREATE TABLE "third_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" real
); | SELECT "country" FROM "third_round" WHERE "player"='fred haas'; | 2-17290135-3 |
Where is Fred Haas from? | CREATE TABLE "third_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" real
); | SELECT "country" FROM "third_round" WHERE "player"='fred haas'; | 2-17290135-3 |
What is Position, when School/Club Team is McMaster? | CREATE TABLE "cfl_draft" (
"round" real,
"pick" text,
"player" text,
"position" text,
"school_club_team" text
); | SELECT "position" FROM "cfl_draft" WHERE "school_club_team"='mcmaster'; | 2-16912045-1 |
What is the lowest Round, when Pick is 9 (via Hamilton)? | CREATE TABLE "cfl_draft" (
"round" real,
"pick" text,
"player" text,
"position" text,
"school_club_team" text
); | SELECT MIN("round") FROM "cfl_draft" WHERE "pick"='9 (via hamilton)'; | 2-16912045-1 |
What is Pick, when Position is OL, and when Round is less than 6? | CREATE TABLE "cfl_draft" (
"round" real,
"pick" text,
"player" text,
"position" text,
"school_club_team" text
); | SELECT "pick" FROM "cfl_draft" WHERE "position"='ol' AND "round"<6; | 2-16912045-1 |
What is School/Club Team, when Pick is 9 (via Hamilton)? | CREATE TABLE "cfl_draft" (
"round" real,
"pick" text,
"player" text,
"position" text,
"school_club_team" text
); | SELECT "school_club_team" FROM "cfl_draft" WHERE "pick"='9 (via hamilton)'; | 2-16912045-1 |
What is the Result of the game with an Attendance of 55,353? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "attendance"='55,353'; | 2-16779943-2 |
In what Week was the Attendance 39,923? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT SUM("week") FROM "schedule" WHERE "attendance"='39,923'; | 2-16779943-2 |
What was the Result of the game after Week 9 with an Attendance of 69,714? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT "result" FROM "schedule" WHERE "week">9 AND "attendance"='69,714'; | 2-16779943-2 |
What Week falls on September 4, 1994? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" text
); | SELECT AVG("week") FROM "schedule" WHERE "date"='september 4, 1994'; | 2-16779943-2 |
What is Pos., when Player is "Nigel De Jong"? | CREATE TABLE "first_team" (
"date" text,
"pos" text,
"player" text,
"from_club" text,
"transfer_fee" text
); | SELECT "pos" FROM "first_team" WHERE "player"='nigel de jong'; | 2-17370522-14 |
What is From Club, when Player is "Robinho"? | CREATE TABLE "first_team" (
"date" text,
"pos" text,
"player" text,
"from_club" text,
"transfer_fee" text
); | SELECT "from_club" FROM "first_team" WHERE "player"='robinho'; | 2-17370522-14 |
What is Pos., when From Club is "CSKA Moscow"? | CREATE TABLE "first_team" (
"date" text,
"pos" text,
"player" text,
"from_club" text,
"transfer_fee" text
); | SELECT "pos" FROM "first_team" WHERE "from_club"='cska moscow'; | 2-17370522-14 |
What is Pos., when From Club is "Chelsea", and when Date is "30 July 2008"? | CREATE TABLE "first_team" (
"date" text,
"pos" text,
"player" text,
"from_club" text,
"transfer_fee" text
); | SELECT "pos" FROM "first_team" WHERE "from_club"='chelsea' AND "date"='30 july 2008'; | 2-17370522-14 |
What is the team 2 for the match with a team 1 of Panathinaikos? | CREATE TABLE "round_of_16" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "team_2" FROM "round_of_16" WHERE "team_1"='panathinaikos'; | 2-16623894-37 |
What was the first leg score for the match with a team 1 of Panathinaikos? | CREATE TABLE "round_of_16" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "1st_leg" FROM "round_of_16" WHERE "team_1"='panathinaikos'; | 2-16623894-37 |
What is the 2nd leg score for the match with a team 2 of Werder Bremen? | CREATE TABLE "round_of_16" (
"team_1" text,
"agg" text,
"team_2" text,
"1st_leg" text,
"2nd_leg" text
); | SELECT "2nd_leg" FROM "round_of_16" WHERE "team_2"='werder bremen'; | 2-16623894-37 |
Who is the kitmaker for Fc Augsburg? | CREATE TABLE "personnel_and_sponsoring" (
"team" text,
"head_coach" text,
"team_captain" text,
"kitmaker" text,
"shirt_sponsor" text
); | SELECT "kitmaker" FROM "personnel_and_sponsoring" WHERE "team"='fc augsburg'; | 2-17327260-2 |
Who is the head coach of the team, whose shirt sponsor is karstadt quelle versicherungen? | CREATE TABLE "personnel_and_sponsoring" (
"team" text,
"head_coach" text,
"team_captain" text,
"kitmaker" text,
"shirt_sponsor" text
); | SELECT "head_coach" FROM "personnel_and_sponsoring" WHERE "shirt_sponsor"='karstadt quelle versicherungen'; | 2-17327260-2 |
Who is the kitmaker for the team that Uwe Rapolder is the head coach of. | CREATE TABLE "personnel_and_sponsoring" (
"team" text,
"head_coach" text,
"team_captain" text,
"kitmaker" text,
"shirt_sponsor" text
); | SELECT "kitmaker" FROM "personnel_and_sponsoring" WHERE "head_coach"='uwe rapolder'; | 2-17327260-2 |
Who is the team captain of the team that Lübzer is the shirt sponsor for? | CREATE TABLE "personnel_and_sponsoring" (
"team" text,
"head_coach" text,
"team_captain" text,
"kitmaker" text,
"shirt_sponsor" text
); | SELECT "team_captain" FROM "personnel_and_sponsoring" WHERE "shirt_sponsor"='lübzer'; | 2-17327260-2 |
Who is the shirt sponsor of the team Andreas Wolf is the captain of? | CREATE TABLE "personnel_and_sponsoring" (
"team" text,
"head_coach" text,
"team_captain" text,
"kitmaker" text,
"shirt_sponsor" text
); | SELECT "shirt_sponsor" FROM "personnel_and_sponsoring" WHERE "team_captain"='andreas wolf'; | 2-17327260-2 |
Who is the shirt sponsor for the team Daniel Thioune captains? | CREATE TABLE "personnel_and_sponsoring" (
"team" text,
"head_coach" text,
"team_captain" text,
"kitmaker" text,
"shirt_sponsor" text
); | SELECT "shirt_sponsor" FROM "personnel_and_sponsoring" WHERE "team_captain"='daniel thioune'; | 2-17327260-2 |
What was the date of the game number 22? | CREATE TABLE "season_schedule" (
"game" real,
"date" text,
"team" text,
"score" text,
"record" text,
"streak" text
); | SELECT "date" FROM "season_schedule" WHERE "game"=22; | 2-17064508-4 |
What is the Director from Paramount with a Film with a Gross of $128,152,301? | CREATE TABLE "highest_grossing_films_u_s" (
"rank" real,
"title" text,
"studio" text,
"director" text,
"gross" text
); | SELECT "director" FROM "highest_grossing_films_u_s" WHERE "studio"='paramount' AND "gross"='$128,152,301'; | 2-171292-1 |
What is the Studio of the Rank 10 Film? | CREATE TABLE "highest_grossing_films_u_s" (
"rank" real,
"title" text,
"studio" text,
"director" text,
"gross" text
); | SELECT "studio" FROM "highest_grossing_films_u_s" WHERE "rank"=10; | 2-171292-1 |
What is the source of the poll that had Republican: Dino Rossi at 46%, Democrat: Christine Gregoire at 50%, and the lead margin was larger than 3? | CREATE TABLE "opinion_polling_for_the_united_states_gu" (
"source" text,
"dates_administered" text,
"democrat_christine_gregoire" text,
"republican_dino_rossi" text,
"lead_margin" real
); | SELECT "source" FROM "opinion_polling_for_the_united_states_gu" WHERE "republican_dino_rossi"='46%' AND "lead_margin">3 AND "democrat_christine_gregoire"='50%'; | 2-17538810-7 |
What was the percentage for Republican: Dino Rossi when Democrat: Christine Gregoire polled at 53.7% and the lead margin was larger than 7? | CREATE TABLE "opinion_polling_for_the_united_states_gu" (
"source" text,
"dates_administered" text,
"democrat_christine_gregoire" text,
"republican_dino_rossi" text,
"lead_margin" real
); | SELECT "republican_dino_rossi" FROM "opinion_polling_for_the_united_states_gu" WHERE "lead_margin">7 AND "democrat_christine_gregoire"='53.7%'; | 2-17538810-7 |
What is the release date of the album written by Ford, Phil Phil Ford under BBC Audio? | CREATE TABLE "list_of_doctor_who_audio_releases" (
"title" text,
"writer" text,
"format" text,
"company" text,
"release_date" text
); | SELECT "release_date" FROM "list_of_doctor_who_audio_releases" WHERE "company"='bbc audio' AND "writer"='ford, phil phil ford'; | 2-1681535-3 |
What is the release date of the album written by Goss, James James Goss under Audiogo? | CREATE TABLE "list_of_doctor_who_audio_releases" (
"title" text,
"writer" text,
"format" text,
"company" text,
"release_date" text
); | SELECT "release_date" FROM "list_of_doctor_who_audio_releases" WHERE "writer"='goss, james james goss' AND "company"='audiogo'; | 2-1681535-3 |
Who is the company that released the album on 2008-09-18 18 September 2008? | CREATE TABLE "list_of_doctor_who_audio_releases" (
"title" text,
"writer" text,
"format" text,
"company" text,
"release_date" text
); | SELECT "company" FROM "list_of_doctor_who_audio_releases" WHERE "release_date"='2008-09-18 18 september 2008'; | 2-1681535-3 |
Notre-Dame-De-Lourdes has what average area km 2? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" real,
"population" real,
"census_ranking" text
); | SELECT AVG("area_km_2") FROM "parishes" WHERE "official_name"='notre-dame-de-lourdes'; | 2-171250-2 |
Saint-Jacques has what as the area km 2? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" real,
"population" real,
"census_ranking" text
); | SELECT "area_km_2" FROM "parishes" WHERE "official_name"='saint-jacques'; | 2-171250-2 |
With an area km 2 of 343.95 what is the official name? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" real,
"population" real,
"census_ranking" text
); | SELECT "official_name" FROM "parishes" WHERE "area_km_2"=343.95; | 2-171250-2 |
Saint-Basile has what status? | CREATE TABLE "parishes" (
"official_name" text,
"status" text,
"area_km_2" real,
"population" real,
"census_ranking" text
); | SELECT "status" FROM "parishes" WHERE "official_name"='saint-basile'; | 2-171250-2 |
What circuit has qualifying as the session? | CREATE TABLE "y" (
"discipline" text,
"circuit" text,
"event" text,
"session" text,
"cause" text
); | SELECT "circuit" FROM "y" WHERE "session"='qualifying'; | 2-1632486-23 |
The 1997 Japanese Formula 3 Championship is part of what circuit? | CREATE TABLE "y" (
"discipline" text,
"circuit" text,
"event" text,
"session" text,
"cause" text
); | SELECT "circuit" FROM "y" WHERE "event"='1997 japanese formula 3 championship'; | 2-1632486-23 |
The Fall Nationals has what sessions? | CREATE TABLE "y" (
"discipline" text,
"circuit" text,
"event" text,
"session" text,
"cause" text
); | SELECT "session" FROM "y" WHERE "event"='fall nationals'; | 2-1632486-23 |
The 1977 Japanese Grand Prix in the open wheel discipline has what session? | CREATE TABLE "y" (
"discipline" text,
"circuit" text,
"event" text,
"session" text,
"cause" text
); | SELECT "session" FROM "y" WHERE "discipline"='open wheel' AND "event"='1977 japanese grand prix'; | 2-1632486-23 |
What circuit has a race for the session, and open wheel as the discipline, and the 1977 Japanese Grand Prix as the event? | CREATE TABLE "y" (
"discipline" text,
"circuit" text,
"event" text,
"session" text,
"cause" text
); | SELECT "circuit" FROM "y" WHERE "session"='race' AND "discipline"='open wheel' AND "event"='1977 japanese grand prix'; | 2-1632486-23 |
For what cause is Touring Car Racing the discipline? | CREATE TABLE "y" (
"discipline" text,
"circuit" text,
"event" text,
"session" text,
"cause" text
); | SELECT "cause" FROM "y" WHERE "discipline"='touring car racing'; | 2-1632486-23 |
What player scored 70-73-69-72=284? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT "player" FROM "final_leaderboard" WHERE "score"='70-73-69-72=284'; | 2-16488699-1 |
What is the lowest amount of money that Craig Stadler won? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT MIN("money") FROM "final_leaderboard" WHERE "player"='craig stadler'; | 2-16488699-1 |
What country is David Graham from? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT "country" FROM "final_leaderboard" WHERE "player"='david graham'; | 2-16488699-1 |
What is the total amount of money that the United States one with a To par of –2? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT COUNT("money") FROM "final_leaderboard" WHERE "country"='united states' AND "to_par"='–2'; | 2-16488699-1 |
What score did Jack Nicklaus have when he placed t6? | CREATE TABLE "final_leaderboard" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT "score" FROM "final_leaderboard" WHERE "place"='t6' AND "player"='jack nicklaus'; | 2-16488699-1 |
How much money has a to par of E? | CREATE TABLE "final_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text,
"money" real
); | SELECT COUNT("money") FROM "final_round" WHERE "to_par"='e'; | 2-17245444-6 |
What was the location on October 16? | CREATE TABLE "1930s_giants_11_3" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "location" FROM "1930s_giants_11_3" WHERE "date"='october 16'; | 2-16900662-2 |
Who was the winner when the result was 56-0 before 1935? | CREATE TABLE "1930s_giants_11_3" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "winner" FROM "1930s_giants_11_3" WHERE "year"<1935 AND "result"='56-0'; | 2-16900662-2 |
Who was the winner in philadelphia municipal stadium in 1939? | CREATE TABLE "1930s_giants_11_3" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "winner" FROM "1930s_giants_11_3" WHERE "location"='philadelphia municipal stadium' AND "year"=1939; | 2-16900662-2 |
What was the earliest year that the result 21-17? | CREATE TABLE "1930s_giants_11_3" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT MIN("year") FROM "1930s_giants_11_3" WHERE "result"='21-17'; | 2-16900662-2 |
What was the location after 1934 that Philadelphia Eagles lost on October 15? | CREATE TABLE "1930s_giants_11_3" (
"year" real,
"date" text,
"winner" text,
"result" text,
"loser" text,
"location" text
); | SELECT "location" FROM "1930s_giants_11_3" WHERE "year">1934 AND "loser"='philadelphia eagles' AND "date"='october 15'; | 2-16900662-2 |
When did chang myon (장면) leave office? | CREATE TABLE "republic_of_korea_1948_presents" (
"president" text,
"vice" real,
"romanized_hangul" text,
"took_office" text,
"left_office" text,
"political_party" text
); | SELECT "left_office" FROM "republic_of_korea_1948_presents" WHERE "romanized_hangul"='chang myon (장면)'; | 2-1712482-2 |
When did the vice president with a vice over 6 take office? | CREATE TABLE "republic_of_korea_1948_presents" (
"president" text,
"vice" real,
"romanized_hangul" text,
"took_office" text,
"left_office" text,
"political_party" text
); | SELECT "took_office" FROM "republic_of_korea_1948_presents" WHERE "vice">6; | 2-1712482-2 |
What province in Tumbes has less than 11 districts and a UBIGEO of 2401? | CREATE TABLE "provinces_table" (
"province" text,
"region" text,
"capital" text,
"districts" real,
"ubigeo" real
); | SELECT "province" FROM "provinces_table" WHERE "districts"<11 AND "region"='tumbes' AND "ubigeo"=2401; | 2-1672804-1 |
What is Chepén's average UBIGEO? | CREATE TABLE "provinces_table" (
"province" text,
"region" text,
"capital" text,
"districts" real,
"ubigeo" real
); | SELECT AVG("ubigeo") FROM "provinces_table" WHERE "province"='chepén'; | 2-1672804-1 |
What is the region for Chepén with 3 districts? | CREATE TABLE "provinces_table" (
"province" text,
"region" text,
"capital" text,
"districts" real,
"ubigeo" real
); | SELECT "region" FROM "provinces_table" WHERE "districts"=3 AND "capital"='chepén'; | 2-1672804-1 |
What is the Diameter (km) of the Valle with a Longitude of 152.5e named before 1997? | CREATE TABLE "valles" (
"name" text,
"latitude" text,
"longitude" text,
"diameter_km" real,
"year_named" real
); | SELECT MAX("diameter_km") FROM "valles" WHERE "longitude"='152.5e' AND "year_named"<1997; | 2-16799784-1 |
What is the Year named of the Ganga Valles? | CREATE TABLE "valles" (
"name" text,
"latitude" text,
"longitude" text,
"diameter_km" real,
"year_named" real
); | SELECT MAX("year_named") FROM "valles" WHERE "name"='ganga valles'; | 2-16799784-1 |
What is the Latitude of the Alajen Vallis named after 1997? | CREATE TABLE "valles" (
"name" text,
"latitude" text,
"longitude" text,
"diameter_km" real,
"year_named" real
); | SELECT "latitude" FROM "valles" WHERE "year_named">1997 AND "name"='alajen vallis'; | 2-16799784-1 |
What is the release date with par116 as the cat. #? | CREATE TABLE "releases" (
"cat_num" text,
"artist" text,
"title" text,
"release_date" text,
"format" text,
"other_information" text
); | SELECT "release_date" FROM "releases" WHERE "cat_num"='par116'; | 2-16859758-1 |
What is the title released on 24 July 2005? | CREATE TABLE "releases" (
"cat_num" text,
"artist" text,
"title" text,
"release_date" text,
"format" text,
"other_information" text
); | SELECT "title" FROM "releases" WHERE "release_date"='24 july 2005'; | 2-16859758-1 |
What is Record, when High Points is "Thaddeus Young (19)", and when Team is "@ Orlando"? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "game_log" WHERE "high_points"='thaddeus young (19)' AND "team"='@ orlando'; | 2-17323042-5 |
What is High Rebounds, when Location Attendance is "Time Warner Cable Arena 10,848"? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"location_attendance" text,
"record" text
); | SELECT "high_rebounds" FROM "game_log" WHERE "location_attendance"='time warner cable arena 10,848'; | 2-17323042-5 |
Can you tell me the lowest Losses that has the Gains smaller than 0? | CREATE TABLE "gains_holds_and_losses_by_party" (
"party" text,
"seats_dissol" real,
"seats_2012" real,
"gains" real,
"holds" real,
"losses" real,
"net_change" text
); | SELECT MIN("losses") FROM "gains_holds_and_losses_by_party" WHERE "gains"<0; | 2-16588852-2 |
what is the record when marc gasol (8) had the high rebounds? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "game_log" WHERE "high_rebounds"='marc gasol (8)'; | 2-17121262-9 |
what is the score on march 8? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "game_log" WHERE "date"='march 8'; | 2-17121262-9 |
who had the high assists on march 30? | CREATE TABLE "game_log" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "high_assists" FROM "game_log" WHERE "date"='march 30'; | 2-17121262-9 |
Which location has a capacity greater than 51,500? | CREATE TABLE "stadiums_and_locations" (
"team" text,
"location" text,
"venue" text,
"capacity" real,
"avg_attendance" real
); | SELECT "location" FROM "stadiums_and_locations" WHERE "capacity">'51,500'; | 2-17327264-1 |
Who was the rider who had less than 30 laps, ended in an accident with a car manufactured by yamaha on a grid larger than 3? | CREATE TABLE "moto_gp_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time" text,
"grid" real
); | SELECT "rider" FROM "moto_gp_classification" WHERE "laps"<30 AND "manufacturer"='yamaha' AND "time"='accident' AND "grid">3; | 2-16878651-1 |
Who was the manufacturer for the race on grid 12? | CREATE TABLE "moto_gp_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time" text,
"grid" real
); | SELECT "manufacturer" FROM "moto_gp_classification" WHERE "grid"=12; | 2-16878651-1 |
Who was the manufacturer for the car that dani pedrosa did less than 9 laps in? | CREATE TABLE "moto_gp_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time" text,
"grid" real
); | SELECT "manufacturer" FROM "moto_gp_classification" WHERE "laps"<9 AND "rider"='dani pedrosa'; | 2-16878651-1 |
How many laps did the driver with the yamaha manufacturer go on grid 3? | CREATE TABLE "moto_gp_classification" (
"rider" text,
"manufacturer" text,
"laps" real,
"time" text,
"grid" real
); | SELECT "laps" FROM "moto_gp_classification" WHERE "manufacturer"='yamaha' AND "grid"=3; | 2-16878651-1 |
What is the time in Baltimore? | CREATE TABLE "21st_century_comeback" (
"date" text,
"time" text,
"opponent" text,
"score" text,
"site" text,
"city" text
); | SELECT "time" FROM "21st_century_comeback" WHERE "city"='baltimore'; | 2-16311967-2 |
What date was the score 1-8? | CREATE TABLE "21st_century_comeback" (
"date" text,
"time" text,
"opponent" text,
"score" text,
"site" text,
"city" text
); | SELECT "date" FROM "21st_century_comeback" WHERE "score"='1-8'; | 2-16311967-2 |
What is the event where the opponent was Chris Barden? | 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"='chris barden'; | 2-17442590-2 |
What is the Surface of the Court in Napoli? | CREATE TABLE "singles_26_18_8" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "surface" FROM "singles_26_18_8" WHERE "tournament"='napoli'; | 2-16956201-3 |
What is the Outcome of the game with a Score of 6–4, 6–4? | CREATE TABLE "singles_26_18_8" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "outcome" FROM "singles_26_18_8" WHERE "score"='6–4, 6–4'; | 2-16956201-3 |
What is the Outcome of the game against Frederic Jeanclaude? | CREATE TABLE "singles_26_18_8" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "outcome" FROM "singles_26_18_8" WHERE "opponent"='frederic jeanclaude'; | 2-16956201-3 |
What is the Opponent in a game with a Score of 6–2, 6–2? | CREATE TABLE "singles_26_18_8" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "opponent" FROM "singles_26_18_8" WHERE "score"='6–2, 6–2'; | 2-16956201-3 |
What is the Surface of the court against Ivo Klec with a Score of 6–3, 6–3? | CREATE TABLE "singles_26_18_8" (
"outcome" text,
"date" text,
"tournament" text,
"surface" text,
"opponent" text,
"score" text
); | SELECT "surface" FROM "singles_26_18_8" WHERE "opponent"='ivo klec' AND "score"='6–3, 6–3'; | 2-16956201-3 |
Who was the player with a score of 70-69=139? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "player" FROM "second_round" WHERE "score"='70-69=139'; | 2-16225902-5 |
What country did Bart Bryant with a score of 69-70=139 belong to? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "second_round" WHERE "score"='69-70=139' AND "player"='bart bryant'; | 2-16225902-5 |
What is the country that the player with a score of 70-69=139 from? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "second_round" WHERE "score"='70-69=139'; | 2-16225902-5 |
In what place did the player with a score of 66-67=133 come in? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "place" FROM "second_round" WHERE "score"='66-67=133'; | 2-16225902-5 |
What country was the player from who placed t3 with a score of 70-68=138? | CREATE TABLE "second_round" (
"place" text,
"player" text,
"country" text,
"score" text,
"to_par" text
); | SELECT "country" FROM "second_round" WHERE "place"='t3' AND "score"='70-68=138'; | 2-16225902-5 |
What was the score for the player from 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-16225902-5 |
What week had a game that was played on November 11, 1962? | CREATE TABLE "schedule" (
"week" real,
"date" text,
"opponent" text,
"result" text,
"attendance" real
); | SELECT AVG("week") FROM "schedule" WHERE "date"='november 11, 1962'; | 2-16715989-2 |
Who is the author of Bludgeoning Angel Dokuro-Chan? | CREATE TABLE "top_10_female_characters_rankings" (
"year" real,
"character" text,
"title" text,
"author" text,
"artist" text,
"imprint" text
); | SELECT "author" FROM "top_10_female_characters_rankings" WHERE "title"='bludgeoning angel dokuro-chan'; | 2-16556852-3 |
What was the manner of departure for the outgoing manager, miguel brindisi? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_departure" text,
"incoming_manager" text,
"date_hired" text,
"position_in_table" text
); | SELECT "manner_of_departure" FROM "managerial_changes" WHERE "outgoing_manager"='miguel brindisi'; | 2-17329364-2 |
Who was the outgoing manager for the team, necaxa? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_departure" text,
"incoming_manager" text,
"date_hired" text,
"position_in_table" text
); | SELECT "outgoing_manager" FROM "managerial_changes" WHERE "team"='necaxa'; | 2-17329364-2 |
Who was the winner when the finalist was fsv frankfurt? | CREATE TABLE "german_cup_finals_under_the_gauliga_syst" (
"year" real,
"winner" text,
"finalist" text,
"result" text,
"date" text,
"venue" text,
"attendance" real
); | SELECT "winner" FROM "german_cup_finals_under_the_gauliga_syst" WHERE "finalist"='fsv frankfurt'; | 2-17418169-2 |
Who was the finalist when the winner was First Vienna FC? | CREATE TABLE "german_cup_finals_under_the_gauliga_syst" (
"year" real,
"winner" text,
"finalist" text,
"result" text,
"date" text,
"venue" text,
"attendance" real
); | SELECT "finalist" FROM "german_cup_finals_under_the_gauliga_syst" WHERE "winner"='first vienna fc'; | 2-17418169-2 |
How did the manager replaced by Wolfgang Frank depart? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text
); | SELECT "manner_of_departure" FROM "managerial_changes" WHERE "replaced_by"='wolfgang frank'; | 2-17327260-3 |
Who was hired to fill the spot that became vacant on 3 March 2009? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text
); | SELECT "replaced_by" FROM "managerial_changes" WHERE "date_of_vacancy"='3 march 2009'; | 2-17327260-3 |
What is the name of the person that was appointed on 13 May 2009? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text
); | SELECT "replaced_by" FROM "managerial_changes" WHERE "date_of_appointment"='13 may 2009'; | 2-17327260-3 |
How did the manager replaced by Michael Oenning depart? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text
); | SELECT "manner_of_departure" FROM "managerial_changes" WHERE "replaced_by"='michael oenning'; | 2-17327260-3 |
What is the name of the manager that was replaced by Michael Oenning? | CREATE TABLE "managerial_changes" (
"team" text,
"outgoing_manager" text,
"manner_of_departure" text,
"date_of_vacancy" text,
"replaced_by" text,
"date_of_appointment" text
); | SELECT "outgoing_manager" FROM "managerial_changes" WHERE "replaced_by"='michael oenning'; | 2-17327260-3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.