question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
What school location had an enrollment of 12400?
|
CREATE TABLE table_16432543_3 (location VARCHAR, enrollment VARCHAR)
|
SELECT location FROM table_16432543_3 WHERE enrollment = 12400
|
### Context: CREATE TABLE table_16432543_3 (location VARCHAR, enrollment VARCHAR) ### Question: What school location had an enrollment of 12400? ### Answer: SELECT location FROM table_16432543_3 WHERE enrollment = 12400
|
How many teams were established at University of Maryland?
|
CREATE TABLE table_16432543_3 (established VARCHAR, institution VARCHAR)
|
SELECT COUNT(established) FROM table_16432543_3 WHERE institution = "University of Maryland"
|
### Context: CREATE TABLE table_16432543_3 (established VARCHAR, institution VARCHAR) ### Question: How many teams were established at University of Maryland? ### Answer: SELECT COUNT(established) FROM table_16432543_3 WHERE institution = "University of Maryland"
|
what is the enrollment for the Cavaliers?
|
CREATE TABLE table_16432543_3 (enrollment INTEGER, nickname VARCHAR)
|
SELECT MAX(enrollment) FROM table_16432543_3 WHERE nickname = "Cavaliers"
|
### Context: CREATE TABLE table_16432543_3 (enrollment INTEGER, nickname VARCHAR) ### Question: what is the enrollment for the Cavaliers? ### Answer: SELECT MAX(enrollment) FROM table_16432543_3 WHERE nickname = "Cavaliers"
|
What is the smallest number of enrolled students?
|
CREATE TABLE table_16432543_3 (enrollment INTEGER)
|
SELECT MIN(enrollment) FROM table_16432543_3
|
### Context: CREATE TABLE table_16432543_3 (enrollment INTEGER) ### Question: What is the smallest number of enrolled students? ### Answer: SELECT MIN(enrollment) FROM table_16432543_3
|
What is the debut album for the artist with the winning song kemenangan hati?
|
CREATE TABLE table_1646960_3 (debut_album VARCHAR, winning_song VARCHAR)
|
SELECT debut_album FROM table_1646960_3 WHERE winning_song = "Kemenangan Hati"
|
### Context: CREATE TABLE table_1646960_3 (debut_album VARCHAR, winning_song VARCHAR) ### Question: What is the debut album for the artist with the winning song kemenangan hati? ### Answer: SELECT debut_album FROM table_1646960_3 WHERE winning_song = "Kemenangan Hati"
|
How many winners had a debut album titled "mike"?
|
CREATE TABLE table_1646960_3 (winner VARCHAR, debut_album VARCHAR)
|
SELECT winner FROM table_1646960_3 WHERE debut_album = "Mike"
|
### Context: CREATE TABLE table_1646960_3 (winner VARCHAR, debut_album VARCHAR) ### Question: How many winners had a debut album titled "mike"? ### Answer: SELECT winner FROM table_1646960_3 WHERE debut_album = "Mike"
|
What is the winning song for the artist with a debut album "the winner"?
|
CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR)
|
SELECT winning_song FROM table_1646960_3 WHERE debut_album = "The winner"
|
### Context: CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR) ### Question: What is the winning song for the artist with a debut album "the winner"? ### Answer: SELECT winning_song FROM table_1646960_3 WHERE debut_album = "The winner"
|
What is the winning song for the artist with a debut album "mike"?
|
CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR)
|
SELECT winning_song FROM table_1646960_3 WHERE debut_album = "Mike"
|
### Context: CREATE TABLE table_1646960_3 (winning_song VARCHAR, debut_album VARCHAR) ### Question: What is the winning song for the artist with a debut album "mike"? ### Answer: SELECT winning_song FROM table_1646960_3 WHERE debut_album = "Mike"
|
How many debut albums did mike mohede have?
|
CREATE TABLE table_1646960_3 (debut_album VARCHAR, winner VARCHAR)
|
SELECT COUNT(debut_album) FROM table_1646960_3 WHERE winner = "Mike Mohede"
|
### Context: CREATE TABLE table_1646960_3 (debut_album VARCHAR, winner VARCHAR) ### Question: How many debut albums did mike mohede have? ### Answer: SELECT COUNT(debut_album) FROM table_1646960_3 WHERE winner = "Mike Mohede"
|
What is the minimum of 25 to 29?
|
CREATE TABLE table_16457934_5 (Id VARCHAR)
|
SELECT MIN(25 AS _to_29) FROM table_16457934_5
|
### Context: CREATE TABLE table_16457934_5 (Id VARCHAR) ### Question: What is the minimum of 25 to 29? ### Answer: SELECT MIN(25 AS _to_29) FROM table_16457934_5
|
What is the minimum if 40 to 44?
|
CREATE TABLE table_16457934_5 (Id VARCHAR)
|
SELECT MIN(40 AS _to_44) FROM table_16457934_5
|
### Context: CREATE TABLE table_16457934_5 (Id VARCHAR) ### Question: What is the minimum if 40 to 44? ### Answer: SELECT MIN(40 AS _to_44) FROM table_16457934_5
|
What vfl club(s) did players who played 23 cfl games play for?
|
CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, vfl_games VARCHAR)
|
SELECT vfl_club_s_ FROM table_16527640_2 WHERE vfl_games = 23
|
### Context: CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, vfl_games VARCHAR) ### Question: What vfl club(s) did players who played 23 cfl games play for? ### Answer: SELECT vfl_club_s_ FROM table_16527640_2 WHERE vfl_games = 23
|
What locations did sid o'neill play football?
|
CREATE TABLE table_16527640_2 (location VARCHAR, player VARCHAR)
|
SELECT location FROM table_16527640_2 WHERE player = "Sid O'Neill"
|
### Context: CREATE TABLE table_16527640_2 (location VARCHAR, player VARCHAR) ### Question: What locations did sid o'neill play football? ### Answer: SELECT location FROM table_16527640_2 WHERE player = "Sid O'Neill"
|
What vfl club(s) for players ranked sergeant, 8th brigade australian field artillery at time of death?
|
CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, rank_held_at_time_of_death VARCHAR)
|
SELECT vfl_club_s_ FROM table_16527640_2 WHERE rank_held_at_time_of_death = "Sergeant, 8th Brigade Australian Field Artillery"
|
### Context: CREATE TABLE table_16527640_2 (vfl_club_s_ VARCHAR, rank_held_at_time_of_death VARCHAR) ### Question: What vfl club(s) for players ranked sergeant, 8th brigade australian field artillery at time of death? ### Answer: SELECT vfl_club_s_ FROM table_16527640_2 WHERE rank_held_at_time_of_death = "Sergeant, 8th Brigade Australian Field Artillery"
|
How many players named paddy rowan?
|
CREATE TABLE table_16527640_2 (rank_held_at_time_of_death VARCHAR, player VARCHAR)
|
SELECT COUNT(rank_held_at_time_of_death) FROM table_16527640_2 WHERE player = "Paddy Rowan"
|
### Context: CREATE TABLE table_16527640_2 (rank_held_at_time_of_death VARCHAR, player VARCHAR) ### Question: How many players named paddy rowan? ### Answer: SELECT COUNT(rank_held_at_time_of_death) FROM table_16527640_2 WHERE player = "Paddy Rowan"
|
How many numbers were recorde under 50s when there was 2 matches?
|
CREATE TABLE table_16570286_2 (matches VARCHAR)
|
SELECT COUNT(50 AS s) FROM table_16570286_2 WHERE matches = 2
|
### Context: CREATE TABLE table_16570286_2 (matches VARCHAR) ### Question: How many numbers were recorde under 50s when there was 2 matches? ### Answer: SELECT COUNT(50 AS s) FROM table_16570286_2 WHERE matches = 2
|
What was the score when Donald Bradman in 9 innings?
|
CREATE TABLE table_16570286_2 (highest_score VARCHAR, innings VARCHAR, player VARCHAR)
|
SELECT highest_score FROM table_16570286_2 WHERE innings = 9 AND player = "Donald Bradman"
|
### Context: CREATE TABLE table_16570286_2 (highest_score VARCHAR, innings VARCHAR, player VARCHAR) ### Question: What was the score when Donald Bradman in 9 innings? ### Answer: SELECT highest_score FROM table_16570286_2 WHERE innings = 9 AND player = "Donald Bradman"
|
What is the highest number of matches?
|
CREATE TABLE table_16570286_2 (matches INTEGER)
|
SELECT MAX(matches) FROM table_16570286_2
|
### Context: CREATE TABLE table_16570286_2 (matches INTEGER) ### Question: What is the highest number of matches? ### Answer: SELECT MAX(matches) FROM table_16570286_2
|
How many numbers were recorded under matches with Arthur Morris?
|
CREATE TABLE table_16570286_2 (matches VARCHAR, player VARCHAR)
|
SELECT COUNT(matches) FROM table_16570286_2 WHERE player = "Arthur Morris"
|
### Context: CREATE TABLE table_16570286_2 (matches VARCHAR, player VARCHAR) ### Question: How many numbers were recorded under matches with Arthur Morris? ### Answer: SELECT COUNT(matches) FROM table_16570286_2 WHERE player = "Arthur Morris"
|
How many teams were there with a high score of 143?
|
CREATE TABLE table_16570286_2 (team VARCHAR, highest_score VARCHAR)
|
SELECT COUNT(team) FROM table_16570286_2 WHERE highest_score = "143"
|
### Context: CREATE TABLE table_16570286_2 (team VARCHAR, highest_score VARCHAR) ### Question: How many teams were there with a high score of 143? ### Answer: SELECT COUNT(team) FROM table_16570286_2 WHERE highest_score = "143"
|
How many titles does Episode 2 have
|
CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)
|
SELECT COUNT(title) FROM table_165732_2 WHERE episode__number = 2
|
### Context: CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR) ### Question: How many titles does Episode 2 have ### Answer: SELECT COUNT(title) FROM table_165732_2 WHERE episode__number = 2
|
What is the title of Episode #2
|
CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR)
|
SELECT title FROM table_165732_2 WHERE episode__number = 2
|
### Context: CREATE TABLE table_165732_2 (title VARCHAR, episode__number VARCHAR) ### Question: What is the title of Episode #2 ### Answer: SELECT title FROM table_165732_2 WHERE episode__number = 2
|
How many directors did Episode #3 have
|
CREATE TABLE table_165732_2 (directed_by VARCHAR, episode__number VARCHAR)
|
SELECT COUNT(directed_by) FROM table_165732_2 WHERE episode__number = 3
|
### Context: CREATE TABLE table_165732_2 (directed_by VARCHAR, episode__number VARCHAR) ### Question: How many directors did Episode #3 have ### Answer: SELECT COUNT(directed_by) FROM table_165732_2 WHERE episode__number = 3
|
What position is the player drafted with pick 34?
|
CREATE TABLE table_16575609_5 (position VARCHAR, pick__number VARCHAR)
|
SELECT position FROM table_16575609_5 WHERE pick__number = 34
|
### Context: CREATE TABLE table_16575609_5 (position VARCHAR, pick__number VARCHAR) ### Question: What position is the player drafted with pick 34? ### Answer: SELECT position FROM table_16575609_5 WHERE pick__number = 34
|
How many colleges did the player drafted at 36 attend?
|
CREATE TABLE table_16575609_5 (college VARCHAR, pick__number VARCHAR)
|
SELECT COUNT(college) FROM table_16575609_5 WHERE pick__number = 36
|
### Context: CREATE TABLE table_16575609_5 (college VARCHAR, pick__number VARCHAR) ### Question: How many colleges did the player drafted at 36 attend? ### Answer: SELECT COUNT(college) FROM table_16575609_5 WHERE pick__number = 36
|
How many colleges did Jon Gott attend?
|
CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)
|
SELECT COUNT(college) FROM table_16575609_5 WHERE player = "Jon Gott"
|
### Context: CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR) ### Question: How many colleges did Jon Gott attend? ### Answer: SELECT COUNT(college) FROM table_16575609_5 WHERE player = "Jon Gott"
|
Where did Dante Luciani attend college?
|
CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR)
|
SELECT college FROM table_16575609_5 WHERE player = "Dante Luciani"
|
### Context: CREATE TABLE table_16575609_5 (college VARCHAR, player VARCHAR) ### Question: Where did Dante Luciani attend college? ### Answer: SELECT college FROM table_16575609_5 WHERE player = "Dante Luciani"
|
What teak was Brady Browne drafted onto?
|
CREATE TABLE table_16575609_5 (cfl_team VARCHAR, player VARCHAR)
|
SELECT cfl_team FROM table_16575609_5 WHERE player = "Brady Browne"
|
### Context: CREATE TABLE table_16575609_5 (cfl_team VARCHAR, player VARCHAR) ### Question: What teak was Brady Browne drafted onto? ### Answer: SELECT cfl_team FROM table_16575609_5 WHERE player = "Brady Browne"
|
Who was the writer of the episode number in series 4?
|
CREATE TABLE table_16581695_2 (written_by VARCHAR, no_in_series VARCHAR)
|
SELECT written_by FROM table_16581695_2 WHERE no_in_series = "4"
|
### Context: CREATE TABLE table_16581695_2 (written_by VARCHAR, no_in_series VARCHAR) ### Question: Who was the writer of the episode number in series 4? ### Answer: SELECT written_by FROM table_16581695_2 WHERE no_in_series = "4"
|
What is the original air date for the episode written by Bob Goodman?
|
CREATE TABLE table_16581695_2 (original_airdate VARCHAR, written_by VARCHAR)
|
SELECT original_airdate FROM table_16581695_2 WHERE written_by = "Bob Goodman"
|
### Context: CREATE TABLE table_16581695_2 (original_airdate VARCHAR, written_by VARCHAR) ### Question: What is the original air date for the episode written by Bob Goodman? ### Answer: SELECT original_airdate FROM table_16581695_2 WHERE written_by = "Bob Goodman"
|
Name the number air date for 14.20 us viewers
|
CREATE TABLE table_16617011_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT COUNT(original_air_date) FROM table_16617011_1 WHERE us_viewers__millions_ = "14.20"
|
### Context: CREATE TABLE table_16617011_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Name the number air date for 14.20 us viewers ### Answer: SELECT COUNT(original_air_date) FROM table_16617011_1 WHERE us_viewers__millions_ = "14.20"
|
Name the directed by for 15.15 viewers
|
CREATE TABLE table_16617011_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT directed_by FROM table_16617011_1 WHERE us_viewers__millions_ = "15.15"
|
### Context: CREATE TABLE table_16617011_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Name the directed by for 15.15 viewers ### Answer: SELECT directed_by FROM table_16617011_1 WHERE us_viewers__millions_ = "15.15"
|
Name the number of giants points for opponents being 31
|
CREATE TABLE table_16661199_2 (giants_points VARCHAR, opponents VARCHAR)
|
SELECT COUNT(giants_points) FROM table_16661199_2 WHERE opponents = 31
|
### Context: CREATE TABLE table_16661199_2 (giants_points VARCHAR, opponents VARCHAR) ### Question: Name the number of giants points for opponents being 31 ### Answer: SELECT COUNT(giants_points) FROM table_16661199_2 WHERE opponents = 31
|
Name the most attendance for giants points of 10
|
CREATE TABLE table_16661199_2 (attendance INTEGER, giants_points VARCHAR)
|
SELECT MAX(attendance) FROM table_16661199_2 WHERE giants_points = 10
|
### Context: CREATE TABLE table_16661199_2 (attendance INTEGER, giants_points VARCHAR) ### Question: Name the most attendance for giants points of 10 ### Answer: SELECT MAX(attendance) FROM table_16661199_2 WHERE giants_points = 10
|
What is the distance for jockey Kent Desormeaux on 6/7/08?
|
CREATE TABLE table_16689920_1 (distance VARCHAR, jockey VARCHAR, date VARCHAR)
|
SELECT distance FROM table_16689920_1 WHERE jockey = "Kent Desormeaux" AND date = "6/7/08"
|
### Context: CREATE TABLE table_16689920_1 (distance VARCHAR, jockey VARCHAR, date VARCHAR) ### Question: What is the distance for jockey Kent Desormeaux on 6/7/08? ### Answer: SELECT distance FROM table_16689920_1 WHERE jockey = "Kent Desormeaux" AND date = "6/7/08"
|
At 1:48.16 what was the number of track time?
|
CREATE TABLE table_16689920_1 (track VARCHAR, time VARCHAR)
|
SELECT COUNT(track) FROM table_16689920_1 WHERE time = "1:48.16"
|
### Context: CREATE TABLE table_16689920_1 (track VARCHAR, time VARCHAR) ### Question: At 1:48.16 what was the number of track time? ### Answer: SELECT COUNT(track) FROM table_16689920_1 WHERE time = "1:48.16"
|
With a date of 8/3/08, what was the length of the victory margin?
|
CREATE TABLE table_16689920_1 (victory_margin__in_lengths_ VARCHAR, date VARCHAR)
|
SELECT COUNT(victory_margin__in_lengths_) FROM table_16689920_1 WHERE date = "8/3/08"
|
### Context: CREATE TABLE table_16689920_1 (victory_margin__in_lengths_ VARCHAR, date VARCHAR) ### Question: With a date of 8/3/08, what was the length of the victory margin? ### Answer: SELECT COUNT(victory_margin__in_lengths_) FROM table_16689920_1 WHERE date = "8/3/08"
|
On what date did the opponents win with 17 points?
|
CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR)
|
SELECT date FROM table_16678052_2 WHERE opponents = 17 AND result = "Win"
|
### Context: CREATE TABLE table_16678052_2 (date VARCHAR, opponents VARCHAR, result VARCHAR) ### Question: On what date did the opponents win with 17 points? ### Answer: SELECT date FROM table_16678052_2 WHERE opponents = 17 AND result = "Win"
|
What record was reached when the Eagles played the Phoenix Cardinals?
|
CREATE TABLE table_16678052_2 (record VARCHAR, opponent VARCHAR)
|
SELECT record FROM table_16678052_2 WHERE opponent = "Phoenix Cardinals"
|
### Context: CREATE TABLE table_16678052_2 (record VARCHAR, opponent VARCHAR) ### Question: What record was reached when the Eagles played the Phoenix Cardinals? ### Answer: SELECT record FROM table_16678052_2 WHERE opponent = "Phoenix Cardinals"
|
How many times in 1984 did the Falcons play the Los Angeles Rams?
|
CREATE TABLE table_16710742_3 (opponents VARCHAR, opponent VARCHAR)
|
SELECT COUNT(opponents) FROM table_16710742_3 WHERE opponent = "Los Angeles Rams"
|
### Context: CREATE TABLE table_16710742_3 (opponents VARCHAR, opponent VARCHAR) ### Question: How many times in 1984 did the Falcons play the Los Angeles Rams? ### Answer: SELECT COUNT(opponents) FROM table_16710742_3 WHERE opponent = "Los Angeles Rams"
|
In 1984, Did the Falcons have a win or loss against the New Orleans Saints?
|
CREATE TABLE table_16710742_3 (result VARCHAR, opponent VARCHAR)
|
SELECT result FROM table_16710742_3 WHERE opponent = "New Orleans Saints"
|
### Context: CREATE TABLE table_16710742_3 (result VARCHAR, opponent VARCHAR) ### Question: In 1984, Did the Falcons have a win or loss against the New Orleans Saints? ### Answer: SELECT result FROM table_16710742_3 WHERE opponent = "New Orleans Saints"
|
Did the Falcons have a win or loss in the game when their record was 3-7?
|
CREATE TABLE table_16710742_3 (result VARCHAR, record VARCHAR)
|
SELECT result FROM table_16710742_3 WHERE record = "3-7"
|
### Context: CREATE TABLE table_16710742_3 (result VARCHAR, record VARCHAR) ### Question: Did the Falcons have a win or loss in the game when their record was 3-7? ### Answer: SELECT result FROM table_16710742_3 WHERE record = "3-7"
|
what is the attendance where the game site is kingdome?
|
CREATE TABLE table_16729076_1 (attendance INTEGER, game_site VARCHAR)
|
SELECT MIN(attendance) FROM table_16729076_1 WHERE game_site = "Kingdome"
|
### Context: CREATE TABLE table_16729076_1 (attendance INTEGER, game_site VARCHAR) ### Question: what is the attendance where the game site is kingdome? ### Answer: SELECT MIN(attendance) FROM table_16729076_1 WHERE game_site = "Kingdome"
|
what date is the opponent is chicago bears?
|
CREATE TABLE table_16729076_1 (date VARCHAR, opponent VARCHAR)
|
SELECT date FROM table_16729076_1 WHERE opponent = "Chicago Bears"
|
### Context: CREATE TABLE table_16729076_1 (date VARCHAR, opponent VARCHAR) ### Question: what date is the opponent is chicago bears? ### Answer: SELECT date FROM table_16729076_1 WHERE opponent = "Chicago Bears"
|
What team has draft picks from Mississippi?
|
CREATE TABLE table_16729063_1 (nfl_team VARCHAR, college VARCHAR)
|
SELECT nfl_team FROM table_16729063_1 WHERE college = "Mississippi"
|
### Context: CREATE TABLE table_16729063_1 (nfl_team VARCHAR, college VARCHAR) ### Question: What team has draft picks from Mississippi? ### Answer: SELECT nfl_team FROM table_16729063_1 WHERE college = "Mississippi"
|
How many positions drafted players from Washington?
|
CREATE TABLE table_16729063_1 (position VARCHAR, college VARCHAR)
|
SELECT COUNT(position) FROM table_16729063_1 WHERE college = "Washington"
|
### Context: CREATE TABLE table_16729063_1 (position VARCHAR, college VARCHAR) ### Question: How many positions drafted players from Washington? ### Answer: SELECT COUNT(position) FROM table_16729063_1 WHERE college = "Washington"
|
How many draft picks are there at the Defensive End position?
|
CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR)
|
SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Defensive End"
|
### Context: CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR) ### Question: How many draft picks are there at the Defensive End position? ### Answer: SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Defensive End"
|
How many draft picks are there at the linebacker position?
|
CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR)
|
SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Linebacker"
|
### Context: CREATE TABLE table_16729063_1 (pick__number VARCHAR, position VARCHAR) ### Question: How many draft picks are there at the linebacker position? ### Answer: SELECT COUNT(pick__number) FROM table_16729063_1 WHERE position = "Linebacker"
|
What draft pick was Chris Brewer?
|
CREATE TABLE table_16729063_1 (pick__number INTEGER, player VARCHAR)
|
SELECT MIN(pick__number) FROM table_16729063_1 WHERE player = "Chris Brewer"
|
### Context: CREATE TABLE table_16729063_1 (pick__number INTEGER, player VARCHAR) ### Question: What draft pick was Chris Brewer? ### Answer: SELECT MIN(pick__number) FROM table_16729063_1 WHERE player = "Chris Brewer"
|
How many losses did the Michigan State Spartans have?
|
CREATE TABLE table_1672976_2 (loss INTEGER, institution VARCHAR)
|
SELECT MAX(loss) FROM table_1672976_2 WHERE institution = "Michigan State Spartans"
|
### Context: CREATE TABLE table_1672976_2 (loss INTEGER, institution VARCHAR) ### Question: How many losses did the Michigan State Spartans have? ### Answer: SELECT MAX(loss) FROM table_1672976_2 WHERE institution = "Michigan State Spartans"
|
How many wins did the Northwestern Wildcats?
|
CREATE TABLE table_1672976_2 (wins INTEGER, institution VARCHAR)
|
SELECT MAX(wins) FROM table_1672976_2 WHERE institution = "Northwestern Wildcats"
|
### Context: CREATE TABLE table_1672976_2 (wins INTEGER, institution VARCHAR) ### Question: How many wins did the Northwestern Wildcats? ### Answer: SELECT MAX(wins) FROM table_1672976_2 WHERE institution = "Northwestern Wildcats"
|
What institution had 6 wins and a current streak of won 2?
|
CREATE TABLE table_1672976_2 (institution VARCHAR, wins VARCHAR, current_streak VARCHAR)
|
SELECT institution FROM table_1672976_2 WHERE wins = 6 AND current_streak = "Won 2"
|
### Context: CREATE TABLE table_1672976_2 (institution VARCHAR, wins VARCHAR, current_streak VARCHAR) ### Question: What institution had 6 wins and a current streak of won 2? ### Answer: SELECT institution FROM table_1672976_2 WHERE wins = 6 AND current_streak = "Won 2"
|
Who are all the opponents of Slovakia?
|
CREATE TABLE table_16741821_9 (opponents VARCHAR, against VARCHAR)
|
SELECT opponents FROM table_16741821_9 WHERE against = "Slovakia"
|
### Context: CREATE TABLE table_16741821_9 (opponents VARCHAR, against VARCHAR) ### Question: Who are all the opponents of Slovakia? ### Answer: SELECT opponents FROM table_16741821_9 WHERE against = "Slovakia"
|
What is the name of the round against the opponents jesse huta galung peter wessels?
|
CREATE TABLE table_16741821_9 (round VARCHAR, opponents VARCHAR)
|
SELECT round FROM table_16741821_9 WHERE opponents = "Jesse Huta Galung Peter Wessels"
|
### Context: CREATE TABLE table_16741821_9 (round VARCHAR, opponents VARCHAR) ### Question: What is the name of the round against the opponents jesse huta galung peter wessels? ### Answer: SELECT round FROM table_16741821_9 WHERE opponents = "Jesse Huta Galung Peter Wessels"
|
Are there SPI on the number 7 cylinder?
|
CREATE TABLE table_16731248_1 (spi VARCHAR, number_on_cyl VARCHAR)
|
SELECT spi FROM table_16731248_1 WHERE number_on_cyl = "7"
|
### Context: CREATE TABLE table_16731248_1 (spi VARCHAR, number_on_cyl VARCHAR) ### Question: Are there SPI on the number 7 cylinder? ### Answer: SELECT spi FROM table_16731248_1 WHERE number_on_cyl = "7"
|
What is the minimum number of bypass ports listed?
|
CREATE TABLE table_16731248_1 (bypass_ports INTEGER)
|
SELECT MIN(bypass_ports) FROM table_16731248_1
|
### Context: CREATE TABLE table_16731248_1 (bypass_ports INTEGER) ### Question: What is the minimum number of bypass ports listed? ### Answer: SELECT MIN(bypass_ports) FROM table_16731248_1
|
Is there a tapered grind on the Surestart engine?
|
CREATE TABLE table_16731248_1 (tapered_grind VARCHAR, engine VARCHAR)
|
SELECT tapered_grind FROM table_16731248_1 WHERE engine = "SureStart"
|
### Context: CREATE TABLE table_16731248_1 (tapered_grind VARCHAR, engine VARCHAR) ### Question: Is there a tapered grind on the Surestart engine? ### Answer: SELECT tapered_grind FROM table_16731248_1 WHERE engine = "SureStart"
|
How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes?
|
CREATE TABLE table_16731248_1 (bypass_boosters VARCHAR, spi VARCHAR, exhaust_ports VARCHAR)
|
SELECT bypass_boosters FROM table_16731248_1 WHERE spi = "Yes" AND exhaust_ports = "Slit"
|
### Context: CREATE TABLE table_16731248_1 (bypass_boosters VARCHAR, spi VARCHAR, exhaust_ports VARCHAR) ### Question: How many bypass boosters are there on the engine with slit exhaust ports and SPI is yes? ### Answer: SELECT bypass_boosters FROM table_16731248_1 WHERE spi = "Yes" AND exhaust_ports = "Slit"
|
How many times did Saxby Chambliss have a lead margin of 21?
|
CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR)
|
SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21
|
### Context: CREATE TABLE table_16751596_16 (republican VARCHAR, lead_margin VARCHAR) ### Question: How many times did Saxby Chambliss have a lead margin of 21? ### Answer: SELECT COUNT(republican) AS :_saxby_chambliss FROM table_16751596_16 WHERE lead_margin = 21
|
Name the least tries for when w is 4
|
CREATE TABLE table_16770037_4 (tries_for INTEGER, w VARCHAR)
|
SELECT MIN(tries_for) FROM table_16770037_4 WHERE w = 4
|
### Context: CREATE TABLE table_16770037_4 (tries_for INTEGER, w VARCHAR) ### Question: Name the least tries for when w is 4 ### Answer: SELECT MIN(tries_for) FROM table_16770037_4 WHERE w = 4
|
What is the total points when the point difference is +119?
|
CREATE TABLE table_1676073_13 (points VARCHAR, points_difference VARCHAR)
|
SELECT points FROM table_1676073_13 WHERE points_difference = "+119"
|
### Context: CREATE TABLE table_1676073_13 (points VARCHAR, points_difference VARCHAR) ### Question: What is the total points when the point difference is +119? ### Answer: SELECT points FROM table_1676073_13 WHERE points_difference = "+119"
|
What is the points for when the total points is 6?
|
CREATE TABLE table_1676073_13 (points_for VARCHAR, points VARCHAR)
|
SELECT points_for FROM table_1676073_13 WHERE points = "6"
|
### Context: CREATE TABLE table_1676073_13 (points_for VARCHAR, points VARCHAR) ### Question: What is the points for when the total points is 6? ### Answer: SELECT points_for FROM table_1676073_13 WHERE points = "6"
|
What club has 693 points for?
|
CREATE TABLE table_1676073_13 (club VARCHAR, points_for VARCHAR)
|
SELECT club FROM table_1676073_13 WHERE points_for = "693"
|
### Context: CREATE TABLE table_1676073_13 (club VARCHAR, points_for VARCHAR) ### Question: What club has 693 points for? ### Answer: SELECT club FROM table_1676073_13 WHERE points_for = "693"
|
How many wins does the club with 565 points for have?
|
CREATE TABLE table_1676073_13 (won VARCHAR, points_for VARCHAR)
|
SELECT won FROM table_1676073_13 WHERE points_for = "565"
|
### Context: CREATE TABLE table_1676073_13 (won VARCHAR, points_for VARCHAR) ### Question: How many wins does the club with 565 points for have? ### Answer: SELECT won FROM table_1676073_13 WHERE points_for = "565"
|
How many losses does Cross Keys RFC have?
|
CREATE TABLE table_1676073_13 (lost VARCHAR, club VARCHAR)
|
SELECT COUNT(lost) FROM table_1676073_13 WHERE club = "Cross Keys RFC"
|
### Context: CREATE TABLE table_1676073_13 (lost VARCHAR, club VARCHAR) ### Question: How many losses does Cross Keys RFC have? ### Answer: SELECT COUNT(lost) FROM table_1676073_13 WHERE club = "Cross Keys RFC"
|
How many losses does the club with 539 points for have?
|
CREATE TABLE table_1676073_13 (lost VARCHAR, points_for VARCHAR)
|
SELECT lost FROM table_1676073_13 WHERE points_for = "539"
|
### Context: CREATE TABLE table_1676073_13 (lost VARCHAR, points_for VARCHAR) ### Question: How many losses does the club with 539 points for have? ### Answer: SELECT lost FROM table_1676073_13 WHERE points_for = "539"
|
How many hectars of land is in Kaxholmen?
|
CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)
|
SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Kaxholmen"
|
### Context: CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR) ### Question: How many hectars of land is in Kaxholmen? ### Answer: SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Kaxholmen"
|
How many codes have a population of 598 in Vellinge Municipality?
|
CREATE TABLE table_16796625_1 (code VARCHAR, municipality VARCHAR, population VARCHAR)
|
SELECT COUNT(code) FROM table_16796625_1 WHERE municipality = "Vellinge municipality" AND population = 598
|
### Context: CREATE TABLE table_16796625_1 (code VARCHAR, municipality VARCHAR, population VARCHAR) ### Question: How many codes have a population of 598 in Vellinge Municipality? ### Answer: SELECT COUNT(code) FROM table_16796625_1 WHERE municipality = "Vellinge municipality" AND population = 598
|
Which urban area has the code 4870?
|
CREATE TABLE table_16796625_1 (urban_area__locality_ VARCHAR, code VARCHAR)
|
SELECT urban_area__locality_ FROM table_16796625_1 WHERE code = 4870
|
### Context: CREATE TABLE table_16796625_1 (urban_area__locality_ VARCHAR, code VARCHAR) ### Question: Which urban area has the code 4870? ### Answer: SELECT urban_area__locality_ FROM table_16796625_1 WHERE code = 4870
|
How many people live in an area of 30.94 hectares?
|
CREATE TABLE table_16796625_1 (population VARCHAR, land_area__hectares_ VARCHAR)
|
SELECT COUNT(population) FROM table_16796625_1 WHERE land_area__hectares_ = "30.94"
|
### Context: CREATE TABLE table_16796625_1 (population VARCHAR, land_area__hectares_ VARCHAR) ### Question: How many people live in an area of 30.94 hectares? ### Answer: SELECT COUNT(population) FROM table_16796625_1 WHERE land_area__hectares_ = "30.94"
|
How many hectares of land area is Landsbro?
|
CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)
|
SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Landsbro"
|
### Context: CREATE TABLE table_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR) ### Question: How many hectares of land area is Landsbro? ### Answer: SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Landsbro"
|
Name the total with one hand clean and jerk is 87.5 and snatch is 87.5
|
CREATE TABLE table_16779068_5 (total VARCHAR, snatch VARCHAR, one_hand_clean_ VARCHAR, _jerk VARCHAR)
|
SELECT total FROM table_16779068_5 WHERE one_hand_clean_ & _jerk = "87.5" AND snatch = "87.5"
|
### Context: CREATE TABLE table_16779068_5 (total VARCHAR, snatch VARCHAR, one_hand_clean_ VARCHAR, _jerk VARCHAR) ### Question: Name the total with one hand clean and jerk is 87.5 and snatch is 87.5 ### Answer: SELECT total FROM table_16779068_5 WHERE one_hand_clean_ & _jerk = "87.5" AND snatch = "87.5"
|
Name the snatch when body weight is 73.7
|
CREATE TABLE table_16779068_5 (snatch VARCHAR, body_weight VARCHAR)
|
SELECT snatch FROM table_16779068_5 WHERE body_weight = "737"
|
### Context: CREATE TABLE table_16779068_5 (snatch VARCHAR, body_weight VARCHAR) ### Question: Name the snatch when body weight is 73.7 ### Answer: SELECT snatch FROM table_16779068_5 WHERE body_weight = "737"
|
Name the 3 where weightlifter is m. van der goten ( bel )
|
CREATE TABLE table_16779068_5 (weightlifter VARCHAR)
|
SELECT 3 FROM table_16779068_5 WHERE weightlifter = "M. Van der Goten ( BEL )"
|
### Context: CREATE TABLE table_16779068_5 (weightlifter VARCHAR) ### Question: Name the 3 where weightlifter is m. van der goten ( bel ) ### Answer: SELECT 3 FROM table_16779068_5 WHERE weightlifter = "M. Van der Goten ( BEL )"
|
What are Wells Fargo's assets?
|
CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, company VARCHAR)
|
SELECT assets__billion_$_ FROM table_1682026_2 WHERE company = "Wells Fargo"
|
### Context: CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, company VARCHAR) ### Question: What are Wells Fargo's assets? ### Answer: SELECT assets__billion_$_ FROM table_1682026_2 WHERE company = "Wells Fargo"
|
Which company had profits of 26.9?
|
CREATE TABLE table_1682026_2 (company VARCHAR, profits__billion_$_ VARCHAR)
|
SELECT company FROM table_1682026_2 WHERE profits__billion_$_ = "26.9"
|
### Context: CREATE TABLE table_1682026_2 (company VARCHAR, profits__billion_$_ VARCHAR) ### Question: Which company had profits of 26.9? ### Answer: SELECT company FROM table_1682026_2 WHERE profits__billion_$_ = "26.9"
|
Which company has a market value of 147.4?
|
CREATE TABLE table_1682026_2 (company VARCHAR, market_value__billion_$_ VARCHAR)
|
SELECT company FROM table_1682026_2 WHERE market_value__billion_$_ = "147.4"
|
### Context: CREATE TABLE table_1682026_2 (company VARCHAR, market_value__billion_$_ VARCHAR) ### Question: Which company has a market value of 147.4? ### Answer: SELECT company FROM table_1682026_2 WHERE market_value__billion_$_ = "147.4"
|
When the assets are 2,550, what is the Market Value?
|
CREATE TABLE table_1682026_2 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR)
|
SELECT market_value__billion_$_ FROM table_1682026_2 WHERE assets__billion_$_ = "2,550"
|
### Context: CREATE TABLE table_1682026_2 (market_value__billion_$_ VARCHAR, assets__billion_$_ VARCHAR) ### Question: When the assets are 2,550, what is the Market Value? ### Answer: SELECT market_value__billion_$_ FROM table_1682026_2 WHERE assets__billion_$_ = "2,550"
|
What are the assets for company who's headquarters are located in Brazil?
|
CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, headquarters VARCHAR)
|
SELECT assets__billion_$_ FROM table_1682026_2 WHERE headquarters = "Brazil"
|
### Context: CREATE TABLE table_1682026_2 (assets__billion_$_ VARCHAR, headquarters VARCHAR) ### Question: What are the assets for company who's headquarters are located in Brazil? ### Answer: SELECT assets__billion_$_ FROM table_1682026_2 WHERE headquarters = "Brazil"
|
Name the population density when barangay is tiptip
|
CREATE TABLE table_1686313_1 (pop_density__per_km²_ VARCHAR, barangay VARCHAR)
|
SELECT pop_density__per_km²_ FROM table_1686313_1 WHERE barangay = "Tiptip"
|
### Context: CREATE TABLE table_1686313_1 (pop_density__per_km²_ VARCHAR, barangay VARCHAR) ### Question: Name the population density when barangay is tiptip ### Answer: SELECT pop_density__per_km²_ FROM table_1686313_1 WHERE barangay = "Tiptip"
|
Name the least population 2007 for barangay is poblacion ii
|
CREATE TABLE table_1686313_1 (population__2007_ INTEGER, barangay VARCHAR)
|
SELECT MIN(population__2007_) FROM table_1686313_1 WHERE barangay = "Poblacion II"
|
### Context: CREATE TABLE table_1686313_1 (population__2007_ INTEGER, barangay VARCHAR) ### Question: Name the least population 2007 for barangay is poblacion ii ### Answer: SELECT MIN(population__2007_) FROM table_1686313_1 WHERE barangay = "Poblacion II"
|
Name the score for philadelphia flyers
|
CREATE TABLE table_16864968_9 (score VARCHAR, opponent VARCHAR)
|
SELECT score FROM table_16864968_9 WHERE opponent = "Philadelphia Flyers"
|
### Context: CREATE TABLE table_16864968_9 (score VARCHAR, opponent VARCHAR) ### Question: Name the score for philadelphia flyers ### Answer: SELECT score FROM table_16864968_9 WHERE opponent = "Philadelphia Flyers"
|
Nam the opponent for prudential center
|
CREATE TABLE table_16864968_9 (opponent VARCHAR, location VARCHAR)
|
SELECT opponent FROM table_16864968_9 WHERE location = "Prudential Center"
|
### Context: CREATE TABLE table_16864968_9 (opponent VARCHAR, location VARCHAR) ### Question: Nam the opponent for prudential center ### Answer: SELECT opponent FROM table_16864968_9 WHERE location = "Prudential Center"
|
Name the location for 15046 attendance
|
CREATE TABLE table_16864968_9 (location VARCHAR, attendance VARCHAR)
|
SELECT location FROM table_16864968_9 WHERE attendance = 15046
|
### Context: CREATE TABLE table_16864968_9 (location VARCHAR, attendance VARCHAR) ### Question: Name the location for 15046 attendance ### Answer: SELECT location FROM table_16864968_9 WHERE attendance = 15046
|
How many people attended the Edmonton Oilers game?
|
CREATE TABLE table_16864968_8 (attendance VARCHAR, opponent VARCHAR)
|
SELECT attendance FROM table_16864968_8 WHERE opponent = "Edmonton Oilers"
|
### Context: CREATE TABLE table_16864968_8 (attendance VARCHAR, opponent VARCHAR) ### Question: How many people attended the Edmonton Oilers game? ### Answer: SELECT attendance FROM table_16864968_8 WHERE opponent = "Edmonton Oilers"
|
How many points were made in game 70?
|
CREATE TABLE table_16864968_8 (points VARCHAR, game VARCHAR)
|
SELECT COUNT(points) FROM table_16864968_8 WHERE game = 70
|
### Context: CREATE TABLE table_16864968_8 (points VARCHAR, game VARCHAR) ### Question: How many points were made in game 70? ### Answer: SELECT COUNT(points) FROM table_16864968_8 WHERE game = 70
|
Who was the opponent in the game where 19041 people attended?
|
CREATE TABLE table_16864968_8 (opponent VARCHAR, attendance VARCHAR)
|
SELECT opponent FROM table_16864968_8 WHERE attendance = 19041
|
### Context: CREATE TABLE table_16864968_8 (opponent VARCHAR, attendance VARCHAR) ### Question: Who was the opponent in the game where 19041 people attended? ### Answer: SELECT opponent FROM table_16864968_8 WHERE attendance = 19041
|
How many records were made on March 27, 2009?
|
CREATE TABLE table_16864968_8 (record VARCHAR, date VARCHAR)
|
SELECT COUNT(record) FROM table_16864968_8 WHERE date = "March 27, 2009"
|
### Context: CREATE TABLE table_16864968_8 (record VARCHAR, date VARCHAR) ### Question: How many records were made on March 27, 2009? ### Answer: SELECT COUNT(record) FROM table_16864968_8 WHERE date = "March 27, 2009"
|
What was the score on March 21, 2009?
|
CREATE TABLE table_16864968_8 (score VARCHAR, date VARCHAR)
|
SELECT score FROM table_16864968_8 WHERE date = "March 21, 2009"
|
### Context: CREATE TABLE table_16864968_8 (score VARCHAR, date VARCHAR) ### Question: What was the score on March 21, 2009? ### Answer: SELECT score FROM table_16864968_8 WHERE date = "March 21, 2009"
|
Name the date for margalita chakhnashvili salome devidze
|
CREATE TABLE table_16893837_4 (date VARCHAR, opponents VARCHAR)
|
SELECT date FROM table_16893837_4 WHERE opponents = "Margalita Chakhnashvili Salome Devidze"
|
### Context: CREATE TABLE table_16893837_4 (date VARCHAR, opponents VARCHAR) ### Question: Name the date for margalita chakhnashvili salome devidze ### Answer: SELECT date FROM table_16893837_4 WHERE opponents = "Margalita Chakhnashvili Salome Devidze"
|
Name the most points for independiente
|
CREATE TABLE table_16940409_1 (points INTEGER, team VARCHAR)
|
SELECT MAX(points) FROM table_16940409_1 WHERE team = "Independiente"
|
### Context: CREATE TABLE table_16940409_1 (points INTEGER, team VARCHAR) ### Question: Name the most points for independiente ### Answer: SELECT MAX(points) FROM table_16940409_1 WHERE team = "Independiente"
|
Name the original air date of 1/2 in season
|
CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "1/2"
|
### Context: CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: Name the original air date of 1/2 in season ### Answer: SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "1/2"
|
Name the original air date for number in season being 13
|
CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR)
|
SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "13"
|
### Context: CREATE TABLE table_16951593_1 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: Name the original air date for number in season being 13 ### Answer: SELECT original_air_date FROM table_16951593_1 WHERE no_in_season = "13"
|
Namee the title for production code for 4014
|
CREATE TABLE table_16951593_1 (title VARCHAR, production_code VARCHAR)
|
SELECT title FROM table_16951593_1 WHERE production_code = "4014"
|
### Context: CREATE TABLE table_16951593_1 (title VARCHAR, production_code VARCHAR) ### Question: Namee the title for production code for 4014 ### Answer: SELECT title FROM table_16951593_1 WHERE production_code = "4014"
|
Name the title for number in season 9
|
CREATE TABLE table_16951593_1 (title VARCHAR, no_in_season VARCHAR)
|
SELECT title FROM table_16951593_1 WHERE no_in_season = "9"
|
### Context: CREATE TABLE table_16951593_1 (title VARCHAR, no_in_season VARCHAR) ### Question: Name the title for number in season 9 ### Answer: SELECT title FROM table_16951593_1 WHERE no_in_season = "9"
|
Name who wrote the episode that had 7.56 million viewers
|
CREATE TABLE table_16951593_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
|
SELECT written_by FROM table_16951593_1 WHERE us_viewers__millions_ = "7.56"
|
### Context: CREATE TABLE table_16951593_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Name who wrote the episode that had 7.56 million viewers ### Answer: SELECT written_by FROM table_16951593_1 WHERE us_viewers__millions_ = "7.56"
|
Name the wins for best finish being 2nd
|
CREATE TABLE table_1697190_1 (wins VARCHAR, best_finish VARCHAR)
|
SELECT wins FROM table_1697190_1 WHERE best_finish = "2nd"
|
### Context: CREATE TABLE table_1697190_1 (wins VARCHAR, best_finish VARCHAR) ### Question: Name the wins for best finish being 2nd ### Answer: SELECT wins FROM table_1697190_1 WHERE best_finish = "2nd"
|
Name the most earnings for money list rank being 143
|
CREATE TABLE table_1697190_1 (earnings___ INTEGER, money_list_rank VARCHAR)
|
SELECT MAX(earnings___) AS $__ FROM table_1697190_1 WHERE money_list_rank = 143
|
### Context: CREATE TABLE table_1697190_1 (earnings___ INTEGER, money_list_rank VARCHAR) ### Question: Name the most earnings for money list rank being 143 ### Answer: SELECT MAX(earnings___) AS $__ FROM table_1697190_1 WHERE money_list_rank = 143
|
Nme the most cuts made for wins being 0
|
CREATE TABLE table_1697190_1 (cuts_made INTEGER, wins VARCHAR)
|
SELECT MAX(cuts_made) FROM table_1697190_1 WHERE wins = 0
|
### Context: CREATE TABLE table_1697190_1 (cuts_made INTEGER, wins VARCHAR) ### Question: Nme the most cuts made for wins being 0 ### Answer: SELECT MAX(cuts_made) FROM table_1697190_1 WHERE wins = 0
|
Name the wins for tournaments played being 14
|
CREATE TABLE table_1697190_1 (wins VARCHAR, tournaments_played VARCHAR)
|
SELECT wins FROM table_1697190_1 WHERE tournaments_played = 14
|
### Context: CREATE TABLE table_1697190_1 (wins VARCHAR, tournaments_played VARCHAR) ### Question: Name the wins for tournaments played being 14 ### Answer: SELECT wins FROM table_1697190_1 WHERE tournaments_played = 14
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.