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