question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
What was location and attendance for the game where the Celtics played San Antonio? | 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 "team"='San Antonio'; | 1-27722408-8 |
Name the score for denver | 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 "score" FROM "regular_season" WHERE "team"='Denver'; | 1-27722734-11 |
Name the high points for april 8 | 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_points" FROM "regular_season" WHERE "date"='April 8'; | 1-27722734-11 |
what was the location for charlotte? | 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 "location_attendance" FROM "regular_season" WHERE "team"='Charlotte'; | 1-27722734-10 |
who had high points on march 27? | 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_points" FROM "regular_season" WHERE "date"='March 27'; | 1-27722734-10 |
What number was the first game? | 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 MIN("game") FROM "playoffs"; | 1-27722734-12 |
Name the record for w 101–93 (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 "record" FROM "game_log" WHERE "score"='W 101–93 (OT)'; | 1-27723228-12 |
Name the high rebounds for 81 game | 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"=81; | 1-27723228-12 |
Name the score for indiana | 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"='Indiana'; | 1-27723228-12 |
What was the location and attendance of the game against Dallas? | 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 "team"='Dallas'; | 1-27723228-11 |
Who had the high rebounds when the record was 14–7? | 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 "record"='14–7'; | 1-27723228-8 |
How many people are listed for high rebounds on game 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 COUNT("high_rebounds") FROM "game_log" WHERE "game"=30; | 1-27723228-8 |
What was the record when chris paul (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 "record" FROM "game_log" WHERE "high_points"='Chris Paul (16)'; | 1-27723228-8 |
What is the record when the score was l 84–96 (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 "record" FROM "game_log" WHERE "score"='L 84–96 (OT)'; | 1-27723228-8 |
Where was the game played when the record was 16–11? | 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 "record"='16–11'; | 1-27723228-8 |
Name the score for miami | 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"='Miami'; | 1-27723228-7 |
Name the high assists for w 107–99 (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_assists" FROM "game_log" WHERE "score"='W 107–99 (OT)'; | 1-27723228-7 |
What's the Ikavian translation of the Ijekavian word with ěl → io Ijekavian development? | CREATE TABLE "division_by_reflex" (
"english" text,
"predecessor" text,
"ekavian" text,
"ikavian" text,
"ijekavian" text,
"ijekavian_development" text
); | SELECT "ikavian" FROM "division_by_reflex" WHERE "ijekavian_development"='ěl → io'; | 1-27730-9 |
What's the English translation of the Ijekavian word with pr + long ě → prije Ijekavian development? | CREATE TABLE "division_by_reflex" (
"english" text,
"predecessor" text,
"ekavian" text,
"ikavian" text,
"ijekavian" text,
"ijekavian_development" text
); | SELECT "english" FROM "division_by_reflex" WHERE "ijekavian_development"='pr + long ě → prije'; | 1-27730-9 |
What's the predecessor of the Ekavian word vreme? | CREATE TABLE "division_by_reflex" (
"english" text,
"predecessor" text,
"ekavian" text,
"ikavian" text,
"ijekavian" text,
"ijekavian_development" text
); | SELECT "predecessor" FROM "division_by_reflex" WHERE "ekavian"='vreme'; | 1-27730-9 |
What's the Ikavian translation of the Ijekavian word lijep? | CREATE TABLE "division_by_reflex" (
"english" text,
"predecessor" text,
"ekavian" text,
"ikavian" text,
"ijekavian" text,
"ijekavian_development" text
); | SELECT "ikavian" FROM "division_by_reflex" WHERE "ijekavian"='lijep'; | 1-27730-9 |
What's the ijekavian translation of the ikavian word grijati? | CREATE TABLE "division_by_reflex" (
"english" text,
"predecessor" text,
"ekavian" text,
"ikavian" text,
"ijekavian" text,
"ijekavian_development" text
); | SELECT "ijekavian" FROM "division_by_reflex" WHERE "ikavian"='grijati'; | 1-27730-9 |
Who had highest assists at game on December 21? | 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 "date"='December 21'; | 1-27723526-9 |
What location did the Mavericks play against Milwaukee? | 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 "team"='Milwaukee'; | 1-27723526-9 |
What is the high rebound for June 9? | CREATE TABLE "game_log" (
"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 "game_log" WHERE "date"='June 9'; | 1-27723526-17 |
Who is the high rebound where game is 5? | CREATE TABLE "game_log" (
"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 "game_log" WHERE "game"=5; | 1-27723526-17 |
What company plays on april 1? | 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 "date"='April 1'; | 1-27733258-11 |
Name the high points for l 110–112 (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_points" FROM "game_log" WHERE "score"='L 110–112 (OT)'; | 1-27733258-6 |
Name the location attendance for l 105–123 (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 "location_attendance" FROM "game_log" WHERE "score"='L 105–123 (OT)'; | 1-27733258-6 |
what date was game 29? | 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 "game"=29; | 1-27733258-7 |
Who did the team play on january 9? | 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 "date"='January 9'; | 1-27733258-8 |
Who had the highest assists in game 75? | 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"=75; | 1-27733909-10 |
How many locations did the game that was on April 8 take place at? | 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"='April 8'; | 1-27733909-10 |
what is the overall number of times when the calendar showed october 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 COUNT("record") FROM "game_log" WHERE "date"='October 6'; | 1-27733909-1 |
what is the most number where the calendar shows october 20 | 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"='October 20'; | 1-27733909-1 |
what are the times where the play is 5 | 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 "game"=5; | 1-27733909-1 |
What was the score in the game on November 21? | 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"='November 21'; | 1-27733909-5 |
Who had the most points and how many did they have in game 11? | 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 "game"=11; | 1-27733909-5 |
List records for game 29. | 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 "game"=29; | 1-27734286-6 |
What record has c. j. miles (20) in 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 "record" FROM "game_log" WHERE "high_points"='C. J. Miles (20)'; | 1-27734286-1 |
Who in the high rebounds is in the honda center 15,625 location attendance? | 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 "location_attendance"='Honda Center 15,625'; | 1-27734286-1 |
Who is in the high points in the @ l.a. clippers team? | 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 "team"='@ L.A. Clippers'; | 1-27734286-1 |
What's the score in al jefferson (24) 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 COUNT("score") FROM "game_log" WHERE "high_points"='Al Jefferson (24)'; | 1-27734286-1 |
What`s the score in October 7. | 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"='October 7'; | 1-27734286-1 |
What's the location attendance of the @ portland team? | 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 "team"='@ Portland'; | 1-27734286-1 |
Who had the high assist total on january 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_assists" FROM "game_log" WHERE "date"='January 8'; | 1-27734286-7 |
Who had the high assists for game number 38? | 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"=38; | 1-27734286-7 |
How many games did they play on january 7? | 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_points") FROM "game_log" WHERE "date"='January 7'; | 1-27734286-7 |
What date did the Hawks play against Boston? | 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 "team"='Boston'; | 1-27734577-11 |
List the highest number of assists when zaza pachulia (6) had the most 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 COUNT("high_assists") FROM "game_log" WHERE "high_rebounds"='Zaza Pachulia (6)'; | 1-27734577-2 |
Which team was the opponent on october 21? | 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 "date"='October 21'; | 1-27734577-2 |
Who corned the most points for the game that ended with a score of l 85–94 (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_points" FROM "game_log" WHERE "score"='L 85–94 (OT)'; | 1-27734577-2 |
what was the final score of the game where josh powell (13) scored the most 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 "score" FROM "game_log" WHERE "high_points"='Josh Powell (13)'; | 1-27734577-2 |
What's the record of the @ miami team? | 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 "team"='@ Miami'; | 1-27734577-8 |
How many records where in January 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("record") FROM "game_log" WHERE "date"='January 2'; | 1-27734577-8 |
What are the high rebounds in the jamal crawford (20) 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"='Jamal Crawford (20)'; | 1-27734577-8 |
What are the high rebounds in the 45 game? | 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"=45; | 1-27734577-8 |
What's the date of the new orleans team ? | 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 "team"='New Orleans'; | 1-27734577-8 |
What team has a score of w 110–87 (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 "team" FROM "game_log" WHERE "score"='W 110–87 (OT)'; | 1-27734577-8 |
What was the game record if Marcus Camby (13) got 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"='Marcus Camby (13)'; | 1-27734769-9 |
Who did the high rebounds for the team Minnesota? | 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 "team"='Minnesota'; | 1-27734769-9 |
How many scores where achieved on January 19? | 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("score") FROM "game_log" WHERE "date"='January 19'; | 1-27734769-9 |
Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing? | CREATE TABLE "table1_27743641_2" (
"season" real,
"lmp1_winning_team" text,
"lmp2_winning_driver" text,
"lmpc_winning_team" text,
"gt_winning_team" text,
"gtc_winning_team" text,
"results" text
); | SELECT "lmp2_winning_driver" FROM "table1_27743641_2" WHERE "lmp1_winning_team"='No. 20 Oryx Dyson Racing'; | 1-27743641-2 |
Who were the GT winning team when the GTC winning team was No. 54 Black Swan Racing? | CREATE TABLE "table1_27743641_2" (
"season" real,
"lmp1_winning_team" text,
"lmp2_winning_driver" text,
"lmpc_winning_team" text,
"gt_winning_team" text,
"gtc_winning_team" text,
"results" text
); | SELECT "gt_winning_team" FROM "table1_27743641_2" WHERE "gtc_winning_team"='No. 54 Black Swan Racing'; | 1-27743641-2 |
Who were the GT winning team when the results were "report"? | CREATE TABLE "table1_27743641_2" (
"season" real,
"lmp1_winning_team" text,
"lmp2_winning_driver" text,
"lmpc_winning_team" text,
"gt_winning_team" text,
"gtc_winning_team" text,
"results" text
); | SELECT "gt_winning_team" FROM "table1_27743641_2" WHERE "results"='Report'; | 1-27743641-2 |
what is the date the high assists was andre miller (7)? | 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_assists"='Andre Miller (7)'; | 1-27734769-8 |
What is the date the high points was lamarcus aldridge (36)? | 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"='LaMarcus Aldridge (36)'; | 1-27734769-8 |
What is the score when the team is milwaukee? | 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"='Milwaukee'; | 1-27734769-8 |
How many times was the high assists andre miller (7)? | 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("date") FROM "game_log" WHERE "high_assists"='Andre Miller (7)'; | 1-27734769-8 |
How many times was the high rebounds by marcus camby (18)? | 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("date") FROM "game_log" WHERE "high_rebounds"='Marcus Camby (18)'; | 1-27734769-8 |
What is the date the high rebounds were by lamarcus aldridge (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 "date" FROM "game_log" WHERE "high_rebounds"='LaMarcus Aldridge (6)'; | 1-27734769-8 |
Who had the most assists and how many did they have in game 35? | 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"=35; | 1-27744844-7 |
Who had the most rebounds and how many did they have on January 19? | 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"='January 19'; | 1-27744844-7 |
Which team played on April 9? | 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 "date"='April 9'; | 1-27744976-11 |
Which player scored the most points and how many were scored on November 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 "high_points" FROM "game_log" WHERE "date"='November 6'; | 1-27744844-5 |
Who had the high assists on November 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 "high_assists" FROM "game_log" WHERE "date"='November 17'; | 1-27744976-6 |
Who had highest rebounds during game on March 12? | 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"='March 12'; | 1-27744976-10 |
What was the rocket's record when they played against Indiana? | 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 "team"='Indiana'; | 1-27744976-10 |
How many people directed "the one with rachel's dream"? | CREATE TABLE "table1_27755040_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real
); | SELECT COUNT("directed_by") FROM "table1_27755040_1" WHERE "title"='\"The One with Rachel''s Dream\"'; | 1-27755040-1 |
How many episodes in the season had production code of 175255? | CREATE TABLE "table1_27755040_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real
); | SELECT COUNT("no_in_season") FROM "table1_27755040_1" WHERE "production_code"=175255; | 1-27755040-1 |
What episode number in the series is "the one with the blind dates"? | CREATE TABLE "table1_27755040_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real
); | SELECT MAX("no_in_series") FROM "table1_27755040_1" WHERE "title"='\"The One with the Blind Dates\"'; | 1-27755040-1 |
What were the high points on March 25? | 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"='March 25'; | 1-27755603-10 |
Who was the team on March 18? | 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 "date"='March 18'; | 1-27755603-10 |
What was the high points when the team was Washington? | 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 "team"='Washington'; | 1-27755603-10 |
What was the game number when the location attendance was the Palace of Auburn Hills 15,166? | 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" WHERE "location_attendance"='The Palace of Auburn Hills 15,166'; | 1-27755603-10 |
What team did they play on april 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 "team" FROM "game_log" WHERE "date"='April 6'; | 1-27755603-11 |
What numbered game did they play on april 5? | 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 "date"='April 5'; | 1-27755603-11 |
What numbered game did they play chicago? | 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 "game" FROM "game_log" WHERE "team"='Chicago'; | 1-27755603-11 |
Who had the most assists agains New Orleans? | 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 "team"='New Orleans'; | 1-27755603-7 |
For how many games on December 19 is there information on who scored the most 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 COUNT("high_rebounds") FROM "game_log" WHERE "date"='December 19'; | 1-27755603-7 |
What's the record in the game where Greg Monroe (8) did 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"='Greg Monroe (8)'; | 1-27755603-2 |
Who did the high rebounds in the game in which Rodney Stuckey (16) did 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"='Rodney Stuckey (16)'; | 1-27755603-2 |
Who was the opponent in the game in which Austin Daye (16) did the most 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 "team" FROM "game_log" WHERE "high_points"='Austin Daye (16)'; | 1-27755603-2 |
Where was the game in which Will Bynum (5) did the high assists played? | 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 "high_assists"='Will Bynum (5)'; | 1-27755603-2 |
What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)? | 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 "high_assists"='Stephen Curry (7)' AND "high_points"='Monta Ellis (27)'; | 1-27755784-10 |
What is the highest 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"; | 1-27755784-10 |
What is the score when the team is @ dallas? | 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"='@ Dallas'; | 1-27755784-10 |
Name the high rebounds for january 14 | 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"='January 14'; | 1-27755603-8 |
Name the number of score for january 12 | 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("score") FROM "game_log" WHERE "date"='January 12'; | 1-27755603-8 |
Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20) | 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 "high_points"='Austin Daye , Tracy McGrady , Tayshaun Prince (20)'; | 1-27755603-8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.