combined_text
stringlengths
106
1.05k
###question:What championship had a final score of 6–4, 6–2, 6–2?###answer:SELECT championship FROM table_22839669_1 WHERE score_in_the_final = "6–4, 6–2, 6–2"###context:CREATE TABLE table_22839669_1 (championship VARCHAR, score_in_the_final VARCHAR)
###question:If the year is 2007, what is the top ten?###answer:SELECT top_10s FROM table_22838521_3 WHERE year = 2007###context:CREATE TABLE table_22838521_3 (top_10s VARCHAR, year VARCHAR)
###question:What is the possible maximum money list rank?###answer:SELECT MAX(money_list_rank) FROM table_22838521_3###context:CREATE TABLE table_22838521_3 (money_list_rank INTEGER)
###question:If the scoring average is 72.46, what is the best finish?###answer:SELECT best_finish FROM table_22838521_3 WHERE scoring_average = "72.46"###context:CREATE TABLE table_22838521_3 (best_finish VARCHAR, scoring_average VARCHAR)
###question:Name the result for wesley moodie###answer:SELECT result FROM table_22853654_9 WHERE opponent = "Wesley Moodie"###context:CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)
###question:Name the surface against monaco###answer:SELECT surface FROM table_22853654_9 WHERE against = "Monaco"###context:CREATE TABLE table_22853654_9 (surface VARCHAR, against VARCHAR)
###question:Name the result for alexander shvec###answer:SELECT result FROM table_22853654_9 WHERE opponent = "Alexander Shvec"###context:CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR)
###question:Name the opponent for 3–6, 4–6, 6–1, 6–7 (7–9)###answer:SELECT opponent FROM table_22853654_9 WHERE result = "3–6, 4–6, 6–1, 6–7 (7–9)"###context:CREATE TABLE table_22853654_9 (opponent VARCHAR, result VARCHAR)
###question:Name the annual rainfail for 2002 population being 493984###answer:SELECT average_annual_rainfall__mm_ FROM table_22854436_1 WHERE population__2002_census_data_ = 493984###context:CREATE TABLE table_22854436_1 (average_annual_rainfall__mm_ VARCHAR, population__2002_census_data_ VARCHAR)
###question:Name the most population 2002###answer:SELECT MAX(population__2002_census_data_) FROM table_22854436_1###context:CREATE TABLE table_22854436_1 (population__2002_census_data_ INTEGER)
###question:Name the total water resources m3 for rainfall being 650###answer:SELECT COUNT(per_capita_average_annual_renewable_water_resources_m_3) FROM table_22854436_1 WHERE average_annual_rainfall__mm_ = "650"###context:CREATE TABLE table_22854436_1 (per_capita_average_annual_renewable_water_resources_m_3 VARCHAR, a...
###question:What were the carpet w-l in 1993?###answer:SELECT carpet_w_l FROM table_22860698_8 WHERE year = 1993###context:CREATE TABLE table_22860698_8 (carpet_w_l VARCHAR, year VARCHAR)
###question:What is the amount of US open runner-up score?###answer:SELECT COUNT(score_in_final) FROM table_22858557_1 WHERE championship = "US Open" AND outcome = "Runner-up"###context:CREATE TABLE table_22858557_1 (score_in_final VARCHAR, championship VARCHAR, outcome VARCHAR)
###question:What is the year where the runner-up outcome was at its basic minimum?###answer:SELECT MIN(year) FROM table_22858557_1 WHERE outcome = "Runner-up"###context:CREATE TABLE table_22858557_1 (year INTEGER, outcome VARCHAR)
###question:How many championships have there been with Steffi Graf?###answer:SELECT championship FROM table_22858557_1 WHERE opponent_in_final = "Steffi Graf"###context:CREATE TABLE table_22858557_1 (championship VARCHAR, opponent_in_final VARCHAR)
###question:How many opponents have wimbledon (2) as the championship?###answer:SELECT COUNT(opponents) FROM table_22860698_2 WHERE championship = "Wimbledon (2)"###context:CREATE TABLE table_22860698_2 (opponents VARCHAR, championship VARCHAR)
###question:What is the surface when the us open is the championship in the year 1979?###answer:SELECT surface FROM table_22860698_2 WHERE championship = "US Open" AND year = 1979###context:CREATE TABLE table_22860698_2 (surface VARCHAR, championship VARCHAR, year VARCHAR)
###question:What is the game number that was on November 27? ###answer:SELECT _number FROM table_22871239_5 WHERE date = "November 27"###context:CREATE TABLE table_22871239_5 (_number VARCHAR, date VARCHAR)
###question:What was the score when the team was @ New Jersey? ###answer:SELECT score FROM table_22871239_5 WHERE team = "@ New Jersey"###context:CREATE TABLE table_22871239_5 (score VARCHAR, team VARCHAR)
###question:How many high rebound catagories are listed for game number 5? ###answer:SELECT COUNT(high_rebounds) FROM table_22871239_5 WHERE _number = 5###context:CREATE TABLE table_22871239_5 (high_rebounds VARCHAR, _number VARCHAR)
###question:Who were the opponents when the record was 11-2?###answer:SELECT opponent FROM table_22862203_2 WHERE record = "11-2"###context:CREATE TABLE table_22862203_2 (opponent VARCHAR, record VARCHAR)
###question:What were the records when the opponents had 50 points?###answer:SELECT record FROM table_22862203_2 WHERE opp_points = 50###context:CREATE TABLE table_22862203_2 (record VARCHAR, opp_points VARCHAR)
###question:What are the terps points for the nov. 25/05 game?###answer:SELECT terps_points FROM table_22862203_2 WHERE date = "Nov. 25/05"###context:CREATE TABLE table_22862203_2 (terps_points VARCHAR, date VARCHAR)
###question:Where were games played when the record was 9-1?###answer:SELECT location FROM table_22862203_2 WHERE record = "9-1"###context:CREATE TABLE table_22862203_2 (location VARCHAR, record VARCHAR)
###question:What is the highest number of terps points in games where the opponent made 53 points?###answer:SELECT MAX(terps_points) FROM table_22862203_2 WHERE opp_points = 53###context:CREATE TABLE table_22862203_2 (terps_points INTEGER, opp_points VARCHAR)
###question:Where was the game on jan. 16/06 played?###answer:SELECT location FROM table_22862203_2 WHERE date = "Jan. 16/06"###context:CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR)
###question:Name the high points for 21-45 record###answer:SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = "21-45"###context:CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR)
###question:Name the visitor for march 23###answer:SELECT visitor FROM table_22871239_9 WHERE date = "March 23"###context:CREATE TABLE table_22871239_9 (visitor VARCHAR, date VARCHAR)
###question:Name the high rebounds for td garden 18,624###answer:SELECT high_rebounds FROM table_22871239_9 WHERE arena_attendance = "TD Garden 18,624"###context:CREATE TABLE table_22871239_9 (high_rebounds VARCHAR, arena_attendance VARCHAR)
###question:Name the record for march 16###answer:SELECT record FROM table_22871239_9 WHERE date = "March 16"###context:CREATE TABLE table_22871239_9 (record VARCHAR, date VARCHAR)
###question:Name the total number for score l 110-112###answer:SELECT COUNT(_number) FROM table_22871239_8 WHERE score = "L 110-112"###context:CREATE TABLE table_22871239_8 (_number VARCHAR, score VARCHAR)
###question:Name the team for w 125-115 score###answer:SELECT team FROM table_22871239_8 WHERE score = "W 125-115"###context:CREATE TABLE table_22871239_8 (team VARCHAR, score VARCHAR)
###question:Name the high assists for american airlines center 19,585###answer:SELECT high_assists FROM table_22871239_8 WHERE location_attendance = "American Airlines Center 19,585"###context:CREATE TABLE table_22871239_8 (high_assists VARCHAR, location_attendance VARCHAR)
###question:Who has the high points when 3-2 is the series?###answer:SELECT high_points FROM table_22871316_11 WHERE series = "3-2"###context:CREATE TABLE table_22871316_11 (high_points VARCHAR, series VARCHAR)
###question:Who has the high assists when 0-1 is the series?###answer:SELECT high_assists FROM table_22871316_11 WHERE series = "0-1"###context:CREATE TABLE table_22871316_11 (high_assists VARCHAR, series VARCHAR)
###question:How many high rebounds are in series 3-3?###answer:SELECT COUNT(high_rebounds) FROM table_22871316_11 WHERE series = "3-3"###context:CREATE TABLE table_22871316_11 (high_rebounds VARCHAR, series VARCHAR)
###question:How many games are on the date of April 30?###answer:SELECT MIN(game) FROM table_22871316_11 WHERE date = "April 30"###context:CREATE TABLE table_22871316_11 (game INTEGER, date VARCHAR)
###question:Who did the high points in the game played on December 18?###answer:SELECT high_points FROM table_22871316_6 WHERE date = "December 18"###context:CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)
###question:Who did the high points in the game played on December 2?###answer:SELECT high_points FROM table_22871316_6 WHERE date = "December 2"###context:CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)
###question:What's the record of the game in which Carlos Delfino (17) did the most high points?###answer:SELECT record FROM table_22871316_6 WHERE high_points = "Carlos Delfino (17)"###context:CREATE TABLE table_22871316_6 (record VARCHAR, high_points VARCHAR)
###question:Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists?###answer:SELECT high_rebounds FROM table_22871316_6 WHERE high_assists = "Brandon Jennings (8)"###context:CREATE TABLE table_22871316_6 (high_rebounds VARCHAR, high_assists VARCHAR)
###question:Which player has 18-50 .360 field goals?###answer:SELECT player FROM table_22875514_3 WHERE field_goals = "18-50 .360"###context:CREATE TABLE table_22875514_3 (player VARCHAR, field_goals VARCHAR)
###question:What is the most assists for points 129-3.9?###answer:SELECT MAX(assists) FROM table_22875514_3 WHERE points = "129-3.9"###context:CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR)
###question:Name the date for irish points being 89###answer:SELECT date FROM table_22875369_3 WHERE irish_points = 89###context:CREATE TABLE table_22875369_3 (date VARCHAR, irish_points VARCHAR)
###question:Name the number of location for 22-1###answer:SELECT COUNT(location) FROM table_22875369_3 WHERE record = "22-1"###context:CREATE TABLE table_22875369_3 (location VARCHAR, record VARCHAR)
###question:Name the opponent for 2-27-10###answer:SELECT opponent FROM table_22875369_3 WHERE date = "2-27-10"###context:CREATE TABLE table_22875369_3 (opponent VARCHAR, date VARCHAR)
###question:Name the max irish points for eastern michigan###answer:SELECT MAX(irish_points) FROM table_22875369_3 WHERE opponent = "Eastern Michigan"###context:CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR)
###question:Name the irish points for 23-1 record###answer:SELECT irish_points FROM table_22875369_3 WHERE record = "23-1"###context:CREATE TABLE table_22875369_3 (irish_points VARCHAR, record VARCHAR)
###question:Name the number of high rebounds for l 92–96 (ot)###answer:SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = "L 92–96 (OT)"###context:CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR)
###question:what ist he date of game 29?###answer:SELECT date FROM table_22879262_7 WHERE game = 29###context:CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR)
###question:what is the location attendance for game 27?###answer:SELECT location_attendance FROM table_22879262_7 WHERE game = 27###context:CREATE TABLE table_22879262_7 (location_attendance VARCHAR, game VARCHAR)
###question:what is the total number of high rebounds for minnesota?###answer:SELECT COUNT(high_rebounds) FROM table_22879262_7 WHERE team = "Minnesota"###context:CREATE TABLE table_22879262_7 (high_rebounds VARCHAR, team VARCHAR)
###question:What were the high rebounds on April 4?###answer:SELECT high_rebounds FROM table_22879323_10 WHERE date = "April 4"###context:CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)
###question:What was the score when the game was 80?###answer:SELECT score FROM table_22879323_10 WHERE game = 80###context:CREATE TABLE table_22879323_10 (score VARCHAR, game VARCHAR)
###question:What date was the record 11-67?###answer:SELECT date FROM table_22879323_10 WHERE record = "11-67"###context:CREATE TABLE table_22879323_10 (date VARCHAR, record VARCHAR)
###question:How many high rebounds were there on April 7?###answer:SELECT COUNT(high_rebounds) FROM table_22879323_10 WHERE date = "April 7"###context:CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)
###question:What was the high points when rebounds were Terrence Williams (8)?###answer:SELECT high_points FROM table_22879323_10 WHERE high_rebounds = "Terrence Williams (8)"###context:CREATE TABLE table_22879323_10 (high_points VARCHAR, high_rebounds VARCHAR)
###question:When the record was 2-29 who had the most assists?###answer:SELECT high_assists FROM table_22879323_6 WHERE record = "2-29"###context:CREATE TABLE table_22879323_6 (high_assists VARCHAR, record VARCHAR)
###question:When we played Houston who had the most points?###answer:SELECT high_points FROM table_22879323_6 WHERE team = "Houston"###context:CREATE TABLE table_22879323_6 (high_points VARCHAR, team VARCHAR)
###question:Name the number of high points for ford center###answer:SELECT COUNT(high_points) FROM table_22879323_9 WHERE location_attendance = "Ford Center"###context:CREATE TABLE table_22879323_9 (high_points VARCHAR, location_attendance VARCHAR)
###question:Name the high rebounds for american airlines center###answer:SELECT high_rebounds FROM table_22879323_9 WHERE location_attendance = "American Airlines Center"###context:CREATE TABLE table_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR)
###question:Name the record for l 90–100 (ot)###answer:SELECT record FROM table_22879323_9 WHERE score = "L 90–100 (OT)"###context:CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR)
###question:Name the location attendance for l 83–106 (ot)###answer:SELECT location_attendance FROM table_22879323_9 WHERE score = "L 83–106 (OT)"###context:CREATE TABLE table_22879323_9 (location_attendance VARCHAR, score VARCHAR)
###question:Name the score for 49-31###answer:SELECT score FROM table_22883210_10 WHERE record = "49-31"###context:CREATE TABLE table_22883210_10 (score VARCHAR, record VARCHAR)
###question:Name the location attendance for minnesota###answer:SELECT location_attendance FROM table_22883210_10 WHERE team = "Minnesota"###context:CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR)
###question:What location had a record of 20-12, and how many people attended?###answer:SELECT location_attendance FROM table_22883210_7 WHERE record = "20-12"###context:CREATE TABLE table_22883210_7 (location_attendance VARCHAR, record VARCHAR)
###question:What was the total score for january 18?###answer:SELECT COUNT(score) FROM table_22883210_7 WHERE date = "January 18"###context:CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR)
###question:Where was game 41 held, and how many people attended?###answer:SELECT location_attendance FROM table_22883210_7 WHERE game = 41###context:CREATE TABLE table_22883210_7 (location_attendance VARCHAR, game VARCHAR)
###question:What was the date for the record 23-13?###answer:SELECT date FROM table_22883210_7 WHERE record = "23-13"###context:CREATE TABLE table_22883210_7 (date VARCHAR, record VARCHAR)
###question:What was the high point for January 20?###answer:SELECT high_points FROM table_22883210_7 WHERE date = "January 20"###context:CREATE TABLE table_22883210_7 (high_points VARCHAR, date VARCHAR)
###question:What was the location and how many attended when Golden State played? ###answer:SELECT location_attendance FROM table_22883210_9 WHERE team = "Golden State"###context:CREATE TABLE table_22883210_9 (location_attendance VARCHAR, team VARCHAR)
###question:What is the highest game number where the team was Cleveland? ###answer:SELECT MAX(game) FROM table_22883210_9 WHERE team = "Cleveland"###context:CREATE TABLE table_22883210_9 (game INTEGER, team VARCHAR)
###question:What is the highest numbered nightly rank for any episode? ###answer:SELECT MAX(nightly_rank) FROM table_22892217_4###context:CREATE TABLE table_22892217_4 (nightly_rank INTEGER)
###question:How many attended on december 2?###answer:SELECT COUNT(location_attendance) FROM table_22893781_5 WHERE date = "December 2"###context:CREATE TABLE table_22893781_5 (location_attendance VARCHAR, date VARCHAR)
###question:Who was he opponent on december 11?###answer:SELECT team FROM table_22893781_5 WHERE date = "December 11"###context:CREATE TABLE table_22893781_5 (team VARCHAR, date VARCHAR)
###question:What was the score against houston?###answer:SELECT score FROM table_22893781_5 WHERE team = "Houston"###context:CREATE TABLE table_22893781_5 (score VARCHAR, team VARCHAR)
###question:when did the @ indiana game take place?###answer:SELECT date FROM table_22893781_7 WHERE team = "@ Indiana"###context:CREATE TABLE table_22893781_7 (date VARCHAR, team VARCHAR)
###question:Name the score for madison square garden 18,828###answer:SELECT score FROM table_22893781_6 WHERE location_attendance = "Madison Square Garden 18,828"###context:CREATE TABLE table_22893781_6 (score VARCHAR, location_attendance VARCHAR)
###question:Name the number of date for dallas###answer:SELECT COUNT(date) FROM table_22893781_6 WHERE team = "Dallas"###context:CREATE TABLE table_22893781_6 (date VARCHAR, team VARCHAR)
###question:Name the high assists for january 15###answer:SELECT high_assists FROM table_22893781_6 WHERE date = "January 15"###context:CREATE TABLE table_22893781_6 (high_assists VARCHAR, date VARCHAR)
###question:What is the name of the episode that aired originally on November 10, 1998?###answer:SELECT title FROM table_228973_5 WHERE original_air_date = "November 10, 1998"###context:CREATE TABLE table_228973_5 (title VARCHAR, original_air_date VARCHAR)
###question:What episode number in the series originally aired on April 27, 1999?###answer:SELECT MAX(no_in_series) FROM table_228973_5 WHERE original_air_date = "April 27, 1999"###context:CREATE TABLE table_228973_5 (no_in_series INTEGER, original_air_date VARCHAR)
###question:How many people wrote episode 68 in the series?###answer:SELECT COUNT(written_by) FROM table_228973_5 WHERE no_in_series = 68###context:CREATE TABLE table_228973_5 (written_by VARCHAR, no_in_series VARCHAR)
###question:Who directed the episode that originally aired on February 16, 1999?###answer:SELECT directed_by FROM table_228973_5 WHERE original_air_date = "February 16, 1999"###context:CREATE TABLE table_228973_5 (directed_by VARCHAR, original_air_date VARCHAR)
###question:The episode which originally aired on February 11, 2005 had which episode # of the season?###answer:SELECT no_in_season FROM table_228973_11 WHERE original_air_date = "February 11, 2005"###context:CREATE TABLE table_228973_11 (no_in_season VARCHAR, original_air_date VARCHAR)
###question:The episode which originally aired on December 17, 2004 was written by whom?###answer:SELECT written_by FROM table_228973_11 WHERE original_air_date = "December 17, 2004"###context:CREATE TABLE table_228973_11 (written_by VARCHAR, original_air_date VARCHAR)
###question:David James Elliott directed which episode number within the series?###answer:SELECT no_in_series FROM table_228973_11 WHERE directed_by = "David James Elliott"###context:CREATE TABLE table_228973_11 (no_in_series VARCHAR, directed_by VARCHAR)
###question:Who directed the episode which originally aired February 4, 2005?###answer:SELECT directed_by FROM table_228973_11 WHERE original_air_date = "February 4, 2005"###context:CREATE TABLE table_228973_11 (directed_by VARCHAR, original_air_date VARCHAR)
###question:which is the number of the season episode whose premiere was in january 3, 1997?###answer:SELECT COUNT(no_in_season) FROM table_228973_3 WHERE original_air_date = "January 3, 1997"###context:CREATE TABLE table_228973_3 (no_in_season VARCHAR, original_air_date VARCHAR)
###question:which is the number of the season episode whose writer is R. Scott Gemmill and the Director is Ray Austin?###answer:SELECT no_in_season FROM table_228973_3 WHERE written_by = "R. Scott Gemmill" AND directed_by = "Ray Austin"###context:CREATE TABLE table_228973_3 (no_in_season VARCHAR, written_by VARCHAR, di...
###question:what is the name of the episode whose number of the series episode was 31?###answer:SELECT title FROM table_228973_3 WHERE no_in_series = 31###context:CREATE TABLE table_228973_3 (title VARCHAR, no_in_series VARCHAR)
###question:When 129 is the number in the series who is the writer?###answer:SELECT written_by FROM table_228973_7 WHERE no_in_series = 129###context:CREATE TABLE table_228973_7 (written_by VARCHAR, no_in_series VARCHAR)
###question:How many product # have episode 1?###answer:SELECT MAX(prod__number) FROM table_2289806_1 WHERE episode__number = 1###context:CREATE TABLE table_2289806_1 (prod__number INTEGER, episode__number VARCHAR)
###question:Name the windows builders for apache gump###answer:SELECT windows_builders FROM table_22903426_1 WHERE name = "Apache Gump"###context:CREATE TABLE table_22903426_1 (windows_builders VARCHAR, name VARCHAR)
###question:Name the number of scm system for nant, visual studio###answer:SELECT COUNT(scm_system) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio"###context:CREATE TABLE table_22903426_1 (scm_system VARCHAR, windows_builders VARCHAR)
###question:Name the number of other builders for nant, visual studio###answer:SELECT COUNT(other_builders) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio"###context:CREATE TABLE table_22903426_1 (other_builders VARCHAR, windows_builders VARCHAR)
###question:What is the minimum for 2nd runner-up?###answer:SELECT MIN(2 AS nd_runner_up) FROM table_2290097_4###context:CREATE TABLE table_2290097_4 (Id VARCHAR)
###question:If the original air date is February 4, 2003, what is the episode title?###answer:SELECT title FROM table_228973_9 WHERE original_air_date = "February 4, 2003"###context:CREATE TABLE table_228973_9 (title VARCHAR, original_air_date VARCHAR)
###question:If the original air date is April 1, 2003, what number in the series is this episode?###answer:SELECT no_in_series FROM table_228973_9 WHERE original_air_date = "April 1, 2003"###context:CREATE TABLE table_228973_9 (no_in_series VARCHAR, original_air_date VARCHAR)
###question:What is the maximum number in the series for the episode directed by Harvey S. Laidman?###answer:SELECT MAX(no_in_series) FROM table_228973_9 WHERE directed_by = "Harvey S. Laidman"###context:CREATE TABLE table_228973_9 (no_in_series INTEGER, directed_by VARCHAR)