answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT record FROM table_22862203_2 WHERE opp_points = 50
CREATE TABLE table_22862203_2 (record VARCHAR, opp_points VARCHAR)
What were the records when the opponents had 50 points?
SELECT terps_points FROM table_22862203_2 WHERE date = "Nov. 25/05"
CREATE TABLE table_22862203_2 (terps_points VARCHAR, date VARCHAR)
What are the terps points for the nov. 25/05 game?
SELECT location FROM table_22862203_2 WHERE record = "9-1"
CREATE TABLE table_22862203_2 (location VARCHAR, record VARCHAR)
Where were games played when the record was 9-1?
SELECT MAX(terps_points) FROM table_22862203_2 WHERE opp_points = 53
CREATE TABLE table_22862203_2 (terps_points INTEGER, opp_points VARCHAR)
What is the highest number of terps points in games where the opponent made 53 points?
SELECT location FROM table_22862203_2 WHERE date = "Jan. 16/06"
CREATE TABLE table_22862203_2 (location VARCHAR, date VARCHAR)
Where was the game on jan. 16/06 played?
SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = "21-45"
CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR)
Name the high points for 21-45 record
SELECT visitor FROM table_22871239_9 WHERE date = "March 23"
CREATE TABLE table_22871239_9 (visitor VARCHAR, date VARCHAR)
Name the visitor for march 23
SELECT high_rebounds FROM table_22871239_9 WHERE arena_attendance = "TD Garden 18,624"
CREATE TABLE table_22871239_9 (high_rebounds VARCHAR, arena_attendance VARCHAR)
Name the high rebounds for td garden 18,624
SELECT record FROM table_22871239_9 WHERE date = "March 16"
CREATE TABLE table_22871239_9 (record VARCHAR, date VARCHAR)
Name the record for march 16
SELECT COUNT(_number) FROM table_22871239_8 WHERE score = "L 110-112"
CREATE TABLE table_22871239_8 (_number VARCHAR, score VARCHAR)
Name the total number for score l 110-112
SELECT team FROM table_22871239_8 WHERE score = "W 125-115"
CREATE TABLE table_22871239_8 (team VARCHAR, score VARCHAR)
Name the team for w 125-115 score
SELECT high_assists FROM table_22871239_8 WHERE location_attendance = "American Airlines Center 19,585"
CREATE TABLE table_22871239_8 (high_assists VARCHAR, location_attendance VARCHAR)
Name the high assists for american airlines center 19,585
SELECT high_points FROM table_22871316_11 WHERE series = "3-2"
CREATE TABLE table_22871316_11 (high_points VARCHAR, series VARCHAR)
Who has the high points when 3-2 is the series?
SELECT high_assists FROM table_22871316_11 WHERE series = "0-1"
CREATE TABLE table_22871316_11 (high_assists VARCHAR, series VARCHAR)
Who has the high assists when 0-1 is the series?
SELECT COUNT(high_rebounds) FROM table_22871316_11 WHERE series = "3-3"
CREATE TABLE table_22871316_11 (high_rebounds VARCHAR, series VARCHAR)
How many high rebounds are in series 3-3?
SELECT MIN(game) FROM table_22871316_11 WHERE date = "April 30"
CREATE TABLE table_22871316_11 (game INTEGER, date VARCHAR)
How many games are on the date of April 30?
SELECT high_points FROM table_22871316_6 WHERE date = "December 18"
CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)
Who did the high points in the game played on December 18?
SELECT high_points FROM table_22871316_6 WHERE date = "December 2"
CREATE TABLE table_22871316_6 (high_points VARCHAR, date VARCHAR)
Who did the high points in the game played on December 2?
SELECT record FROM table_22871316_6 WHERE high_points = "Carlos Delfino (17)"
CREATE TABLE table_22871316_6 (record VARCHAR, high_points VARCHAR)
What's the record of the game in which Carlos Delfino (17) did the most high points?
SELECT high_rebounds FROM table_22871316_6 WHERE high_assists = "Brandon Jennings (8)"
CREATE TABLE table_22871316_6 (high_rebounds VARCHAR, high_assists VARCHAR)
Who did the high rebounds in the game in which Brandon Jennings (8) did the high assists?
SELECT player FROM table_22875514_3 WHERE field_goals = "18-50 .360"
CREATE TABLE table_22875514_3 (player VARCHAR, field_goals VARCHAR)
Which player has 18-50 .360 field goals?
SELECT MAX(assists) FROM table_22875514_3 WHERE points = "129-3.9"
CREATE TABLE table_22875514_3 (assists INTEGER, points VARCHAR)
What is the most assists for points 129-3.9?
SELECT date FROM table_22875369_3 WHERE irish_points = 89
CREATE TABLE table_22875369_3 (date VARCHAR, irish_points VARCHAR)
Name the date for irish points being 89
SELECT COUNT(location) FROM table_22875369_3 WHERE record = "22-1"
CREATE TABLE table_22875369_3 (location VARCHAR, record VARCHAR)
Name the number of location for 22-1
SELECT opponent FROM table_22875369_3 WHERE date = "2-27-10"
CREATE TABLE table_22875369_3 (opponent VARCHAR, date VARCHAR)
Name the opponent for 2-27-10
SELECT MAX(irish_points) FROM table_22875369_3 WHERE opponent = "Eastern Michigan"
CREATE TABLE table_22875369_3 (irish_points INTEGER, opponent VARCHAR)
Name the max irish points for eastern michigan
SELECT irish_points FROM table_22875369_3 WHERE record = "23-1"
CREATE TABLE table_22875369_3 (irish_points VARCHAR, record VARCHAR)
Name the irish points for 23-1 record
SELECT COUNT(high_rebounds) FROM table_22879262_14 WHERE score = "L 92–96 (OT)"
CREATE TABLE table_22879262_14 (high_rebounds VARCHAR, score VARCHAR)
Name the number of high rebounds for l 92–96 (ot)
SELECT date FROM table_22879262_7 WHERE game = 29
CREATE TABLE table_22879262_7 (date VARCHAR, game VARCHAR)
what ist he date of game 29?
SELECT location_attendance FROM table_22879262_7 WHERE game = 27
CREATE TABLE table_22879262_7 (location_attendance VARCHAR, game VARCHAR)
what is the location attendance for game 27?
SELECT COUNT(high_rebounds) FROM table_22879262_7 WHERE team = "Minnesota"
CREATE TABLE table_22879262_7 (high_rebounds VARCHAR, team VARCHAR)
what is the total number of high rebounds for minnesota?
SELECT high_rebounds FROM table_22879323_10 WHERE date = "April 4"
CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)
What were the high rebounds on April 4?
SELECT score FROM table_22879323_10 WHERE game = 80
CREATE TABLE table_22879323_10 (score VARCHAR, game VARCHAR)
What was the score when the game was 80?
SELECT date FROM table_22879323_10 WHERE record = "11-67"
CREATE TABLE table_22879323_10 (date VARCHAR, record VARCHAR)
What date was the record 11-67?
SELECT COUNT(high_rebounds) FROM table_22879323_10 WHERE date = "April 7"
CREATE TABLE table_22879323_10 (high_rebounds VARCHAR, date VARCHAR)
How many high rebounds were there on April 7?
SELECT high_points FROM table_22879323_10 WHERE high_rebounds = "Terrence Williams (8)"
CREATE TABLE table_22879323_10 (high_points VARCHAR, high_rebounds VARCHAR)
What was the high points when rebounds were Terrence Williams (8)?
SELECT high_assists FROM table_22879323_6 WHERE record = "2-29"
CREATE TABLE table_22879323_6 (high_assists VARCHAR, record VARCHAR)
When the record was 2-29 who had the most assists?
SELECT high_points FROM table_22879323_6 WHERE team = "Houston"
CREATE TABLE table_22879323_6 (high_points VARCHAR, team VARCHAR)
When we played Houston who had the most points?
SELECT COUNT(high_points) FROM table_22879323_9 WHERE location_attendance = "Ford Center"
CREATE TABLE table_22879323_9 (high_points VARCHAR, location_attendance VARCHAR)
Name the number of high points for ford center
SELECT high_rebounds FROM table_22879323_9 WHERE location_attendance = "American Airlines Center"
CREATE TABLE table_22879323_9 (high_rebounds VARCHAR, location_attendance VARCHAR)
Name the high rebounds for american airlines center
SELECT record FROM table_22879323_9 WHERE score = "L 90–100 (OT)"
CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR)
Name the record for l 90–100 (ot)
SELECT location_attendance FROM table_22879323_9 WHERE score = "L 83–106 (OT)"
CREATE TABLE table_22879323_9 (location_attendance VARCHAR, score VARCHAR)
Name the location attendance for l 83–106 (ot)
SELECT score FROM table_22883210_10 WHERE record = "49-31"
CREATE TABLE table_22883210_10 (score VARCHAR, record VARCHAR)
Name the score for 49-31
SELECT location_attendance FROM table_22883210_10 WHERE team = "Minnesota"
CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR)
Name the location attendance for minnesota
SELECT location_attendance FROM table_22883210_7 WHERE record = "20-12"
CREATE TABLE table_22883210_7 (location_attendance VARCHAR, record VARCHAR)
What location had a record of 20-12, and how many people attended?
SELECT COUNT(score) FROM table_22883210_7 WHERE date = "January 18"
CREATE TABLE table_22883210_7 (score VARCHAR, date VARCHAR)
What was the total score for january 18?
SELECT location_attendance FROM table_22883210_7 WHERE game = 41
CREATE TABLE table_22883210_7 (location_attendance VARCHAR, game VARCHAR)
Where was game 41 held, and how many people attended?
SELECT date FROM table_22883210_7 WHERE record = "23-13"
CREATE TABLE table_22883210_7 (date VARCHAR, record VARCHAR)
What was the date for the record 23-13?
SELECT high_points FROM table_22883210_7 WHERE date = "January 20"
CREATE TABLE table_22883210_7 (high_points VARCHAR, date VARCHAR)
What was the high point for January 20?
SELECT location_attendance FROM table_22883210_9 WHERE team = "Golden State"
CREATE TABLE table_22883210_9 (location_attendance VARCHAR, team VARCHAR)
What was the location and how many attended when Golden State played?
SELECT MAX(game) FROM table_22883210_9 WHERE team = "Cleveland"
CREATE TABLE table_22883210_9 (game INTEGER, team VARCHAR)
What is the highest game number where the team was Cleveland?
SELECT MAX(nightly_rank) FROM table_22892217_4
CREATE TABLE table_22892217_4 (nightly_rank INTEGER)
What is the highest numbered nightly rank for any episode?
SELECT COUNT(location_attendance) FROM table_22893781_5 WHERE date = "December 2"
CREATE TABLE table_22893781_5 (location_attendance VARCHAR, date VARCHAR)
How many attended on december 2?
SELECT team FROM table_22893781_5 WHERE date = "December 11"
CREATE TABLE table_22893781_5 (team VARCHAR, date VARCHAR)
Who was he opponent on december 11?
SELECT score FROM table_22893781_5 WHERE team = "Houston"
CREATE TABLE table_22893781_5 (score VARCHAR, team VARCHAR)
What was the score against houston?
SELECT date FROM table_22893781_7 WHERE team = "@ Indiana"
CREATE TABLE table_22893781_7 (date VARCHAR, team VARCHAR)
when did the @ indiana game take place?
SELECT score FROM table_22893781_6 WHERE location_attendance = "Madison Square Garden 18,828"
CREATE TABLE table_22893781_6 (score VARCHAR, location_attendance VARCHAR)
Name the score for madison square garden 18,828
SELECT COUNT(date) FROM table_22893781_6 WHERE team = "Dallas"
CREATE TABLE table_22893781_6 (date VARCHAR, team VARCHAR)
Name the number of date for dallas
SELECT high_assists FROM table_22893781_6 WHERE date = "January 15"
CREATE TABLE table_22893781_6 (high_assists VARCHAR, date VARCHAR)
Name the high assists for january 15
SELECT title FROM table_228973_5 WHERE original_air_date = "November 10, 1998"
CREATE TABLE table_228973_5 (title VARCHAR, original_air_date VARCHAR)
What is the name of the episode that aired originally on November 10, 1998?
SELECT MAX(no_in_series) FROM table_228973_5 WHERE original_air_date = "April 27, 1999"
CREATE TABLE table_228973_5 (no_in_series INTEGER, original_air_date VARCHAR)
What episode number in the series originally aired on April 27, 1999?
SELECT COUNT(written_by) FROM table_228973_5 WHERE no_in_series = 68
CREATE TABLE table_228973_5 (written_by VARCHAR, no_in_series VARCHAR)
How many people wrote episode 68 in the series?
SELECT directed_by FROM table_228973_5 WHERE original_air_date = "February 16, 1999"
CREATE TABLE table_228973_5 (directed_by VARCHAR, original_air_date VARCHAR)
Who directed the episode that originally aired on February 16, 1999?
SELECT no_in_season FROM table_228973_11 WHERE original_air_date = "February 11, 2005"
CREATE TABLE table_228973_11 (no_in_season VARCHAR, original_air_date VARCHAR)
The episode which originally aired on February 11, 2005 had which episode # of the season?
SELECT written_by FROM table_228973_11 WHERE original_air_date = "December 17, 2004"
CREATE TABLE table_228973_11 (written_by VARCHAR, original_air_date VARCHAR)
The episode which originally aired on December 17, 2004 was written by whom?
SELECT no_in_series FROM table_228973_11 WHERE directed_by = "David James Elliott"
CREATE TABLE table_228973_11 (no_in_series VARCHAR, directed_by VARCHAR)
David James Elliott directed which episode number within the series?
SELECT directed_by FROM table_228973_11 WHERE original_air_date = "February 4, 2005"
CREATE TABLE table_228973_11 (directed_by VARCHAR, original_air_date VARCHAR)
Who directed the episode which originally aired February 4, 2005?
SELECT COUNT(no_in_season) FROM table_228973_3 WHERE original_air_date = "January 3, 1997"
CREATE TABLE table_228973_3 (no_in_season VARCHAR, original_air_date VARCHAR)
which is the number of the season episode whose premiere was in january 3, 1997?
SELECT no_in_season FROM table_228973_3 WHERE written_by = "R. Scott Gemmill" AND directed_by = "Ray Austin"
CREATE TABLE table_228973_3 (no_in_season VARCHAR, written_by VARCHAR, directed_by VARCHAR)
which is the number of the season episode whose writer is R. Scott Gemmill and the Director is Ray Austin?
SELECT title FROM table_228973_3 WHERE no_in_series = 31
CREATE TABLE table_228973_3 (title VARCHAR, no_in_series VARCHAR)
what is the name of the episode whose number of the series episode was 31?
SELECT written_by FROM table_228973_7 WHERE no_in_series = 129
CREATE TABLE table_228973_7 (written_by VARCHAR, no_in_series VARCHAR)
When 129 is the number in the series who is the writer?
SELECT MAX(prod__number) FROM table_2289806_1 WHERE episode__number = 1
CREATE TABLE table_2289806_1 (prod__number INTEGER, episode__number VARCHAR)
How many product # have episode 1?
SELECT windows_builders FROM table_22903426_1 WHERE name = "Apache Gump"
CREATE TABLE table_22903426_1 (windows_builders VARCHAR, name VARCHAR)
Name the windows builders for apache gump
SELECT COUNT(scm_system) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio"
CREATE TABLE table_22903426_1 (scm_system VARCHAR, windows_builders VARCHAR)
Name the number of scm system for nant, visual studio
SELECT COUNT(other_builders) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio"
CREATE TABLE table_22903426_1 (other_builders VARCHAR, windows_builders VARCHAR)
Name the number of other builders for nant, visual studio
SELECT MIN(2 AS nd_runner_up) FROM table_2290097_4
CREATE TABLE table_2290097_4 (Id VARCHAR)
What is the minimum for 2nd runner-up?
SELECT title FROM table_228973_9 WHERE original_air_date = "February 4, 2003"
CREATE TABLE table_228973_9 (title VARCHAR, original_air_date VARCHAR)
If the original air date is February 4, 2003, what is the episode title?
SELECT no_in_series FROM table_228973_9 WHERE original_air_date = "April 1, 2003"
CREATE TABLE table_228973_9 (no_in_series VARCHAR, original_air_date VARCHAR)
If the original air date is April 1, 2003, what number in the series is this episode?
SELECT MAX(no_in_series) FROM table_228973_9 WHERE directed_by = "Harvey S. Laidman"
CREATE TABLE table_228973_9 (no_in_series INTEGER, directed_by VARCHAR)
What is the maximum number in the series for the episode directed by Harvey S. Laidman?
SELECT original_air_date FROM table_22904752_1 WHERE written_by = "Sean Whitesell"
CREATE TABLE table_22904752_1 (original_air_date VARCHAR, written_by VARCHAR)
When is the original air date written by sean whitesell?
SELECT directed_by FROM table_22904752_1 WHERE no = 79
CREATE TABLE table_22904752_1 (directed_by VARCHAR, no VARCHAR)
Who is no. 79 directed by?
SELECT COUNT(_number) FROM table_22904752_1 WHERE us_viewers__million_ = "17.44"
CREATE TABLE table_22904752_1 (_number VARCHAR, us_viewers__million_ VARCHAR)
What is the # when u.s. viewers (million) is 17.44?
SELECT MAX(_number) FROM table_22904752_1 WHERE written_by = "David Hoselton"
CREATE TABLE table_22904752_1 (_number INTEGER, written_by VARCHAR)
How many # were written by david hoselton?
SELECT COUNT(race_3_winner) FROM table_22905641_2 WHERE race_2_winner = "Mitch Evans"
CREATE TABLE table_22905641_2 (race_3_winner VARCHAR, race_2_winner VARCHAR)
How many race 3 winners were there when Mitch Evans won race 2?
SELECT date FROM table_22905641_2 WHERE circuit = "Symmons Plains Raceway"
CREATE TABLE table_22905641_2 (date VARCHAR, circuit VARCHAR)
What date was the race at the Symmons Plains Raceway?
SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Winton Motor Raceway"
CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)
Who was the race 1 winner at the race held at Winton Motor Raceway?
SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Hidden Valley Raceway"
CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)
Who was the race 1 winner of the race at Hidden Valley Raceway?
SELECT COUNT(year) FROM table_229059_2 WHERE champion = "Pat Bradley"
CREATE TABLE table_229059_2 (year VARCHAR, champion VARCHAR)
In how many years did Pat Bradley became the champion?
SELECT dates FROM table_229059_2 WHERE tournament_location = "Forest Lake country Club"
CREATE TABLE table_229059_2 (dates VARCHAR, tournament_location VARCHAR)
When was the tournament in Forest Lake Country Club held?
SELECT COUNT(country) FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"
CREATE TABLE table_229059_2 (country VARCHAR, champion VARCHAR)
How many different countries did the champion Se Ri Pak (2) represent?
SELECT score FROM table_229059_2 WHERE year = 1978
CREATE TABLE table_229059_2 (score VARCHAR, year VARCHAR)
What was the score in 1978?
SELECT MIN(winners_share__) AS $_ FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"
CREATE TABLE table_229059_2 (winners_share__ INTEGER, champion VARCHAR)
What was the winner share (in $) in the year when Se Ri Pak (2) was the champion?
SELECT score FROM table_229059_2 WHERE champion = "Jan Stephenson"
CREATE TABLE table_229059_2 (score VARCHAR, champion VARCHAR)
What was the score in the tournament won by Jan Stephenson?
SELECT MIN(opp_points) FROM table_22903773_2 WHERE location = "Knoxville"
CREATE TABLE table_22903773_2 (opp_points INTEGER, location VARCHAR)
How many points did the opponents score at the game in Knoxville?
SELECT date FROM table_22903773_2 WHERE record = "17-7"
CREATE TABLE table_22903773_2 (date VARCHAR, record VARCHAR)
What game date had a record of 17-7?
SELECT MAX(opp_points) FROM table_22903773_2 WHERE record = "16-5"
CREATE TABLE table_22903773_2 (opp_points INTEGER, record VARCHAR)
How many points did the opponents score on the game where Sooners' record was 16-5?
SELECT COUNT(title) FROM table_22904780_1 WHERE us_viewers__million_ = "12.04"
CREATE TABLE table_22904780_1 (title VARCHAR, us_viewers__million_ VARCHAR)
List the number of shows that had 12.04 million viewers in the united states
SELECT original_air_date FROM table_22904780_1 WHERE rank__week_ = 5
CREATE TABLE table_22904780_1 (original_air_date VARCHAR, rank__week_ VARCHAR)
List the original air date for week 5.
SELECT original_air_date FROM table_22904780_1 WHERE written_by = "Russel Friend & Garrett Lerner"
CREATE TABLE table_22904780_1 (original_air_date VARCHAR, written_by VARCHAR)
List the 1st air date for the show where the writers are russel friend & garrett lerner.
SELECT graphical FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"
CREATE TABLE table_22915134_2 (graphical VARCHAR, example VARCHAR)
When shinya nakano's kawasaki ninja zx-rr is the example what is the graphical?