text stringlengths 114 1.06k |
|---|
### question: What is the week with a school that is ball state? ### answer: SELECT week FROM table_name_19 WHERE school = "ball state" ### context: CREATE TABLE table_name_19 (week VARCHAR, school VARCHAR) |
### question: What number last Runners-up where there when the Last win was 1999 and the Runners-up was bigger than 1? ### answer: SELECT COUNT(Last) AS runners_up FROM table_name_42 WHERE last_win = "1999" AND runners_up > 1 ### context: CREATE TABLE table_name_42 (Last VARCHAR, last_win VARCHAR, runners_up VARCHAR) |
### question: What is the number of Last Runners-up that has the club name of dempo sc? ### answer: SELECT SUM(Last) AS runners_up FROM table_name_63 WHERE club = "dempo sc" ### context: CREATE TABLE table_name_63 (Last INTEGER, club VARCHAR) |
### question: Which Position has a Round larger than 6, and a Player of neil pilon? ### answer: SELECT position FROM table_name_97 WHERE round > 6 AND player = "neil pilon" ### context: CREATE TABLE table_name_97 (position VARCHAR, round VARCHAR, player VARCHAR) |
### question: Which Nationality has a Player of rudy poeschek? ### answer: SELECT nationality FROM table_name_51 WHERE player = "rudy poeschek" ### context: CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR) |
### question: Which Position has a Player of steve nemeth? ### answer: SELECT position FROM table_name_94 WHERE player = "steve nemeth" ### context: CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR) |
### question: Which Position has a Nationality of canada, and a Player of pat janostin? ### answer: SELECT position FROM table_name_81 WHERE nationality = "canada" AND player = "pat janostin" ### context: CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR) |
### question: What was the score of the match on April 23, 2007? ### answer: SELECT score FROM table_name_65 WHERE date = "april 23, 2007" ### context: CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR) |
### question: Which Date has a Game site of shea stadium, and a Week of 5? ### answer: SELECT date FROM table_name_18 WHERE game_site = "shea stadium" AND week = 5 ### context: CREATE TABLE table_name_18 (date VARCHAR, game_site VARCHAR, week VARCHAR) |
### question: Which Attendance is the highest one that has a Week smaller than 9, and a Result of l 24β23? ### answer: SELECT MAX(attendance) FROM table_name_27 WHERE week < 9 AND result = "l 24β23" ### context: CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, result VARCHAR) |
### question: Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137? ### answer: SELECT AVG(week) FROM table_name_65 WHERE opponent = "baltimore colts" AND attendance < 55 OFFSET 137 ### context: CREATE TABLE table_name_65 (week INTEGER, opponent VARCHAR, attendance VARCHAR) |
### question: Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30? ### answer: SELECT AVG(game) FROM table_name_6 WHERE points = 53 AND opponent = "@ minnesota north stars" AND december > 30 ### context: CREATE TABLE table_name_6 (game INTEGER, december VARCHAR, points... |
### question: Which December has a Record of 21β6β5? ### answer: SELECT AVG(december) FROM table_name_59 WHERE record = "21β6β5" ### context: CREATE TABLE table_name_59 (december INTEGER, record VARCHAR) |
### question: Which Points have an Opponent of @ pittsburgh penguins? ### answer: SELECT MAX(points) FROM table_name_86 WHERE opponent = "@ pittsburgh penguins" ### context: CREATE TABLE table_name_86 (points INTEGER, opponent VARCHAR) |
### question: What year was the startup for the Project Named of taq taq ph 2? ### answer: SELECT year_startup FROM table_name_51 WHERE project_name = "taq taq ph 2" ### context: CREATE TABLE table_name_51 (year_startup VARCHAR, project_name VARCHAR) |
### question: What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)? ### answer: SELECT operator FROM table_name_89 WHERE peak = "90" AND year_startup = "2010" AND project_name = "aosp expansion 1 (jackpine ph 1a)" ### context: CREATE TABLE table_name_89 (operato... |
### question: What country has peak 20 and a project named jarn yabhour; ramhan? ### answer: SELECT country FROM table_name_56 WHERE peak = "20" AND project_name = "jarn yabhour; ramhan" ### context: CREATE TABLE table_name_56 (country VARCHAR, peak VARCHAR, project_name VARCHAR) |
### question: How much Attendance has an Opponent of swindon wildcats? ### answer: SELECT COUNT(attendance) FROM table_name_90 WHERE opponent = "swindon wildcats" ### context: CREATE TABLE table_name_90 (attendance VARCHAR, opponent VARCHAR) |
### question: Which Attendance is the lowest one that has a Venue of away, and a Date of 19? ### answer: SELECT MIN(attendance) FROM table_name_64 WHERE venue = "away" AND date = 19 ### context: CREATE TABLE table_name_64 (attendance INTEGER, venue VARCHAR, date VARCHAR) |
### question: Which Venue has a Result of won 5-4? ### answer: SELECT venue FROM table_name_65 WHERE result = "won 5-4" ### context: CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR) |
### question: what country has dubai ### answer: SELECT country FROM table_name_89 WHERE town = "dubai" ### context: CREATE TABLE table_name_89 (country VARCHAR, town VARCHAR) |
### question: what country is dubai in ### answer: SELECT country FROM table_name_50 WHERE town = "dubai" ### context: CREATE TABLE table_name_50 (country VARCHAR, town VARCHAR) |
### question: What home team has june 22 as the date? ### answer: SELECT home_team FROM table_name_87 WHERE date = "june 22" ### context: CREATE TABLE table_name_87 (home_team VARCHAR, date VARCHAR) |
### question: What road team has 86-84 as the result? ### answer: SELECT road_team FROM table_name_67 WHERE result = "86-84" ### context: CREATE TABLE table_name_67 (road_team VARCHAR, result VARCHAR) |
### question: What road team has 91-82 as the result? ### answer: SELECT road_team FROM table_name_86 WHERE result = "91-82" ### context: CREATE TABLE table_name_86 (road_team VARCHAR, result VARCHAR) |
### question: Which game has houston as the road team, and june 15 as the date? ### answer: SELECT game FROM table_name_26 WHERE road_team = "houston" AND date = "june 15" ### context: CREATE TABLE table_name_26 (game VARCHAR, road_team VARCHAR, date VARCHAR) |
### question: What is listed under occupation for someone from Santa Monica, California? ### answer: SELECT occupation FROM table_name_71 WHERE hometown = "santa monica, california" ### context: CREATE TABLE table_name_71 (occupation VARCHAR, hometown VARCHAR) |
### question: For natives of St. Louis, Missouri, what was listed under education? ### answer: SELECT education FROM table_name_47 WHERE hometown = "st. louis, missouri" ### context: CREATE TABLE table_name_47 (education VARCHAR, hometown VARCHAR) |
### question: When the occupation was utility worker on-air talent, what was the game status? ### answer: SELECT game_status FROM table_name_21 WHERE occupation = "utility worker on-air talent" ### context: CREATE TABLE table_name_21 (game_status VARCHAR, occupation VARCHAR) |
### question: Which 2005 has a 2004 of 3β2? ### answer: SELECT 2005 FROM table_name_3 WHERE 2004 = "3β2" ### context: CREATE TABLE table_name_3 (Id VARCHAR) |
### question: Which 2011 has a 2009 of 15β2? ### answer: SELECT 2011 FROM table_name_66 WHERE 2009 = "15β2" ### context: CREATE TABLE table_name_66 (Id VARCHAR) |
### question: Which 2010 has a 2006 of w? ### answer: SELECT 2010 FROM table_name_51 WHERE 2006 = "w" ### context: CREATE TABLE table_name_51 (Id VARCHAR) |
### question: Which 2008 has a 2005 of 13β3? ### answer: SELECT 2008 FROM table_name_48 WHERE 2005 = "13β3" ### context: CREATE TABLE table_name_48 (Id VARCHAR) |
### question: What is the time of the Ghantoot Racing and Polo Club? ### answer: SELECT time FROM table_name_4 WHERE ground = "ghantoot racing and polo club" ### context: CREATE TABLE table_name_4 (time VARCHAR, ground VARCHAR) |
### question: What is the home team score of the game with Adelaide as the away team? ### answer: SELECT home_team AS score FROM table_name_90 WHERE away_team = "adelaide" ### context: CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) |
### question: What is the time of the Essendon home team game? ### answer: SELECT time FROM table_name_81 WHERE home_team = "essendon" ### context: CREATE TABLE table_name_81 (time VARCHAR, home_team VARCHAR) |
### question: What is the home team score of the Ghantoot Racing and Polo Club Ground? ### answer: SELECT home_team AS score FROM table_name_25 WHERE ground = "ghantoot racing and polo club" ### context: CREATE TABLE table_name_25 (home_team VARCHAR, ground VARCHAR) |
### question: What shows for region when the date is february 2006? ### answer: SELECT region FROM table_name_29 WHERE date = "february 2006" ### context: CREATE TABLE table_name_29 (region VARCHAR, date VARCHAR) |
### question: What shows as the format for catalog 11 135? ### answer: SELECT format FROM table_name_61 WHERE catalog = "11 135" ### context: CREATE TABLE table_name_61 (format VARCHAR, catalog VARCHAR) |
### question: In what Region is Catalog number 885 380-1? ### answer: SELECT region FROM table_name_63 WHERE catalog = "885 380-1" ### context: CREATE TABLE table_name_63 (region VARCHAR, catalog VARCHAR) |
### question: Which Sampling Memory/Upgrade-able has a rate of 16-bit 44.1khz? ### answer: SELECT sampling_memory_upgrade_able FROM table_name_66 WHERE sampling_rate = "16-bit 44.1khz" ### context: CREATE TABLE table_name_66 (sampling_memory_upgrade_able VARCHAR, sampling_rate VARCHAR) |
### question: Around what time frame release a Sampling Rate of 12-bit 40khz? ### answer: SELECT SUM(release_date) FROM table_name_63 WHERE sampling_rate = "12-bit 40khz" ### context: CREATE TABLE table_name_63 (release_date INTEGER, sampling_rate VARCHAR) |
### question: How much is a product with a Sampling Rate of 12-bit 40khz? ### answer: SELECT price FROM table_name_65 WHERE sampling_rate = "12-bit 40khz" ### context: CREATE TABLE table_name_65 (price VARCHAR, sampling_rate VARCHAR) |
### question: what team scored on december 19 ### answer: SELECT record FROM table_name_65 WHERE date = "december 19" ### context: CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR) |
### question: what team scored 5β5β1β1? ### answer: SELECT home FROM table_name_71 WHERE record = "5β5β1β1" ### context: CREATE TABLE table_name_71 (home VARCHAR, record VARCHAR) |
### question: what team scored on november 7 ### answer: SELECT record FROM table_name_65 WHERE date = "november 7" ### context: CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR) |
### question: Which player has rank 1? ### answer: SELECT player FROM table_name_24 WHERE rank = 1 ### context: CREATE TABLE table_name_24 (player VARCHAR, rank VARCHAR) |
### question: What's the mean number of wins with a rank that's more than 5? ### answer: SELECT AVG(wins) FROM table_name_91 WHERE rank > 5 ### context: CREATE TABLE table_name_91 (wins INTEGER, rank INTEGER) |
### question: What amount of earnings does Tiger Woods have? ### answer: SELECT earnings___$__ FROM table_name_40 WHERE player = "tiger woods" ### context: CREATE TABLE table_name_40 (earnings___$__ VARCHAR, player VARCHAR) |
### question: What is the position number of the club with more than 24 points and a w-l-d of 8-5-3? ### answer: SELECT COUNT(position) FROM table_name_99 WHERE points > 24 AND w_l_d = "8-5-3" ### context: CREATE TABLE table_name_99 (position VARCHAR, points VARCHAR, w_l_d VARCHAR) |
### question: What is the goals for/against of the club with 17 points? ### answer: SELECT goals_for_against FROM table_name_94 WHERE points = 17 ### context: CREATE TABLE table_name_94 (goals_for_against VARCHAR, points VARCHAR) |
### question: What is the highest number of games played of the club with a position number less than 4 and a 29-24 goals for/against? ### answer: SELECT MAX(games_played) FROM table_name_85 WHERE position < 4 AND goals_for_against = "29-24" ### context: CREATE TABLE table_name_85 (games_played INTEGER, position VARCHA... |
### question: Which date's attendance was more than 35,540? ### answer: SELECT date FROM table_name_3 WHERE attendance > 35 OFFSET 540 ### context: CREATE TABLE table_name_3 (date VARCHAR, attendance INTEGER) |
### question: What is the smallest attendance number for December 3, 1944? ### answer: SELECT MIN(attendance) FROM table_name_39 WHERE date = "december 3, 1944" ### context: CREATE TABLE table_name_39 (attendance INTEGER, date VARCHAR) |
### question: When was the Treaty of Cession for Karikal Colony? ### answer: SELECT treaty_of_cession FROM table_name_60 WHERE colony = "karikal" ### context: CREATE TABLE table_name_60 (treaty_of_cession VARCHAR, colony VARCHAR) |
### question: what day was the game in argentina ### answer: SELECT date FROM table_name_92 WHERE opponent = "argentina" ### context: CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR) |
### question: what city scored 0:0 ### answer: SELECT city FROM table_name_78 WHERE resultsΒΉ = "0:0" ### context: CREATE TABLE table_name_78 (city VARCHAR, resultsΒΉ VARCHAR) |
### question: what game was played on june 14 ### answer: SELECT type_of_game FROM table_name_27 WHERE date = "june 14" ### context: CREATE TABLE table_name_27 (type_of_game VARCHAR, date VARCHAR) |
### question: What score has april 28 as the date? ### answer: SELECT score FROM table_name_5 WHERE date = "april 28" ### context: CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR) |
### question: What score has tim duncan (27) as the leading scorer? ### answer: SELECT score FROM table_name_96 WHERE leading_scorer = "tim duncan (27)" ### context: CREATE TABLE table_name_96 (score VARCHAR, leading_scorer VARCHAR) |
### question: What visitor has tim duncan (16) as the leading scorer? ### answer: SELECT visitor FROM table_name_18 WHERE leading_scorer = "tim duncan (16)" ### context: CREATE TABLE table_name_18 (visitor VARCHAR, leading_scorer VARCHAR) |
### question: What were Will Rackley's total rounds? ### answer: SELECT COUNT(round) FROM table_name_89 WHERE name = "will rackley" ### context: CREATE TABLE table_name_89 (round VARCHAR, name VARCHAR) |
### question: Which cornerback has the lowest overall and a pick number smaller than 16? ### answer: SELECT MIN(overall) FROM table_name_30 WHERE position = "cornerback" AND pick__number < 16 ### context: CREATE TABLE table_name_30 (overall INTEGER, position VARCHAR, pick__number VARCHAR) |
### question: Which cornerback has the highest round? ### answer: SELECT MAX(round) FROM table_name_97 WHERE position = "cornerback" ### context: CREATE TABLE table_name_97 (round INTEGER, position VARCHAR) |
### question: What was the outcome on 25 october 2004? ### answer: SELECT outcome FROM table_name_99 WHERE date = "25 october 2004" ### context: CREATE TABLE table_name_99 (outcome VARCHAR, date VARCHAR) |
### question: Which opponent was a runner-up on 2 march 1998? ### answer: SELECT opponent_in_the_final FROM table_name_6 WHERE outcome = "runner-up" AND date = "2 march 1998" ### context: CREATE TABLE table_name_6 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR) |
### question: Which championship had an oppenent of mario anΔiΔ in the final? ### answer: SELECT championship FROM table_name_8 WHERE opponent_in_the_final = "mario anΔiΔ" ### context: CREATE TABLE table_name_8 (championship VARCHAR, opponent_in_the_final VARCHAR) |
### question: Name the change with share of 2.9% ### answer: SELECT change FROM table_name_71 WHERE share = "2.9%" ### context: CREATE TABLE table_name_71 (change VARCHAR, share VARCHAR) |
### question: Name the change for english democrats ### answer: SELECT change FROM table_name_78 WHERE party = "english democrats" ### context: CREATE TABLE table_name_78 (change VARCHAR, party VARCHAR) |
### question: Name the average votes for one london ### answer: SELECT AVG(votes) FROM table_name_22 WHERE party = "one london" ### context: CREATE TABLE table_name_22 (votes INTEGER, party VARCHAR) |
### question: Which Country has a Rank of 5? ### answer: SELECT country FROM table_name_77 WHERE rank = 5 ### context: CREATE TABLE table_name_77 (country VARCHAR, rank VARCHAR) |
### question: Which Earnings ($) is the lowest one that has a Rank of 1, and Events smaller than 22? ### answer: SELECT MIN(earnings___) AS $__ FROM table_name_60 WHERE rank = 1 AND events < 22 ### context: CREATE TABLE table_name_60 (earnings___ INTEGER, rank VARCHAR, events VARCHAR) |
### question: How many earnings have Wins larger than 3? ### answer: SELECT SUM(earnings___) AS $__ FROM table_name_70 WHERE wins > 3 ### context: CREATE TABLE table_name_70 (earnings___ INTEGER, wins INTEGER) |
### question: Which Player has 4 Wins? ### answer: SELECT player FROM table_name_49 WHERE wins = 4 ### context: CREATE TABLE table_name_49 (player VARCHAR, wins VARCHAR) |
### question: How many Poles have a Bike of honda rc212v, and Podiums smaller than 0? ### answer: SELECT COUNT(poles) FROM table_name_92 WHERE bike = "honda rc212v" AND podiums < 0 ### context: CREATE TABLE table_name_92 (poles VARCHAR, bike VARCHAR, podiums VARCHAR) |
### question: Which Wins is the highest one that has a Pos of 2nd, and Poles larger than 2? ### answer: SELECT MAX(wins) FROM table_name_3 WHERE pos = "2nd" AND poles > 2 ### context: CREATE TABLE table_name_3 (wins INTEGER, pos VARCHAR, poles VARCHAR) |
### question: What is the average of points for 8th place with draw more than 8? ### answer: SELECT AVG(points) FROM table_name_55 WHERE place = "8th" AND draw > 8 ### context: CREATE TABLE table_name_55 (points INTEGER, place VARCHAR, draw VARCHAR) |
### question: Which Points have a Game smaller than 8, and a Record of 1β0β0? ### answer: SELECT SUM(points) FROM table_name_73 WHERE game < 8 AND record = "1β0β0" ### context: CREATE TABLE table_name_73 (points INTEGER, game VARCHAR, record VARCHAR) |
### question: Which Game has a Record of 5β3β1, and an October smaller than 29? ### answer: SELECT SUM(game) FROM table_name_80 WHERE record = "5β3β1" AND october < 29 ### context: CREATE TABLE table_name_80 (game INTEGER, record VARCHAR, october VARCHAR) |
### question: Which Game has a Score of 3β4? ### answer: SELECT MIN(game) FROM table_name_76 WHERE score = "3β4" ### context: CREATE TABLE table_name_76 (game INTEGER, score VARCHAR) |
### question: Which Game has a Record of 4β2β1, and Points larger than 9? ### answer: SELECT SUM(game) FROM table_name_19 WHERE record = "4β2β1" AND points > 9 ### context: CREATE TABLE table_name_19 (game INTEGER, record VARCHAR, points VARCHAR) |
### question: Which Nationality has a Position of defense, and a Player of nikita korovkin? ### answer: SELECT nationality FROM table_name_51 WHERE position = "defense" AND player = "nikita korovkin" ### context: CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR) |
### question: Which Nationality has a Position of left wing? ### answer: SELECT nationality FROM table_name_99 WHERE position = "left wing" ### context: CREATE TABLE table_name_99 (nationality VARCHAR, position VARCHAR) |
### question: Which Player has a Position of forward? ### answer: SELECT player FROM table_name_18 WHERE position = "forward" ### context: CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR) |
### question: Which Week 3 Sept 14 has a Week 6 Oct 5 of kansas (4-1)? ### answer: SELECT week_3_sept_14 FROM table_name_87 WHERE week_6_oct_5 = "kansas (4-1)" ### context: CREATE TABLE table_name_87 (week_3_sept_14 VARCHAR, week_6_oct_5 VARCHAR) |
### question: Which Week 2 Sept 7 has a Week 6 Oct 5 of wake forest (3-1)? ### answer: SELECT week_2_sept_7 FROM table_name_84 WHERE week_6_oct_5 = "wake forest (3-1)" ### context: CREATE TABLE table_name_84 (week_2_sept_7 VARCHAR, week_6_oct_5 VARCHAR) |
### question: Which Week 1 Sept 2 has a Week 3 Sept 14 of south florida (3-0)? ### answer: SELECT week_1_sept_2 FROM table_name_72 WHERE week_3_sept_14 = "south florida (3-0)" ### context: CREATE TABLE table_name_72 (week_1_sept_2 VARCHAR, week_3_sept_14 VARCHAR) |
### question: Which Week 7 Oct 12 has a Week 6 Oct 5 of boise state (4-0)? ### answer: SELECT week_7_oct_12 FROM table_name_23 WHERE week_6_oct_5 = "boise state (4-0)" ### context: CREATE TABLE table_name_23 (week_7_oct_12 VARCHAR, week_6_oct_5 VARCHAR) |
### question: Which Week 2 Sept 7 has a Week 7 Oct 12 of ball state (7-0)? ### answer: SELECT week_2_sept_7 FROM table_name_8 WHERE week_7_oct_12 = "ball state (7-0)" ### context: CREATE TABLE table_name_8 (week_2_sept_7 VARCHAR, week_7_oct_12 VARCHAR) |
### question: Which Week 6 Oct 5 has a Week 14 Nov 30 of texas (11-1)? ### answer: SELECT week_6_oct_5 FROM table_name_37 WHERE week_14_nov_30 = "texas (11-1)" ### context: CREATE TABLE table_name_37 (week_6_oct_5 VARCHAR, week_14_nov_30 VARCHAR) |
### question: What is the highest round of Tommy Allman, who had a pick less than 40? ### answer: SELECT MAX(round) FROM table_name_27 WHERE player = "tommy allman" AND pick < 40 ### context: CREATE TABLE table_name_27 (round INTEGER, player VARCHAR, pick VARCHAR) |
### question: Who was the back player with a pick less than 183 from the round greater than 12? ### answer: SELECT player FROM table_name_41 WHERE pick < 183 AND position = "back" AND round > 12 ### context: CREATE TABLE table_name_41 (player VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR) |
### question: What is the total number of rounds of the end player with a pick number greater than 303? ### answer: SELECT COUNT(round) FROM table_name_21 WHERE pick > 303 AND position = "end" ### context: CREATE TABLE table_name_21 (round VARCHAR, pick VARCHAR, position VARCHAR) |
### question: What is the highest pick of the back player from round 28? ### answer: SELECT MAX(pick) FROM table_name_42 WHERE position = "back" AND round = 28 ### context: CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, round VARCHAR) |
### question: What is position of the player with a pick number greater than 315 and a round of 30? ### answer: SELECT position FROM table_name_51 WHERE pick > 315 AND round = 30 ### context: CREATE TABLE table_name_51 (position VARCHAR, pick VARCHAR, round VARCHAR) |
### question: On what Week was the Result W 17-14? ### answer: SELECT AVG(week) FROM table_name_4 WHERE result = "w 17-14" ### context: CREATE TABLE table_name_4 (week INTEGER, result VARCHAR) |
### question: What was the Result after the Week 4 on November 3, 1968? ### answer: SELECT result FROM table_name_27 WHERE week > 4 AND date = "november 3, 1968" ### context: CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR, date VARCHAR) |
### question: What is the attendance in week 4? ### answer: SELECT AVG(attendance) FROM table_name_57 WHERE week = 4 ### context: CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR) |
### question: What was the date of the game with a record of 17β25? ### answer: SELECT date FROM table_name_16 WHERE record = "17β25" ### context: CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR) |
### question: Who was the opponent at the game with a score of 6β5 (10)? ### answer: SELECT opponent FROM table_name_47 WHERE score = "6β5 (10)" ### context: CREATE TABLE table_name_47 (opponent VARCHAR, score VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.