question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
How many record data were written when Devin Harris (6) was 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("record") FROM "game_log" WHERE "high_assists"='Devin Harris (6)'; | 1-27700375-8 |
How many games were held on January 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 COUNT("game") FROM "game_log" WHERE "date"='January 5'; | 1-27700375-8 |
Who had highest assists at the game against Houston? | 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"='Houston'; | 1-27700530-11 |
what is the date of the game 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 "date" FROM "game_log" WHERE "game"=23; | 1-27700375-7 |
If the high points were by Anthony Morrow (24), what was the 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 "team" FROM "game_log" WHERE "high_points"='Anthony Morrow (24)'; | 1-27700375-6 |
In how many games were the high rebounds made by Derrick Favors (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 COUNT("game") FROM "game_log" WHERE "high_rebounds"='Derrick Favors (8)'; | 1-27700375-6 |
If the location attendance was Quicken Loans Arena 20,562, who had the 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 "high_assists" FROM "game_log" WHERE "location_attendance"='Quicken Loans Arena 20,562'; | 1-27700375-6 |
Which game number was located in Prudential Center 15,086? | 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"='Prudential Center 15,086'; | 1-27700375-6 |
In how many games did Terrence Williams (9) have 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("score") FROM "game_log" WHERE "high_assists"='Terrence Williams (9)'; | 1-27700375-6 |
What is the location and attendance of the game when gilbert arenas (9) had the 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 "location_attendance" FROM "game_log" WHERE "high_assists"='Gilbert Arenas (9)'; | 1-27700530-10 |
What is the date where the record was 18–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 "date" FROM "game_log" WHERE "record"='18–12'; | 1-27700530-10 |
What is the date when jameer nelson (10) had the 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 "date" FROM "game_log" WHERE "high_assists"='Jameer Nelson (10)'; | 1-27700530-10 |
What is the record when jameer nelson (19) 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"='Jameer Nelson (19)'; | 1-27700530-10 |
What was the location and attendance on March 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 "location_attendance" FROM "game_log" WHERE "date"='March 9'; | 1-27700530-13 |
How many games were numbered 13? | 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("team") FROM "game_log" WHERE "game"=13; | 1-27700530-9 |
What was the team's record when they played 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 "record" FROM "game_log" WHERE "team"='Minnesota'; | 1-27700530-9 |
What was the team's record on november 10? | 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 "date"='November 10'; | 1-27700530-9 |
Who had the high assists 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 "high_assists" FROM "game_log" WHERE "date"='March 26'; | 1-27704187-10 |
What was the season record when the team played 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 "record" FROM "game_log" WHERE "team"='Milwaukee'; | 1-27704187-10 |
Who had the high points in game is 81? | 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"=81; | 1-27703902-9 |
What game number was played on april 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 MIN("game") FROM "game_log" WHERE "date"='April 8'; | 1-27704187-11 |
Who had the high rebounds on april 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_rebounds" FROM "game_log" WHERE "date"='April 8'; | 1-27704187-11 |
Where did they play and how many attended game number 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 "location_attendance" FROM "game_log" WHERE "game"=75; | 1-27704187-11 |
Who did the high rebounds in the game 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 "high_rebounds" FROM "game_log" WHERE "team"='Boston'; | 1-27704187-7 |
Where was the game against Detroit 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 "team"='Detroit'; | 1-27704187-7 |
What was the date of game #3? | 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 "date" FROM "game_log" WHERE "game"=3; | 1-27712180-13 |
What was the name of the opposing team on the May 6 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,
"series" text
); | SELECT "team" FROM "game_log" WHERE "date"='May 6'; | 1-27712180-13 |
How many data were given on 2010/2011 in Brazil? | CREATE TABLE "world_sugar_consumption_1000_metric_tons" (
"country" text,
"2007_08" real,
"2008_09" real,
"2009_10" real,
"2010_11" real,
"2011_12" real,
"2012_13" real
); | SELECT COUNT("2010_11") FROM "world_sugar_consumption_1000_metric_tons" WHERE "country"='Brazil'; | 1-27712-2 |
how many overall goals were scored at moses mabhida stadium? | CREATE TABLE "stadiums" (
"stadium" text,
"city" text,
"capacity" real,
"matches_played" real,
"overall_attendance" real,
"average_attendance_per_match" real,
"average_attendance_as_pct_of_capacity" text,
"overall_goals_scored" real,
"average_goals_scored_per_match" text,
"elevation" text
); | SELECT MAX("overall_goals_scored") FROM "stadiums" WHERE "stadium"='Moses Mabhida Stadium'; | 1-27708484-3 |
how many matches were played that average goals scored 1.25? | CREATE TABLE "stadiums" (
"stadium" text,
"city" text,
"capacity" real,
"matches_played" real,
"overall_attendance" real,
"average_attendance_per_match" real,
"average_attendance_as_pct_of_capacity" text,
"overall_goals_scored" real,
"average_goals_scored_per_match" text,
"elevation" text
); | SELECT COUNT("matches_played") FROM "stadiums" WHERE "average_goals_scored_per_match"='1.25'; | 1-27708484-3 |
what is the minimum overall attendance where the goals scored were 19? | CREATE TABLE "stadiums" (
"stadium" text,
"city" text,
"capacity" real,
"matches_played" real,
"overall_attendance" real,
"average_attendance_per_match" real,
"average_attendance_as_pct_of_capacity" text,
"overall_goals_scored" real,
"average_goals_scored_per_match" text,
"elevation" text
); | SELECT MIN("overall_attendance") FROM "stadiums" WHERE "overall_goals_scored"=19; | 1-27708484-3 |
what is the elevation for port elizabeth? | CREATE TABLE "stadiums" (
"stadium" text,
"city" text,
"capacity" real,
"matches_played" real,
"overall_attendance" real,
"average_attendance_per_match" real,
"average_attendance_as_pct_of_capacity" text,
"overall_goals_scored" real,
"average_goals_scored_per_match" text,
"elevation" text
); | SELECT "elevation" FROM "stadiums" WHERE "city"='Port Elizabeth'; | 1-27708484-3 |
what is the average attendance per match wheree the elevation is 1500 m? | CREATE TABLE "stadiums" (
"stadium" text,
"city" text,
"capacity" real,
"matches_played" real,
"overall_attendance" real,
"average_attendance_per_match" real,
"average_attendance_as_pct_of_capacity" text,
"overall_goals_scored" real,
"average_goals_scored_per_match" text,
"elevation" text
); | SELECT "average_attendance_per_match" FROM "stadiums" WHERE "elevation"='1500 m'; | 1-27708484-3 |
What is the record for the date november 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 "record" FROM "game_log" WHERE "date"='November 19'; | 1-27712180-6 |
Name the high points for w 90–77 (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"='W 90–77 (OT)'; | 1-27712180-7 |
Name the team for december 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"='December 18'; | 1-27712180-7 |
Who had the high assists against detroit? | 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"='Detroit'; | 1-27712702-11 |
Who was the other team on march 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 "date"='March 27'; | 1-27712702-11 |
what was the game number where the record was 46–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 MIN("game") FROM "game_log" WHERE "record"='46–24'; | 1-27712702-11 |
What was the game number on march 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 MIN("game") FROM "game_log" WHERE "date"='March 27'; | 1-27712702-11 |
What is the largest 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-27712702-11 |
How many high rebounds took place 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 COUNT("high_rebounds") FROM "game_log" WHERE "date"='December 8'; | 1-27712451-6 |
What are December 10's 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_points" FROM "game_log" WHERE "date"='December 10'; | 1-27712451-6 |
How many entries are shown for high rebounds for the philips arena 20,024 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 COUNT("high_rebounds") FROM "game_log" WHERE "location_attendance"='Philips Arena 20,024'; | 1-27713030-11 |
Who was the opponent for the game with a score of w 94–88 (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 94–88 (OT)'; | 1-27713030-11 |
What was the record for the location and attendance of american airlines arena 19,825? | 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 "location_attendance"='American Airlines Arena 19,825'; | 1-27713030-11 |
What were the high points on April 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 "date"='April 8'; | 1-27713030-12 |
How many different items appear in the high rebounds column in game 80? | 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"=80; | 1-27713030-12 |
What was the date when Boston was the 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"='Boston'; | 1-27713030-12 |
Which game was played on October 13? | 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"='October 13'; | 1-27713030-3 |
What is the location and attendance on October 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 "location_attendance" FROM "game_log" WHERE "date"='October 18'; | 1-27713030-3 |
Who was the opposing team in game 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 "game"=6; | 1-27713030-3 |
What game in the season does this list start? | 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-27713030-7 |
What was the team's score against detroit? | 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"='Detroit'; | 1-27713030-8 |
How many games were held 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 COUNT("game") FROM "game_log" WHERE "date"='March 12'; | 1-27715173-10 |
What was the team score when Tim Duncan (12) 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 "score" FROM "game_log" WHERE "high_rebounds"='Tim Duncan (12)'; | 1-27715173-10 |
Who was the high rebounder on game 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,
"series" text
); | SELECT "high_rebounds" FROM "game_log" WHERE "game"=1; | 1-27715173-12 |
What was the score for series 2–3? | 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 "score" FROM "game_log" WHERE "series"='2–3'; | 1-27715173-12 |
who are the directors of the episode that had 20.5 millions of north american viewers? | CREATE TABLE "table1_27714573_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT "directed_by" FROM "table1_27714573_1" WHERE "u_s_viewers_millions"='20.5'; | 1-27714573-1 |
how many millions of north american viewers had the episode whose director was Michael Lembeck? | CREATE TABLE "table1_27714573_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT "u_s_viewers_millions" FROM "table1_27714573_1" WHERE "directed_by"='Michael Lembeck'; | 1-27714573-1 |
who are the writers of the episode whose production code(s) is 225560? | CREATE TABLE "table1_27714573_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT "written_by" FROM "table1_27714573_1" WHERE "production_code_s"=225560; | 1-27714573-1 |
who are the writers of the episode called "The one on the last night"? | CREATE TABLE "table1_27714573_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT "written_by" FROM "table1_27714573_1" WHERE "title"='\"The One on the Last Night\"'; | 1-27714573-1 |
What is the last episode in the series written by Gregory S. Malins? | CREATE TABLE "table1_27714985_1" (
"no_s_in_series" real,
"no_s_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT MAX("no_s_in_series") FROM "table1_27714985_1" WHERE "written_by"='Gregory S. Malins'; | 1-27714985-1 |
What was the broadcast date of episodes that were watched by 23.2 million viewers? | CREATE TABLE "table1_27714985_1" (
"no_s_in_series" real,
"no_s_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT "original_air_date" FROM "table1_27714985_1" WHERE "u_s_viewers_millions"='23.2'; | 1-27714985-1 |
What is the original air date of the episode titled "The one where Chandler doesn't like dogs"? | CREATE TABLE "table1_27714985_1" (
"no_s_in_series" real,
"no_s_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT "original_air_date" FROM "table1_27714985_1" WHERE "title"='\"The One Where Chandler Doesn''t Like Dogs\"'; | 1-27714985-1 |
What is the maximum production code of an episode written by Patty Lin? | CREATE TABLE "table1_27714985_1" (
"no_s_in_series" real,
"no_s_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT MAX("production_code_s") FROM "table1_27714985_1" WHERE "written_by"='Patty Lin'; | 1-27714985-1 |
What is the episode number of the episode whose production code is 226407? | CREATE TABLE "table1_27714985_1" (
"no_s_in_series" real,
"no_s_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code_s" real,
"u_s_viewers_millions" text
); | SELECT MIN("no_s_in_season") FROM "table1_27714985_1" WHERE "production_code_s"=226407; | 1-27714985-1 |
What episode number in the series is "the one where everybody finds out"? | CREATE TABLE "table1_27713890_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real,
"u_s_viewers_millions" text
); | SELECT MAX("no_in_series") FROM "table1_27713890_1" WHERE "title"='\"The One Where Everybody Finds Out\"'; | 1-27713890-1 |
Wha episode number in the series had 24.8 million u.s. viewers? | CREATE TABLE "table1_27713890_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real,
"u_s_viewers_millions" text
); | SELECT MIN("no_in_series") FROM "table1_27713890_1" WHERE "u_s_viewers_millions"='24.8'; | 1-27713890-1 |
What is the production code that had 24.8 million u.s. viewers? | CREATE TABLE "table1_27713890_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real,
"u_s_viewers_millions" text
); | SELECT MAX("production_code") FROM "table1_27713890_1" WHERE "u_s_viewers_millions"='24.8'; | 1-27713890-1 |
What date did "the one with all the resolutions" originally air? | CREATE TABLE "table1_27713890_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real,
"u_s_viewers_millions" text
); | SELECT "original_air_date" FROM "table1_27713890_1" WHERE "title"='\"The One with All the Resolutions\"'; | 1-27713890-1 |
What is the production code for the episode that had 23.9 million u.s. viewers? | CREATE TABLE "table1_27713890_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real,
"u_s_viewers_millions" text
); | SELECT "production_code" FROM "table1_27713890_1" WHERE "u_s_viewers_millions"='23.9'; | 1-27713890-1 |
Where was the game played where the record was 10-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 "location_attendance" FROM "game_log" WHERE "record"='10-1'; | 1-27715173-6 |
What was the score for game 3? | 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 "game"=3; | 1-27715173-6 |
How many records are there for the game on 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 COUNT("record") FROM "game_log" WHERE "date"='November 24'; | 1-27715173-6 |
What date was the game with a score of w 116–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 "date" FROM "game_log" WHERE "score"='W 116–93 (OT)'; | 1-27715173-6 |
Who had the high assists when the score was w 107–95 (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–95 (OT)'; | 1-27715173-6 |
who put on the show where the numbers were 227412 | CREATE TABLE "table1_27716091_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real,
"u_s_viewers_millions" text
); | SELECT "directed_by" FROM "table1_27716091_1" WHERE "production_code"=227412; | 1-27716091-1 |
who put on the show where the numbers were 227424 | CREATE TABLE "table1_27716091_1" (
"no_in_series" real,
"no_in_season" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" real,
"u_s_viewers_millions" text
); | SELECT "directed_by" FROM "table1_27716091_1" WHERE "production_code"=227424; | 1-27716091-1 |
Who was the high rebounds of team @ Detroit? | 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"='@ Detroit'; | 1-27721131-10 |
What was the location attendance when Andray Blatche (9) got 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 "location_attendance" FROM "game_log" WHERE "high_rebounds"='Andray Blatche (9)'; | 1-27721131-10 |
What was the game record on March 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 "date"='March 6'; | 1-27721131-10 |
Who got high rebounds when Jordan Crawford (27) got 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"='Jordan Crawford (27)'; | 1-27721131-10 |
Who's in the high assists with a w 97–94 (ot) score? | 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 97–94 (OT)'; | 1-27721131-2 |
What's the maximum game in the javale mcgee (5) 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 MAX("game") FROM "game_log" WHERE "high_rebounds"='JaVale McGee (5)'; | 1-27721131-2 |
What's the score in andray blatche (17) 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"='Andray Blatche (17)'; | 1-27721131-2 |
Who's in the high rebounds in the verizon center 9,263 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"='Verizon Center 9,263'; | 1-27721131-2 |
What's the location attendance of the milwaukee 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"='Milwaukee'; | 1-27721131-2 |
What's the team number with John Wall (9) in high assists and a w 97–83 (ot) score? | 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("team") FROM "game_log" WHERE "high_assists"='John Wall (9)' AND "score"='W 97–83 (OT)'; | 1-27721131-2 |
Who had the highest assists during game 78? | 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"=78; | 1-27721131-11 |
What is the date where john wall (11) had the 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 "date" FROM "game_log" WHERE "high_assists"='John Wall (11)'; | 1-27721131-6 |
What is the team they played on november 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 "team" FROM "game_log" WHERE "date"='November 25'; | 1-27721131-6 |
What is the record for the game on november 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 "record" FROM "game_log" WHERE "date"='November 25'; | 1-27721131-6 |
Which team played them when andray blatche , javale mcgee (20) 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 "team" FROM "game_log" WHERE "high_points"='Andray Blatche , JaVale McGee (20)'; | 1-27721131-6 |
What was the score when andray blatche , al thornton (20) 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 "score" FROM "game_log" WHERE "high_points"='Andray Blatche , Al Thornton (20)'; | 1-27721131-6 |
How many games are shown against Houston? | 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 "team"='Houston'; | 1-27721131-6 |
How many teams listed for game 45? | 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("team") FROM "game_log" WHERE "game"=45; | 1-27721131-8 |
What was the score when the Celtics played Washington at home? | 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"='Washington'; | 1-27722408-11 |
Who had the most assists and how many did they have on April 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"='April 8'; | 1-27722408-11 |
Name the total number of record for 61 | 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"=61; | 1-27722408-10 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.