question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
How many singles tournaments did Ludovic Walter win? | CREATE TABLE "events" (
"tournament" text,
"date" text,
"city" text,
"country" text,
"surface" text,
"singles_champions" text,
"doubles_champions" text
); | SELECT COUNT("tournament") FROM "events" WHERE "singles_champions"='Ludovic Walter'; | 1-11900378-1 |
What is the type where the country is esp? | CREATE TABLE "in" (
"n" real,
"p" text,
"name" text,
"eu" text,
"country" text,
"age" real,
"type" text,
"moving_from" text,
"transfer_window" text,
"ends" real,
"transfer_fee" text,
"source" text
); | SELECT "type" FROM "in" WHERE "country"='ESP'; | 1-11891841-2 |
What is the name where p is mf? | CREATE TABLE "in" (
"n" real,
"p" text,
"name" text,
"eu" text,
"country" text,
"age" real,
"type" text,
"moving_from" text,
"transfer_window" text,
"ends" real,
"transfer_fee" text,
"source" text
); | SELECT "name" FROM "in" WHERE "p"='MF'; | 1-11891841-2 |
What is the type where the name is bojan? | CREATE TABLE "in" (
"n" real,
"p" text,
"name" text,
"eu" text,
"country" text,
"age" real,
"type" text,
"moving_from" text,
"transfer_window" text,
"ends" real,
"transfer_fee" text,
"source" text
); | SELECT "type" FROM "in" WHERE "name"='Bojan'; | 1-11891841-2 |
What was the first day cover cancellation for the University of Saskatchewan themed stamp? | CREATE TABLE "2007" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "first_day_cover_cancellation" FROM "2007" WHERE "theme"='University of Saskatchewan'; | 1-11900773-5 |
Who was responsible for the design of the Jasper National Park theme? | CREATE TABLE "2007" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "design" FROM "2007" WHERE "theme"='Jasper National Park'; | 1-11900773-5 |
What is the paper type of the University of Saskatchewan themed stamp? | CREATE TABLE "2007" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "paper_type" FROM "2007" WHERE "theme"='University of Saskatchewan'; | 1-11900773-5 |
Who created the illustration for the stamp that was themed 100 years of scouting? | CREATE TABLE "2007" (
"date_of_issue" text,
"theme" text,
"denomination" text,
"design" text,
"illustration" text,
"printing_process" text,
"paper_type" text,
"first_day_cover_cancellation" text
); | SELECT "illustration" FROM "2007" WHERE "theme"='100 Years of Scouting'; | 1-11900773-5 |
What is the number of nicknames for the meaning of god knows my journey. | CREATE TABLE "family_history" (
"full_name" text,
"nickname" text,
"gender" text,
"weight_at_birth" text,
"meaning" text
); | SELECT COUNT("nickname") FROM "family_history" WHERE "meaning"='God Knows My Journey'; | 1-11908801-1 |
What is the number of meaning where full name is chidinma anulika? | CREATE TABLE "family_history" (
"full_name" text,
"nickname" text,
"gender" text,
"weight_at_birth" text,
"meaning" text
); | SELECT COUNT("meaning") FROM "family_history" WHERE "full_name"='Chidinma Anulika'; | 1-11908801-1 |
What is the nickname that means god holds my life? | CREATE TABLE "family_history" (
"full_name" text,
"nickname" text,
"gender" text,
"weight_at_birth" text,
"meaning" text
); | SELECT "nickname" FROM "family_history" WHERE "meaning"='God Holds My Life'; | 1-11908801-1 |
Who had the high assists for game 49? | 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 "game"=49; | 1-11907963-6 |
What was the score for the game in which Emeka Okafor (10) had 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 "score" FROM "game_log" WHERE "high_rebounds"='Emeka Okafor (10)'; | 1-11907963-6 |
what is the total number of location where station number is c03 | CREATE TABLE "stations" (
"station_number" text,
"district" text,
"location" text,
"type" text,
"appliances" text,
"registrations" text
); | SELECT COUNT("location") FROM "stations" WHERE "station_number"='C03'; | 1-11934032-1 |
what are all the type where station number is c08 | CREATE TABLE "stations" (
"station_number" text,
"district" text,
"location" text,
"type" text,
"appliances" text,
"registrations" text
); | SELECT "type" FROM "stations" WHERE "station_number"='C08'; | 1-11934032-1 |
what are all the type where location is st ives, cambridgeshire | CREATE TABLE "stations" (
"station_number" text,
"district" text,
"location" text,
"type" text,
"appliances" text,
"registrations" text
); | SELECT "type" FROM "stations" WHERE "location"='St Ives, Cambridgeshire'; | 1-11934032-1 |
what are all the registrations where station number is c26 | CREATE TABLE "stations" (
"station_number" text,
"district" text,
"location" text,
"type" text,
"appliances" text,
"registrations" text
); | SELECT "registrations" FROM "stations" WHERE "station_number"='C26'; | 1-11934032-1 |
what are all the location where station number is c11 | CREATE TABLE "stations" (
"station_number" text,
"district" text,
"location" text,
"type" text,
"appliances" text,
"registrations" text
); | SELECT "location" FROM "stations" WHERE "station_number"='C11'; | 1-11934032-1 |
what are all the registrations where location is yaxley | CREATE TABLE "stations" (
"station_number" text,
"district" text,
"location" text,
"type" text,
"appliances" text,
"registrations" text
); | SELECT "registrations" FROM "stations" WHERE "location"='Yaxley'; | 1-11934032-1 |
What is the issue price (proof) where the issue price (bu) is 34.95? | CREATE TABLE "commemorative_silver_dollar_series" (
"year" real,
"theme" text,
"artist" text,
"mintage_proof" text,
"issue_price_proof" text,
"mintage_bu_clarification_needed" text,
"issue_price_bu_clarification_needed" text
); | SELECT "issue_price_proof" FROM "commemorative_silver_dollar_series" WHERE "issue_price_bu_clarification_needed"='34.95'; | 1-11916083-1 |
What is the earliest year where the mintage (proof) is 25,000? | CREATE TABLE "commemorative_silver_dollar_series" (
"year" real,
"theme" text,
"artist" text,
"mintage_proof" text,
"issue_price_proof" text,
"mintage_bu_clarification_needed" text,
"issue_price_bu_clarification_needed" text
); | SELECT MIN("year") FROM "commemorative_silver_dollar_series" WHERE "mintage_proof"='25,000'; | 1-11916083-1 |
What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95? | CREATE TABLE "commemorative_silver_dollar_series" (
"year" real,
"theme" text,
"artist" text,
"mintage_proof" text,
"issue_price_proof" text,
"mintage_bu_clarification_needed" text,
"issue_price_bu_clarification_needed" text
); | SELECT "mintage_bu_clarification_needed" FROM "commemorative_silver_dollar_series" WHERE "artist"='Royal Canadian Mint Staff' AND "issue_price_proof"='$54.95'; | 1-11916083-1 |
What is the year that the issue price (bu) is $26.95? | CREATE TABLE "commemorative_silver_dollar_series" (
"year" real,
"theme" text,
"artist" text,
"mintage_proof" text,
"issue_price_proof" text,
"mintage_bu_clarification_needed" text,
"issue_price_bu_clarification_needed" text
); | SELECT "year" FROM "commemorative_silver_dollar_series" WHERE "issue_price_bu_clarification_needed"='$26.95'; | 1-11916083-1 |
What is the number of first class team with birthday of 5 december 1970? | CREATE TABLE "new_zealand" (
"no" text,
"player" text,
"date_of_birth" text,
"batting_style" text,
"bowling_style" text,
"first_class_team" text
); | SELECT COUNT("first_class_team") FROM "new_zealand" WHERE "date_of_birth"='5 December 1970'; | 1-11950720-4 |
What is the number when birthday is 15 november 1973? | CREATE TABLE "new_zealand" (
"no" text,
"player" text,
"date_of_birth" text,
"batting_style" text,
"bowling_style" text,
"first_class_team" text
); | SELECT "no" FROM "new_zealand" WHERE "date_of_birth"='15 November 1973'; | 1-11950720-4 |
What is the bowling style of chris harris? | CREATE TABLE "new_zealand" (
"no" text,
"player" text,
"date_of_birth" text,
"batting_style" text,
"bowling_style" text,
"first_class_team" text
); | SELECT "bowling_style" FROM "new_zealand" WHERE "player"='Chris Harris'; | 1-11950720-4 |
Where is the first class team of date of birth 20 november 1969? | CREATE TABLE "new_zealand" (
"no" text,
"player" text,
"date_of_birth" text,
"batting_style" text,
"bowling_style" text,
"first_class_team" text
); | SELECT "first_class_team" FROM "new_zealand" WHERE "date_of_birth"='20 November 1969'; | 1-11950720-4 |
What's Javagal Srinath's batting style? | CREATE TABLE "india" (
"no" text,
"player" text,
"date_of_birth" text,
"batting_style" text,
"bowling_style" text,
"first_class_team" text
); | SELECT "batting_style" FROM "india" WHERE "player"='Javagal Srinath'; | 1-11950720-3 |
Shivnarine Chanderpaul used what bowling style? | CREATE TABLE "west_indies" (
"no" text,
"player" text,
"date_of_birth" text,
"batting_style" text,
"bowling_style" text,
"first_class_team" text
); | SELECT "bowling_style" FROM "west_indies" WHERE "player"='Shivnarine Chanderpaul'; | 1-11950720-8 |
How many musical guests and songs were in episodes with a production code k0519? | CREATE TABLE "season_2_1995_1996" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("musical_guest_and_song") FROM "season_2_1995_1996" WHERE "production_code"='K0519'; | 1-11951237-2 |
How many episodes originally aired on August 31, 1995? | CREATE TABLE "season_2_1995_1996" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("title") FROM "season_2_1995_1996" WHERE "original_air_date"='August 31, 1995'; | 1-11951237-2 |
What's the musical guest and the song in the episode titled "Checkmate"? | CREATE TABLE "season_2_1995_1996" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT "musical_guest_and_song" FROM "season_2_1995_1996" WHERE "title"='\"Checkmate\"'; | 1-11951237-2 |
How many episodes were titled "Man's best friend"? | CREATE TABLE "season_2_1995_1996" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("directed_by") FROM "season_2_1995_1996" WHERE "title"='\"Man''s Best Friend\"'; | 1-11951237-2 |
What is the season # when the musical guest and song is lisa stansfield " you know how to love me "? | CREATE TABLE "season_3_1996_1997" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("season_num") FROM "season_3_1996_1997" WHERE "musical_guest_and_song"='Lisa Stansfield \" You Know How to Love Me \"'; | 1-11951237-3 |
What is theoriginal air date of the episode directed by timothy van patten? | CREATE TABLE "season_3_1996_1997" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "season_3_1996_1997" WHERE "directed_by"='Timothy Van Patten'; | 1-11951237-3 |
What is the original air date for the title "no place like hell"? | CREATE TABLE "season_3_1996_1997" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "season_3_1996_1997" WHERE "title"='\"No Place Like Hell\"'; | 1-11951237-3 |
What is the season # where production code is k1505? | CREATE TABLE "season_3_1996_1997" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT MIN("season_num") FROM "season_3_1996_1997" WHERE "production_code"='K1505'; | 1-11951237-3 |
What is the original air date where the musical guest and song is blackstreet " yearning for your love "? | CREATE TABLE "season_3_1996_1997" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "season_3_1996_1997" WHERE "musical_guest_and_song"='BLACKstreet \" Yearning for Your Love \"'; | 1-11951237-3 |
What is the title of the episode with the original air date of february 6, 1997? | CREATE TABLE "season_3_1996_1997" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"musical_guest_and_song" text,
"original_air_date" text,
"production_code" text
); | SELECT "title" FROM "season_3_1996_1997" WHERE "original_air_date"='February 6, 1997'; | 1-11951237-3 |
How many titles are there for season 8 | CREATE TABLE "season_4_1998" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("title") FROM "season_4_1998" WHERE "season_num"=8; | 1-11951237-4 |
Which tittles have an original air date of March 19, 1998 | CREATE TABLE "season_4_1998" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "title" FROM "season_4_1998" WHERE "original_air_date"='March 19, 1998'; | 1-11951237-4 |
what are the original air dates with a title of "spare Parts" | CREATE TABLE "season_4_1998" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "original_air_date" FROM "season_4_1998" WHERE "title"='\"Spare Parts\"'; | 1-11951237-4 |
What was the attendance of the game November 24 | 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 "location_attendance" FROM "game_log" WHERE "date"='November 24'; | 1-11959669-3 |
Who had the highest assists on November 4 | 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"='November 4'; | 1-11959669-3 |
Who had the highest rebounds on November 4 | 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_rebounds" FROM "game_log" WHERE "date"='November 4'; | 1-11959669-3 |
How many numbers were listed under attendance for March 2? | 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 COUNT("location_attendance") FROM "game_log" WHERE "date"='March 2'; | 1-11959669-7 |
What was the final score on March 26? | 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 26'; | 1-11959669-7 |
What is the team when the score is 88–86? | 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 "team" FROM "game_log" WHERE "score"='88–86'; | 1-11959669-6 |
What is the score when high points is from pierce (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 "score" FROM "game_log" WHERE "high_points"='Pierce (30)'; | 1-11959669-6 |
How many times is the score 98–90? | 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 COUNT("location_attendance") FROM "game_log" WHERE "score"='98–90'; | 1-11959669-6 |
What is the game that the location attendance is pepsi center 19,894? | 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 MAX("game") FROM "game_log" WHERE "location_attendance"='Pepsi Center 19,894'; | 1-11959669-6 |
What is the team when location attendance is us airways center 18,422? | 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 "team" FROM "game_log" WHERE "location_attendance"='US Airways Center 18,422'; | 1-11959669-6 |
What is the record where high assists is pierce (6)? | 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_assists"='Pierce (6)'; | 1-11959669-6 |
What was the result of the game when the raptors played @ cleveland? | 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 "team"='@ Cleveland'; | 1-11960407-2 |
Who did the high points of game 5? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "high_points" FROM "playoffs" WHERE "game"=5; | 1-11960196-3 |
How many high points were at the wachovia center 18,347? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT COUNT("high_points") FROM "playoffs" WHERE "location_attendance"='Wachovia Center 18,347'; | 1-11960196-3 |
What is the team of april 25? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "team" FROM "playoffs" WHERE "date"='April 25'; | 1-11960196-3 |
Who had the high rebounds when Chris Bosh (16) had the high points? | 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_rebounds" FROM "game_log" WHERE "high_points"='Chris Bosh (16)'; | 1-11960407-4 |
What was the score when the location attendance was Air Canada Centre 18,067? | 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 "location_attendance"='Air Canada Centre 18,067'; | 1-11960407-4 |
When did Chris Bosh (14) have 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 "date" FROM "game_log" WHERE "high_rebounds"='Chris Bosh (14)'; | 1-11960407-4 |
Who had the high points on January 23? | 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_points" FROM "game_log" WHERE "date"='January 23'; | 1-11960407-4 |
How many times was the game 39? | 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 COUNT("record") FROM "game_log" WHERE "game"=39; | 1-11960407-4 |
What is San Antonio game number? | 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 MAX("game") FROM "game_log" WHERE "team"='San Antonio'; | 1-11960610-10 |
Who had high points when high rebound is gray (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 "high_points" FROM "game_log" WHERE "high_rebounds"='Gray (8)'; | 1-11960610-10 |
What is the date deng (20) had high points? | 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 "date" FROM "game_log" WHERE "high_points"='Deng (20)'; | 1-11960610-10 |
What was the score of united center 22,097? | 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 "location_attendance"='United Center 22,097'; | 1-11960610-10 |
When gordon (27) had high points, what was the number of high assists? | 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 COUNT("high_assists") FROM "game_log" WHERE "high_points"='Gordon (27)'; | 1-11960610-10 |
What was the location attendance on the date of November 15? | 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 "location_attendance" FROM "game_log" WHERE "date"='November 15'; | 1-11960610-6 |
Where was the game played when the high assists were scored by billups , stuckey (4)? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "location_attendance" FROM "playoffs" WHERE "high_assists"='Billups , Stuckey (4)'; | 1-11960944-11 |
What date was the game for the score L 88–79? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "date" FROM "playoffs" WHERE "score"='L 88–79'; | 1-11960944-11 |
How many high points were there in the game 67? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_points") FROM "regular_season" WHERE "game"=67; | 1-11960944-7 |
Which team was played when the high points was from Wallace (20)? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "team" FROM "regular_season" WHERE "high_points"='Wallace (20)'; | 1-11960944-4 |
Which date was the team playing @ Memphis? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "regular_season" WHERE "team"='@ Memphis'; | 1-11960944-4 |
how many times was the high rebounds by Mcdyess (9) and the high assists was by Billups (10)? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_points") FROM "regular_season" WHERE "high_rebounds"='McDyess (9)' AND "high_assists"='Billups (10)'; | 1-11960944-4 |
Who had the high assists on the date December 12? | CREATE TABLE "regular_season" (
"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 "regular_season" WHERE "date"='December 12'; | 1-11960944-4 |
What date was game 57 held on? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "regular_season" WHERE "game"=57; | 1-11960944-6 |
How many players had the most points in the game @ Milwaukee? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_points") FROM "regular_season" WHERE "team"='@ Milwaukee'; | 1-11960944-6 |
Who did the most high rebounds in the game 24? | 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_rebounds" FROM "game_log" WHERE "game"=24; | 1-11961582-4 |
What was the score of the game played on December 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"='December 8'; | 1-11961582-4 |
What was the total number of games where A. Johnson (6) gave the most high assists? | 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 COUNT("game") FROM "game_log" WHERE "high_assists"='A. Johnson (6)'; | 1-11961582-4 |
What's the minimal game number in the season? | 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 MIN("game") FROM "game_log"; | 1-11961582-4 |
What is the location when the high rebounds was from A. Horford (13)? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "location_attendance" FROM "playoffs" WHERE "high_rebounds"='A. Horford (13)'; | 1-11961582-10 |
How had the high points when the high assists were from J. Johnson (7)? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "high_points" FROM "playoffs" WHERE "high_assists"='J. Johnson (7)'; | 1-11961582-10 |
Who had the high rebounds when the high assists were from J. Johnson (7)? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "high_rebounds" FROM "playoffs" WHERE "high_assists"='J. Johnson (7)'; | 1-11961582-10 |
Which team was played on April 20? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "team" FROM "playoffs" WHERE "date"='April 20'; | 1-11961582-10 |
Who had the high rebounds for the game on april 23? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "high_rebounds" FROM "playoffs" WHERE "date"='April 23'; | 1-11961582-10 |
What was the score in the game on May 11? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "score" FROM "playoffs" WHERE "date"='May 11'; | 1-11963601-11 |
Who was the high scorer and how much did they score in the game on May 3? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "high_points" FROM "playoffs" WHERE "date"='May 3'; | 1-11963601-11 |
What was the series count at for game 5? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "series" FROM "playoffs" WHERE "game"=5; | 1-11963601-11 |
Where was the game on May 15 and how many were in attendance? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "location_attendance" FROM "playoffs" WHERE "date"='May 15'; | 1-11963601-11 |
What was the attendance on March 17? | 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 "location_attendance" FROM "game_log" WHERE "date"='March 17'; | 1-11961582-7 |
What was the high assist total on May 11? | CREATE TABLE "playoffs" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"series" text
); | SELECT "high_assists" FROM "playoffs" WHERE "date"='May 11'; | 1-11963536-11 |
What is the lowest #? | CREATE TABLE "april" (
"num" real,
"date" text,
"visitor" text,
"score" text,
"home" text,
"leading_scorer" text,
"attendance" text,
"record" text,
"streak" text
); | SELECT MIN("num") FROM "april"; | 1-11964047-10 |
What is the score of the game with the streak l5 | CREATE TABLE "april" (
"num" real,
"date" text,
"visitor" text,
"score" text,
"home" text,
"leading_scorer" text,
"attendance" text,
"record" text,
"streak" text
); | SELECT "score" FROM "april" WHERE "streak"='L5'; | 1-11964047-10 |
What is the attendance for the home game at Los Angeles Lakers? | CREATE TABLE "april" (
"num" real,
"date" text,
"visitor" text,
"score" text,
"home" text,
"leading_scorer" text,
"attendance" text,
"record" text,
"streak" text
); | SELECT "attendance" FROM "april" WHERE "home"='Los Angeles Lakers'; | 1-11964047-10 |
What is the record for the game at home Los Angeles Lakers? | CREATE TABLE "april" (
"num" real,
"date" text,
"visitor" text,
"score" text,
"home" text,
"leading_scorer" text,
"attendance" text,
"record" text,
"streak" text
); | SELECT "record" FROM "april" WHERE "home"='Los Angeles Lakers'; | 1-11964047-10 |
What was the result and score of Game #29? | CREATE TABLE "december" (
"num" real,
"date" text,
"visitor" text,
"score" text,
"home" text,
"leading_scorer" text,
"attendance" text,
"record" text,
"streak" text
); | SELECT "score" FROM "december" WHERE "num"=29; | 1-11964047-6 |
Who was the leading scorer in Game #26? | CREATE TABLE "december" (
"num" real,
"date" text,
"visitor" text,
"score" text,
"home" text,
"leading_scorer" text,
"attendance" text,
"record" text,
"streak" text
); | SELECT "leading_scorer" FROM "december" WHERE "num"=26; | 1-11964047-6 |
Who had the high rebounds when the score was l 84–102 (ot)? | 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_rebounds" FROM "game_log" WHERE "score"='L 84–102 (OT)'; | 1-11964154-11 |
Who had the high assists when the high rebounds were from Nick Collison (15)? | 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 "high_rebounds"='Nick Collison (15)'; | 1-11964154-11 |
Subsets and Splits