question stringlengths 12 244 | create_table_statement stringlengths 97 895 | sql_query stringlengths 27 479 | wiki_sql_table_id stringlengths 8 14 |
|---|---|---|---|
When vince carter (24) has the highest points how many teams are there? | 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_points"='Vince Carter (24)'; | 1-23249053-11 |
In which championship did John Newcombe play against Ken Rosewall in the final match? | CREATE TABLE "singles_10_7_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"opponent_in_the_final" text,
"score_in_the_final" text
); | SELECT "championship" FROM "singles_10_7_titles_3_runner_ups" WHERE "opponent_in_the_final"='Ken Rosewall'; | 1-23259077-1 |
What were the scores of the Wimbledon final matches where Newcombe was the runner-up? | CREATE TABLE "singles_10_7_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"opponent_in_the_final" text,
"score_in_the_final" text
); | SELECT "score_in_the_final" FROM "singles_10_7_titles_3_runner_ups" WHERE "outcome"='Runner-up' AND "championship"='Wimbledon'; | 1-23259077-1 |
On what year did Newcombe first face Clark Graebner in a final match? | CREATE TABLE "singles_10_7_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"opponent_in_the_final" text,
"score_in_the_final" text
); | SELECT MIN("year") FROM "singles_10_7_titles_3_runner_ups" WHERE "opponent_in_the_final"='Clark Graebner'; | 1-23259077-1 |
What was the outcome for Newcombe in the matches he played against Jan Kodeš? | CREATE TABLE "singles_10_7_titles_3_runner_ups" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"opponent_in_the_final" text,
"score_in_the_final" text
); | SELECT "outcome" FROM "singles_10_7_titles_3_runner_ups" WHERE "opponent_in_the_final"='Jan Kodeš'; | 1-23259077-1 |
How many writers were there in the episode directed by Charles Haid? | CREATE TABLE "table1_23255941_1" (
"episode_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"viewers_in_millions" text
); | SELECT COUNT("written_by") FROM "table1_23255941_1" WHERE "directed_by"='Charles Haid'; | 1-23255941-1 |
What was the original air date of "Hothead"? | CREATE TABLE "table1_23255941_1" (
"episode_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"viewers_in_millions" text
); | SELECT "original_air_date" FROM "table1_23255941_1" WHERE "title"='\"Hothead\"'; | 1-23255941-1 |
What was the title of the episode written by Mark Goffman? | CREATE TABLE "table1_23255941_1" (
"episode_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"viewers_in_millions" text
); | SELECT "title" FROM "table1_23255941_1" WHERE "written_by"='Mark Goffman'; | 1-23255941-1 |
How many original air dates did episode 12 have?h | CREATE TABLE "table1_23255941_1" (
"episode_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"viewers_in_millions" text
); | SELECT COUNT("original_air_date") FROM "table1_23255941_1" WHERE "episode_num"=12; | 1-23255941-1 |
How many millions of viewers watched the episode directed by Christine Moore? | CREATE TABLE "table1_23255941_1" (
"episode_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"viewers_in_millions" text
); | SELECT "viewers_in_millions" FROM "table1_23255941_1" WHERE "directed_by"='Christine Moore'; | 1-23255941-1 |
Name the number of date for w 107–97 (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 COUNT("date") FROM "game_log" WHERE "score"='W 107–97 (OT)'; | 1-23274514-7 |
Name the date for 17-32 | 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"='17-32'; | 1-23274514-7 |
Name the high rebounds for 17-33 | 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"='17-33'; | 1-23274514-7 |
Name the team for 19-34 | 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 "record"='19-34'; | 1-23274514-7 |
How many models have maximum power output is 162kw (220 ps) at 6,300 rpm? | CREATE TABLE "specifications" (
"model" text,
"engine" text,
"displacement" text,
"max_power_output" text,
"peak_torque" text,
"0_100km_h_s_0_62mph_s" text,
"top_speed" text,
"co_2_emissions" text,
"years" text,
"note" text,
"engine_code" text
); | SELECT COUNT("model") FROM "specifications" WHERE "max_power_output"='162kW (220 PS) at 6,300 rpm'; | 1-2326823-2 |
List the model with that can accelerate from 0-62 MPH in 9.2 seconds. | CREATE TABLE "specifications" (
"model" text,
"engine" text,
"displacement" text,
"max_power_output" text,
"peak_torque" text,
"0_100km_h_s_0_62mph_s" text,
"top_speed" text,
"co_2_emissions" text,
"years" text,
"note" text,
"engine_code" text
); | SELECT "model" FROM "specifications" WHERE "0_100km_h_s_0_62mph_s"='9.2'; | 1-2326823-2 |
List the amount of carbon emissions for models that go from 0-62 MPH in 8.5 seconds. | CREATE TABLE "specifications" (
"model" text,
"engine" text,
"displacement" text,
"max_power_output" text,
"peak_torque" text,
"0_100km_h_s_0_62mph_s" text,
"top_speed" text,
"co_2_emissions" text,
"years" text,
"note" text,
"engine_code" text
); | SELECT "co_2_emissions" FROM "specifications" WHERE "0_100km_h_s_0_62mph_s"='8.5'; | 1-2326823-2 |
List the highest power output level for models that go from 0-62 MPH in 8.5 seconds. | CREATE TABLE "specifications" (
"model" text,
"engine" text,
"displacement" text,
"max_power_output" text,
"peak_torque" text,
"0_100km_h_s_0_62mph_s" text,
"top_speed" text,
"co_2_emissions" text,
"years" text,
"note" text,
"engine_code" text
); | SELECT "max_power_output" FROM "specifications" WHERE "0_100km_h_s_0_62mph_s"='8.5'; | 1-2326823-2 |
List the max power produced for model 2.0 ts with peak of n·m (lb·ft) at 3,500 rpm. | CREATE TABLE "specifications" (
"model" text,
"engine" text,
"displacement" text,
"max_power_output" text,
"peak_torque" text,
"0_100km_h_s_0_62mph_s" text,
"top_speed" text,
"co_2_emissions" text,
"years" text,
"note" text,
"engine_code" text
); | SELECT "max_power_output" FROM "specifications" WHERE "model"='2.0 TS' AND "peak_torque"='N·m (lb·ft) at 3,500 rpm'; | 1-2326823-2 |
Who had the highest points during the game with a record of 2-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_points" FROM "game_log" WHERE "record"='2-7'; | 1-23274514-4 |
What team did the Wizards play against when their record was 2-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 "team" FROM "game_log" WHERE "record"='2-5'; | 1-23274514-4 |
Who tied in the highest point scorer when playing against Phoenix? | 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"='Phoenix'; | 1-23274514-4 |
Which season used production code "am10"? | CREATE TABLE "table1_23279434_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("season_num") FROM "table1_23279434_1" WHERE "production_code"='AM10'; | 1-23279434-1 |
When did Jeremy Kagan's episode first air? | CREATE TABLE "table1_23279434_1" (
"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 "table1_23279434_1" WHERE "directed_by"='Jeremy Kagan'; | 1-23279434-1 |
What seasons in series 7 did David E. Kelley write ? | CREATE TABLE "table1_23279434_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("season_num") FROM "table1_23279434_1" WHERE "written_by"='David E. Kelley' AND "series_num"=7; | 1-23279434-1 |
Name the total number of date for score being l 106–116 (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 COUNT("date") FROM "game_log" WHERE "score"='L 106–116 (OT)'; | 1-23281862-10 |
Name the record for charlotte | 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"='Charlotte'; | 1-23281862-10 |
Name the most game for w 113–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 MAX("game") FROM "game_log" WHERE "score"='W 113–96 (OT)'; | 1-23281862-10 |
What was the score when the record was 22-53? | 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 "record"='22-53'; | 1-23274514-9 |
What was the score when the record was 22-53? | 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 "record"='22-53'; | 1-23274514-9 |
What was the record when they played golden state? | 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"='Golden State'; | 1-23274514-9 |
How many percentages (2006) are there for the population whose mother tongue is French? | CREATE TABLE "demographics" (
"mother_tongue" text,
"population_2006" real,
"percentage_2006" text,
"population_2011" real,
"percentage_2011" text
); | SELECT COUNT("percentage_2006") FROM "demographics" WHERE "mother_tongue"='French'; | 1-2328113-1 |
What was the minimum population in 2011? | CREATE TABLE "demographics" (
"mother_tongue" text,
"population_2006" real,
"percentage_2006" text,
"population_2011" real,
"percentage_2011" text
); | SELECT MIN("population_2011") FROM "demographics"; | 1-2328113-1 |
What was the percentage in 2006 whose natives is Polish? | CREATE TABLE "demographics" (
"mother_tongue" text,
"population_2006" real,
"percentage_2006" text,
"population_2011" real,
"percentage_2011" text
); | SELECT "percentage_2006" FROM "demographics" WHERE "mother_tongue"='Polish'; | 1-2328113-1 |
Name the location attendance for dirk nowitzki , caron butler (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,
"series" text
); | SELECT "location_attendance" FROM "game_log" WHERE "high_points"='Dirk Nowitzki , Caron Butler (17)'; | 1-23284271-11 |
Name the location attendance for 4 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 "location_attendance" FROM "game_log" WHERE "game"=4; | 1-23284271-11 |
Name the date for l 89–92 (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,
"series" text
); | SELECT "date" FROM "game_log" WHERE "score"='L 89–92 (OT)'; | 1-23284271-11 |
Name the high assists for 1-2 series | 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_assists" FROM "game_log" WHERE "series"='1-2'; | 1-23284271-11 |
Name the high rebounds for american airlines center 20,557 | 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 "location_attendance"='American Airlines Center 20,557'; | 1-23284271-11 |
Name the score for december 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 COUNT("score") FROM "game_log" WHERE "date"='December 27'; | 1-23284271-6 |
Name the total number of high points for pepsi center 19,756 | 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 "location_attendance"='Pepsi Center 19,756'; | 1-23284271-6 |
Name the opponent in the final for 3–6, 1–6 | CREATE TABLE "singles_26_16_titles_10_runners_up" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"opponent_in_the_final" text,
"score_in_the_final" text
); | SELECT "opponent_in_the_final" FROM "singles_26_16_titles_10_runners_up" WHERE "score_in_the_final"='3–6, 1–6'; | 1-23284597-3 |
Name the year for guillermo cañas | CREATE TABLE "singles_26_16_titles_10_runners_up" (
"outcome" text,
"year" real,
"championship" text,
"surface" text,
"opponent_in_the_final" text,
"score_in_the_final" text
); | SELECT "year" FROM "singles_26_16_titles_10_runners_up" WHERE "opponent_in_the_final"='Guillermo Cañas'; | 1-23284597-3 |
What was the score for 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 "score" FROM "game_log" WHERE "team"='Houston'; | 1-23285761-10 |
Name the number of records for 30 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("record") FROM "game_log" WHERE "game"=30; | 1-23285805-5 |
Name the team for december 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 "team" FROM "game_log" WHERE "date"='December 19'; | 1-23285805-5 |
What location and how many people were in attendance where the record was 9-4 for 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 "location_attendance" FROM "game_log" WHERE "record"='9-4'; | 1-23285849-5 |
How scored the most points where the record is 3-0 for 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 "high_points" FROM "game_log" WHERE "record"='3-0'; | 1-23285849-5 |
When chauncey billups (7) has the highest amount of assists what is the 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 "score" FROM "game_log" WHERE "high_assists"='Chauncey Billups (7)'; | 1-23285849-10 |
When j.r. smith (26) has the highest amount of points what is the 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 "score" FROM "game_log" WHERE "high_points"='J.R. Smith (26)'; | 1-23285849-10 |
When the clippers are the team how many games are there? | 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"='Clippers'; | 1-23285849-10 |
When aaron afflalo (9) has the highest amount of rebounds what is the 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 "score" FROM "game_log" WHERE "high_rebounds"='Aaron Afflalo (9)'; | 1-23285849-10 |
When chauncey billups (4) has the highest amount of assists who has the highest amount of 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 "high_assists"='Chauncey Billups (4)'; | 1-23285849-10 |
When carmelo anthony (39) has the highest amount of points where is the location and what is the 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,
"series" text
); | SELECT "location_attendance" FROM "game_log" WHERE "high_points"='Carmelo Anthony (39)'; | 1-23285849-11 |
When carmelo anthony (42) has the highest amount of points how many measurements of highest rebounds are there? | 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 COUNT("high_rebounds") FROM "game_log" WHERE "high_points"='Carmelo Anthony (42)'; | 1-23285849-11 |
Name the record for l 106–116 (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 106–116 (OT)'; | 1-23285849-8 |
Name the high points for the staples center 18,997 | 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 "location_attendance"='Staples Center 18,997'; | 1-23285849-8 |
What was the date of the game when the record was 27-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 "date" FROM "game_log" WHERE "record"='27-14'; | 1-23285849-7 |
Who had the most points in the game where the score was w 97–92 (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 97–92 (OT)'; | 1-23285849-7 |
What was the record when the timberwolves were 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 "record" FROM "game_log" WHERE "team"='Timberwolves'; | 1-23285849-7 |
How many players has the highest points in the game against the Heat? | 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 "team"='Heat'; | 1-23285849-6 |
Who tied for highest rebounds in 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 "high_rebounds" FROM "game_log" WHERE "game"=29; | 1-23285849-6 |
Where was game number 5 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,
"series" text
); | SELECT "location_attendance" FROM "game_log" WHERE "game"=5; | 1-23286112-12 |
Who had the highest rebounds in game 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,
"series" text
); | SELECT "high_rebounds" FROM "game_log" WHERE "game"=2; | 1-23286112-12 |
What date was the series 0-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,
"series" text
); | SELECT "date" FROM "game_log" WHERE "series"='0-2'; | 1-23286112-12 |
Which series were played on April 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,
"series" text
); | SELECT "series" FROM "game_log" WHERE "date"='April 18'; | 1-23286112-12 |
What series had high rebounds with Marcus Camby (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 "series" FROM "playoffs" WHERE "high_rebounds"='Marcus Camby (11)'; | 1-23286158-11 |
What was the series where the game was 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-23286158-11 |
What is the score when high points were Andre Miller (31)? | 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 "high_points"='Andre Miller (31)'; | 1-23286158-11 |
What is the score in game 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 "score" FROM "playoffs" WHERE "game"=3; | 1-23286158-11 |
When marcus camby (15) has the highest amount of rebounds who has the highest amount of 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 "high_rebounds"='Marcus Camby (15)'; | 1-23286158-10 |
When 48-30 is the record who has the highest amount of 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 "record"='48-30'; | 1-23286158-10 |
When 78 is the game and brandon roy (6) has the highest amount of assists how many locations/attendances are there? | 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 "high_assists"='Brandon Roy (6)' AND "game"=78; | 1-23286158-10 |
When marcus camby (15) has the highest amount of rebounds what is the date? | 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"='Marcus Camby (15)'; | 1-23286158-10 |
When did the Portland Trail Blazers play against 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 "date" FROM "game_log" WHERE "team"='Cleveland'; | 1-23286158-7 |
What is the highest series number of the episode "The New Day"? | CREATE TABLE "table1_23287683_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT MAX("series_num") FROM "table1_23287683_1" WHERE "title"='\"The New Day\"'; | 1-23287683-1 |
How many episodes were directed by Sarah Pia Anderson? | CREATE TABLE "table1_23287683_1" (
"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 "table1_23287683_1" WHERE "directed_by"='Sarah Pia Anderson'; | 1-23287683-1 |
List all season numbers with production codes of 5m21. | CREATE TABLE "table1_23287683_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "season_num" FROM "table1_23287683_1" WHERE "production_code"='5M21'; | 1-23287683-1 |
Who directed the episode "Woman"? | CREATE TABLE "table1_23287683_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "directed_by" FROM "table1_23287683_1" WHERE "title"='\"Woman\"'; | 1-23287683-1 |
How many episodes had a series number of 95? | CREATE TABLE "table1_23287683_1" (
"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 "table1_23287683_1" WHERE "series_num"=95; | 1-23287683-1 |
Name the total number of season for production code 3m17 | CREATE TABLE "table1_23286722_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT COUNT("season_num") FROM "table1_23286722_1" WHERE "production_code"='3M17'; | 1-23286722-1 |
Name the directed by season # 2 | CREATE TABLE "table1_23286722_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "directed_by" FROM "table1_23286722_1" WHERE "season_num"=2; | 1-23286722-1 |
Name the directed by for "blue christmas" | CREATE TABLE "table1_23286722_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT "directed_by" FROM "table1_23286722_1" WHERE "title"='\"Blue Christmas\"'; | 1-23286722-1 |
Name least series number for writers david e. kelley & jill goldsmith | CREATE TABLE "table1_23286722_1" (
"series_num" real,
"season_num" real,
"title" text,
"directed_by" text,
"written_by" text,
"original_air_date" text,
"production_code" text
); | SELECT MIN("series_num") FROM "table1_23286722_1" WHERE "written_by"='David E. Kelley & Jill Goldsmith'; | 1-23286722-1 |
How many episodes are numbered 12x03? | CREATE TABLE "table1_23292220_13" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"jons_team" text,
"scores" text
); | SELECT COUNT("first_broadcast") FROM "table1_23292220_13" WHERE "episode"='12x03'; | 1-23292220-13 |
Who was on Jon's team when Sean's team had Matthew Crosby and Kimberly Wyatt? | CREATE TABLE "table1_23292220_13" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"jons_team" text,
"scores" text
); | SELECT "jons_team" FROM "table1_23292220_13" WHERE "seans_team"='Matthew Crosby and Kimberly Wyatt'; | 1-23292220-13 |
What was the episode that had Jack Dee and Stacey Solomon on Sean's team? | CREATE TABLE "table1_23292220_13" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"jons_team" text,
"scores" text
); | SELECT "episode" FROM "table1_23292220_13" WHERE "seans_team"='Jack Dee and Stacey Solomon'; | 1-23292220-13 |
What was the score in the episode that had Louie Spence and Joe Wilkinson on Sean's team? | CREATE TABLE "table1_23292220_13" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"jons_team" text,
"scores" text
); | SELECT "scores" FROM "table1_23292220_13" WHERE "seans_team"='Louie Spence and Joe Wilkinson'; | 1-23292220-13 |
What was the score on the episode that had Russell Kane and Louise Redknapp on Sean's team? | CREATE TABLE "table1_23292220_13" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"jons_team" text,
"scores" text
); | SELECT "scores" FROM "table1_23292220_13" WHERE "seans_team"='Russell Kane and Louise Redknapp'; | 1-23292220-13 |
In which episode is Sean's team made up of Krishnan Guru-Murthy and Vic Reeves? | CREATE TABLE "series_3" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT "episode" FROM "series_3" WHERE "seans_team"='Krishnan Guru-Murthy and Vic Reeves'; | 1-23292220-3 |
What is the first broadcast date of the episode in which Dave's team is made up of Dave Johns and Sally Lindsay? | CREATE TABLE "series_3" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT "first_broadcast" FROM "series_3" WHERE "daves_team"='Dave Johns and Sally Lindsay'; | 1-23292220-3 |
What was the first broadcast date of the episode in which Sean's team is made up of Peter Serafinowicz and Johnny Vegas? | CREATE TABLE "series_3" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT "first_broadcast" FROM "series_3" WHERE "seans_team"='Peter Serafinowicz and Johnny Vegas'; | 1-23292220-3 |
In how many episodes was Dave's team made up of David Walliams and Louis Walsh? | CREATE TABLE "series_3" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT COUNT("episode") FROM "series_3" WHERE "daves_team"='David Walliams and Louis Walsh'; | 1-23292220-3 |
Which episode has boy george and lee mack on dave's team? | CREATE TABLE "series_4" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT "episode" FROM "series_4" WHERE "daves_team"='Boy George and Lee Mack'; | 1-23292220-4 |
How many daves team entries are there on 27 october 2006? | CREATE TABLE "series_4" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT COUNT("daves_team") FROM "series_4" WHERE "first_broadcast"='27 October 2006'; | 1-23292220-4 |
Which episode has ulrika jonsson and michael mcintyre on sean's team? | CREATE TABLE "series_4" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT "episode" FROM "series_4" WHERE "seans_team"='Ulrika Jonsson and Michael McIntyre'; | 1-23292220-4 |
What was the score in the episode with john barrowman and vic reeves on sean's team? | CREATE TABLE "series_4" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT "scores" FROM "series_4" WHERE "seans_team"='John Barrowman and Vic Reeves'; | 1-23292220-4 |
What was the first broadcast date of episode 4x03? | CREATE TABLE "series_4" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"daves_team" text,
"scores" text
); | SELECT "first_broadcast" FROM "series_4" WHERE "episode"='4x03'; | 1-23292220-4 |
Name the first broadcast for trisha goddard and glenn wool | CREATE TABLE "series_5" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"jasons_team" text,
"scores" text
); | SELECT "first_broadcast" FROM "series_5" WHERE "jasons_team"='Trisha Goddard and Glenn Wool'; | 1-23292220-5 |
Name the number of scores for 5x06 | CREATE TABLE "series_5" (
"episode" text,
"first_broadcast" text,
"seans_team" text,
"jasons_team" text,
"scores" text
); | SELECT COUNT("scores") FROM "series_5" WHERE "episode"='5x06'; | 1-23292220-5 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.