question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What district is Samuel A. Bridges ( D ) assigned to as a successor?
CREATE TABLE "table1_228439_4" ( "district" text, "vacator" text, "reason_for_change" text, "successor" text, "date_successor_seated" text );
SELECT "district" FROM "table1_228439_4" WHERE "successor"='Samuel A. Bridges ( D )';
1-228439-4
what was the reason Richard K. Meade ( d ) became a successor?
CREATE TABLE "table1_228439_4" ( "district" text, "vacator" text, "reason_for_change" text, "successor" text, "date_successor_seated" text );
SELECT "reason_for_change" FROM "table1_228439_4" WHERE "successor"='Richard K. Meade ( D )';
1-228439-4
Who is the successor for massachusetts 8th?
CREATE TABLE "table1_228439_4" ( "district" text, "vacator" text, "reason_for_change" text, "successor" text, "date_successor_seated" text );
SELECT "successor" FROM "table1_228439_4" WHERE "district"='Massachusetts 8th';
1-228439-4
Name the opponent for 11-1
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "cards_points" real, "opp_points" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "record"='11-1';
1-22847880-2
Name the record for kentucky
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "cards_points" real, "opp_points" real, "record" text );
SELECT "record" FROM "schedule" WHERE "opponent"='Kentucky';
1-22847880-2
Who is the opponent in the match with final score 3–6, 4–6, 7–5, 4–6?
CREATE TABLE "singles_15_8_titles_7_runner_ups" ( "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_15_8_titles_7_runner_ups" WHERE "score_in_the_final"='3–6, 4–6, 7–5, 4–6';
1-22839669-1
What was the outcome of the match with score 4–6, 3–6, 2–6?
CREATE TABLE "singles_15_8_titles_7_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "outcome" FROM "singles_15_8_titles_7_runner_ups" WHERE "score_in_the_final"='4–6, 3–6, 2–6';
1-22839669-1
What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7?
CREATE TABLE "singles_15_8_titles_7_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT MAX("year") FROM "singles_15_8_titles_7_runner_ups" WHERE "score_in_the_final"='4–6, 3–6, 6–4, 5–7';
1-22839669-1
What championship had a final score of 6–4, 6–2, 6–2?
CREATE TABLE "singles_15_8_titles_7_runner_ups" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "championship" FROM "singles_15_8_titles_7_runner_ups" WHERE "score_in_the_final"='6–4, 6–2, 6–2';
1-22839669-1
If the year is 2007, what is the top ten?
CREATE TABLE "lpga_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "top_10s" real, "best_finish" text, "earnings" real, "money_list_rank" real, "scoring_average" text, "scoring_rank" real );
SELECT "top_10s" FROM "lpga_tour_career_summary" WHERE "year"=2007;
1-22838521-3
What is the possible maximum money list rank?
CREATE TABLE "lpga_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "top_10s" real, "best_finish" text, "earnings" real, "money_list_rank" real, "scoring_average" text, "scoring_rank" real );
SELECT MAX("money_list_rank") FROM "lpga_tour_career_summary";
1-22838521-3
If the scoring average is 72.46, what is the best finish?
CREATE TABLE "lpga_tour_career_summary" ( "year" real, "tournaments_played" real, "cuts_made" real, "wins" real, "2nd" real, "top_10s" real, "best_finish" text, "earnings" real, "money_list_rank" real, "scoring_average" text, "scoring_rank" real );
SELECT "best_finish" FROM "lpga_tour_career_summary" WHERE "scoring_average"='72.46';
1-22838521-3
Name the result for wesley moodie
CREATE TABLE "singles_14" ( "edition" text, "round" text, "date" text, "against" text, "surface" text, "opponent" text, "w_l" text, "result" text );
SELECT "result" FROM "singles_14" WHERE "opponent"='Wesley Moodie';
1-22853654-9
Name the surface against monaco
CREATE TABLE "singles_14" ( "edition" text, "round" text, "date" text, "against" text, "surface" text, "opponent" text, "w_l" text, "result" text );
SELECT "surface" FROM "singles_14" WHERE "against"='Monaco';
1-22853654-9
Name the result for alexander shvec
CREATE TABLE "singles_14" ( "edition" text, "round" text, "date" text, "against" text, "surface" text, "opponent" text, "w_l" text, "result" text );
SELECT "result" FROM "singles_14" WHERE "opponent"='Alexander Shvec';
1-22853654-9
Name the opponent for 3–6, 4–6, 6–1, 6–7 (7–9)
CREATE TABLE "singles_14" ( "edition" text, "round" text, "date" text, "against" text, "surface" text, "opponent" text, "w_l" text, "result" text );
SELECT "opponent" FROM "singles_14" WHERE "result"='3–6, 4–6, 6–1, 6–7 (7–9)';
1-22853654-9
Name the annual rainfail for 2002 population being 493984
CREATE TABLE "table1_22854436_1" ( "administrative_region" text, "population_2002_census_data" real, "surface_km_2" real, "main_rivers" text, "average_annual_rainfall_mm" text, "average_annual_runoff_mm" text, "per_capita_average_annual_renewable_water_resources_m_3" real );
SELECT "average_annual_rainfall_mm" FROM "table1_22854436_1" WHERE "population_2002_census_data"=493984;
1-22854436-1
Name the most population 2002
CREATE TABLE "table1_22854436_1" ( "administrative_region" text, "population_2002_census_data" real, "surface_km_2" real, "main_rivers" text, "average_annual_rainfall_mm" text, "average_annual_runoff_mm" text, "per_capita_average_annual_renewable_water_resources_m_3" real );
SELECT MAX("population_2002_census_data") FROM "table1_22854436_1";
1-22854436-1
Name the total water resources m3 for rainfall being 650
CREATE TABLE "table1_22854436_1" ( "administrative_region" text, "population_2002_census_data" real, "surface_km_2" real, "main_rivers" text, "average_annual_rainfall_mm" text, "average_annual_runoff_mm" text, "per_capita_average_annual_renewable_water_resources_m_3" real );
SELECT COUNT("per_capita_average_annual_renewable_water_resources_m_3") FROM "table1_22854436_1" WHERE "average_annual_rainfall_mm"='650';
1-22854436-1
What were the carpet w-l in 1993?
CREATE TABLE "career_singles_statistics" ( "year" real, "tournaments" real, "titles" real, "hardcourt_w_l" text, "clay_w_l" text, "grass_w_l" text, "carpet_w_l" text, "overall_w_l" text, "win_pct" text, "year_end_ranking" text );
SELECT "carpet_w_l" FROM "career_singles_statistics" WHERE "year"=1993;
1-22860698-8
What is the amount of US open runner-up score?
CREATE TABLE "grand_slam_7_finals_3_titles_4_runner_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_final" text, "score_in_final" text );
SELECT COUNT("score_in_final") FROM "grand_slam_7_finals_3_titles_4_runner_up" WHERE "championship"='US Open' AND "outcome"='Runner-up';
1-22858557-1
What is the year where the runner-up outcome was at its basic minimum?
CREATE TABLE "grand_slam_7_finals_3_titles_4_runner_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_final" text, "score_in_final" text );
SELECT MIN("year") FROM "grand_slam_7_finals_3_titles_4_runner_up" WHERE "outcome"='Runner-up';
1-22858557-1
How many championships have there been with Steffi Graf?
CREATE TABLE "grand_slam_7_finals_3_titles_4_runner_up" ( "outcome" text, "year" real, "championship" text, "surface" text, "opponent_in_final" text, "score_in_final" text );
SELECT "championship" FROM "grand_slam_7_finals_3_titles_4_runner_up" WHERE "opponent_in_final"='Steffi Graf';
1-22858557-1
How many opponents have wimbledon (2) as the championship?
CREATE TABLE "doubles_37_31_6" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT COUNT("opponents") FROM "doubles_37_31_6" WHERE "championship"='Wimbledon (2)';
1-22860698-2
What is the surface when the us open is the championship in the year 1979?
CREATE TABLE "doubles_37_31_6" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "surface" FROM "doubles_37_31_6" WHERE "championship"='US Open' AND "year"=1979;
1-22860698-2
What is the game number that was on November 27?
CREATE TABLE "game_log" ( "num" real, "date" text, "team" text, "score" text, "location_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT "num" FROM "game_log" WHERE "date"='November 27';
1-22871239-5
What was the score when the team was @ New Jersey?
CREATE TABLE "game_log" ( "num" real, "date" text, "team" text, "score" text, "location_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT "score" FROM "game_log" WHERE "team"='@ New Jersey';
1-22871239-5
How many high rebound catagories are listed for game number 5?
CREATE TABLE "game_log" ( "num" real, "date" text, "team" text, "score" text, "location_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT COUNT("high_rebounds") FROM "game_log" WHERE "num"=5;
1-22871239-5
Who were the opponents when the record was 11-2?
CREATE TABLE "season_schedule" ( "date" text, "location" text, "opponent" text, "terps_points" real, "opp_points" real, "record" text );
SELECT "opponent" FROM "season_schedule" WHERE "record"='11-2';
1-22862203-2
What were the records when the opponents had 50 points?
CREATE TABLE "season_schedule" ( "date" text, "location" text, "opponent" text, "terps_points" real, "opp_points" real, "record" text );
SELECT "record" FROM "season_schedule" WHERE "opp_points"=50;
1-22862203-2
What are the terps points for the nov. 25/05 game?
CREATE TABLE "season_schedule" ( "date" text, "location" text, "opponent" text, "terps_points" real, "opp_points" real, "record" text );
SELECT "terps_points" FROM "season_schedule" WHERE "date"='Nov. 25/05';
1-22862203-2
Where were games played when the record was 9-1?
CREATE TABLE "season_schedule" ( "date" text, "location" text, "opponent" text, "terps_points" real, "opp_points" real, "record" text );
SELECT "location" FROM "season_schedule" WHERE "record"='9-1';
1-22862203-2
What is the highest number of terps points in games where the opponent made 53 points?
CREATE TABLE "season_schedule" ( "date" text, "location" text, "opponent" text, "terps_points" real, "opp_points" real, "record" text );
SELECT MAX("terps_points") FROM "season_schedule" WHERE "opp_points"=53;
1-22862203-2
Where was the game on jan. 16/06 played?
CREATE TABLE "season_schedule" ( "date" text, "location" text, "opponent" text, "terps_points" real, "opp_points" real, "record" text );
SELECT "location" FROM "season_schedule" WHERE "date"='Jan. 16/06';
1-22862203-2
Name the high points for 21-45 record
CREATE TABLE "game_log" ( "num" real, "date" text, "visitor" text, "score" text, "arena_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT COUNT("high_points") FROM "game_log" WHERE "record"='21-45';
1-22871239-9
Name the visitor for march 23
CREATE TABLE "game_log" ( "num" real, "date" text, "visitor" text, "score" text, "arena_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT "visitor" FROM "game_log" WHERE "date"='March 23';
1-22871239-9
Name the high rebounds for td garden 18,624
CREATE TABLE "game_log" ( "num" real, "date" text, "visitor" text, "score" text, "arena_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "arena_attendance"='TD Garden 18,624';
1-22871239-9
Name the record for march 16
CREATE TABLE "game_log" ( "num" real, "date" text, "visitor" text, "score" text, "arena_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT "record" FROM "game_log" WHERE "date"='March 16';
1-22871239-9
Name the total number for score l 110-112
CREATE TABLE "game_log" ( "num" real, "date" text, "team" text, "score" text, "location_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT COUNT("num") FROM "game_log" WHERE "score"='L 110-112';
1-22871239-8
Name the team for w 125-115 score
CREATE TABLE "game_log" ( "num" real, "date" text, "team" text, "score" text, "location_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT "team" FROM "game_log" WHERE "score"='W 125-115';
1-22871239-8
Name the high assists for american airlines center 19,585
CREATE TABLE "game_log" ( "num" real, "date" text, "team" text, "score" text, "location_attendance" text, "high_points" text, "high_rebounds" text, "high_assists" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "location_attendance"='American Airlines Center 19,585';
1-22871239-8
Who has the high points when 3-2 is the 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_points" FROM "game_log" WHERE "series"='3-2';
1-22871316-11
Who has the high assists when 0-1 is the 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"='0-1';
1-22871316-11
How many high rebounds are in series 3-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 COUNT("high_rebounds") FROM "game_log" WHERE "series"='3-3';
1-22871316-11
How many games are on the date of April 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, "series" text );
SELECT MIN("game") FROM "game_log" WHERE "date"='April 30';
1-22871316-11
Who did the high points in the game played on 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 "high_points" FROM "game_log" WHERE "date"='December 18';
1-22871316-6
Who did the high points in the game played on December 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 "high_points" FROM "game_log" WHERE "date"='December 2';
1-22871316-6
What's the record of the game in which Carlos Delfino (17) 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 "record" FROM "game_log" WHERE "high_points"='Carlos Delfino (17)';
1-22871316-6
Who did the high rebounds in the game in which Brandon Jennings (8) did 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_rebounds" FROM "game_log" WHERE "high_assists"='Brandon Jennings (8)';
1-22871316-6
Which player has 18-50 .360 field goals?
CREATE TABLE "player_stats" ( "player" text, "field_goals" text, "three_pointers" text, "free_throws" text, "assists" real, "steals" real, "rebounds" text, "points" text );
SELECT "player" FROM "player_stats" WHERE "field_goals"='18-50 .360';
1-22875514-3
What is the most assists for points 129-3.9?
CREATE TABLE "player_stats" ( "player" text, "field_goals" text, "three_pointers" text, "free_throws" text, "assists" real, "steals" real, "rebounds" text, "points" text );
SELECT MAX("assists") FROM "player_stats" WHERE "points"='129-3.9';
1-22875514-3
Which player has 18-50 .360 field goals?
CREATE TABLE "player_stats" ( "player" text, "field_goals" text, "three_pointers" text, "free_throws" text, "assists" real, "steals" real, "rebounds" text, "points" text );
SELECT "player" FROM "player_stats" WHERE "field_goals"='18-50 .360';
1-22875514-3
Name the date for irish points being 89
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "irish_points" real, "opp_points" real, "record" text );
SELECT "date" FROM "schedule" WHERE "irish_points"=89;
1-22875369-3
Name the number of location for 22-1
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "irish_points" real, "opp_points" real, "record" text );
SELECT COUNT("location") FROM "schedule" WHERE "record"='22-1';
1-22875369-3
Name the opponent for 2-27-10
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "irish_points" real, "opp_points" real, "record" text );
SELECT "opponent" FROM "schedule" WHERE "date"='2-27-10';
1-22875369-3
Name the max irish points for eastern michigan
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "irish_points" real, "opp_points" real, "record" text );
SELECT MAX("irish_points") FROM "schedule" WHERE "opponent"='Eastern Michigan';
1-22875369-3
Name the irish points for 23-1 record
CREATE TABLE "schedule" ( "date" text, "location" text, "opponent" text, "irish_points" real, "opp_points" real, "record" text );
SELECT "irish_points" FROM "schedule" WHERE "record"='23-1';
1-22875369-3
Name the number of high rebounds for l 92–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, "series" text );
SELECT COUNT("high_rebounds") FROM "game_log" WHERE "score"='L 92–96 (OT)';
1-22879262-14
what ist he date of 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-22879262-7
what is the location attendance for game 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 "location_attendance" FROM "game_log" WHERE "game"=27;
1-22879262-7
what is the total number of high rebounds for 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 COUNT("high_rebounds") FROM "game_log" WHERE "team"='Minnesota';
1-22879262-7
What were the high rebounds on April 4?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "date"='April 4';
1-22879323-10
What was the score when the game was 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 "score" FROM "game_log" WHERE "game"=80;
1-22879323-10
What date was the record 11-67?
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"='11-67';
1-22879323-10
How many high rebounds were there on April 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_rebounds") FROM "game_log" WHERE "date"='April 7';
1-22879323-10
What was the high points when rebounds were Terrence Williams (8)?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "game_log" WHERE "high_rebounds"='Terrence Williams (8)';
1-22879323-10
When the record was 2-29 who had the most 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 "record"='2-29';
1-22879323-6
When we played Houston who had 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 "high_points" FROM "game_log" WHERE "team"='Houston';
1-22879323-6
Name the number of high points for ford center
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"='Ford Center';
1-22879323-9
Name the high rebounds for american airlines center
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"='American Airlines Center';
1-22879323-9
Name the record for l 90–100 (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 90–100 (OT)';
1-22879323-9
Name the location attendance for l 83–106 (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 83–106 (OT)';
1-22879323-9
Name the score for 49-31
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"='49-31';
1-22883210-10
Name the location attendance for 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 "location_attendance" FROM "game_log" WHERE "team"='Minnesota';
1-22883210-10
What location had a record of 20-12, and how many people attended?
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"='20-12';
1-22883210-7
What was the total score for january 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("score") FROM "game_log" WHERE "date"='January 18';
1-22883210-7
Where was game 41 held, and how many people attended?
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"=41;
1-22883210-7
What was the date for the record 23-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 "date" FROM "game_log" WHERE "record"='23-13';
1-22883210-7
What was the high point for January 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"='January 20';
1-22883210-7
What was the location and how many attended when Golden State 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"='Golden State';
1-22883210-9
What is the highest game number where the team was 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 MAX("game") FROM "game_log" WHERE "team"='Cleveland';
1-22883210-9
What is the highest numbered nightly rank for any episode?
CREATE TABLE "australian_ratings" ( "order" real, "episode" text, "original_airdate" text, "timeslot" text, "viewers_100000s" text, "nightly_rank" real, "weekly_rank" real );
SELECT MAX("nightly_rank") FROM "australian_ratings";
1-22892217-4
How many attended on december 2?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("location_attendance") FROM "regular_season" WHERE "date"='December 2';
1-22893781-5
Who was he opponent on december 11?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "regular_season" WHERE "date"='December 11';
1-22893781-5
What was the score against houston?
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"='Houston';
1-22893781-5
when did the @ indiana game take place?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "team"='@ Indiana';
1-22893781-7
Name the score for madison square garden 18,828
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 "location_attendance"='Madison Square Garden 18,828';
1-22893781-6
Name the number of date for dallas
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("date") FROM "regular_season" WHERE "team"='Dallas';
1-22893781-6
Name the high assists for january 15
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "regular_season" WHERE "date"='January 15';
1-22893781-6
What is the name of the episode that aired originally on November 10, 1998?
CREATE TABLE "table1_228973_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "title" FROM "table1_228973_5" WHERE "original_air_date"='November 10, 1998';
1-228973-5
What episode number in the series originally aired on April 27, 1999?
CREATE TABLE "table1_228973_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MAX("no_in_series") FROM "table1_228973_5" WHERE "original_air_date"='April 27, 1999';
1-228973-5
How many people wrote episode 68 in the series?
CREATE TABLE "table1_228973_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT COUNT("written_by") FROM "table1_228973_5" WHERE "no_in_series"=68;
1-228973-5
How many writers were there for episode named "embassy"?
CREATE TABLE "table1_228973_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT COUNT("written_by") FROM "table1_228973_5" WHERE "title"='\"Embassy\"';
1-228973-5
What date did "dungaree justice" originally air?
CREATE TABLE "table1_228973_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_228973_5" WHERE "title"='\"Dungaree Justice\"';
1-228973-5
Who directed the episode that originally aired on February 16, 1999?
CREATE TABLE "table1_228973_5" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "directed_by" FROM "table1_228973_5" WHERE "original_air_date"='February 16, 1999';
1-228973-5
Who directed the episode titled "Two Towns"?
CREATE TABLE "table1_228973_11" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "directed_by" FROM "table1_228973_11" WHERE "title"='\"Two Towns\"';
1-228973-11
The episode which originally aired on February 11, 2005 had which episode # of the season?
CREATE TABLE "table1_228973_11" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "no_in_season" FROM "table1_228973_11" WHERE "original_air_date"='February 11, 2005';
1-228973-11
The episode which originally aired on December 17, 2004 was written by whom?
CREATE TABLE "table1_228973_11" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "written_by" FROM "table1_228973_11" WHERE "original_air_date"='December 17, 2004';
1-228973-11
David James Elliott directed which episode number within the series?
CREATE TABLE "table1_228973_11" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "no_in_series" FROM "table1_228973_11" WHERE "directed_by"='David James Elliott';
1-228973-11
Who directed the episode which originally aired February 4, 2005?
CREATE TABLE "table1_228973_11" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "directed_by" FROM "table1_228973_11" WHERE "original_air_date"='February 4, 2005';
1-228973-11