Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
45,200 | <question>: What code has a C.R of 16.7:1? <context>: CREATE TABLE table_name_97 (code VARCHAR, cr VARCHAR) | SELECT code FROM table_name_97 WHERE cr = "16.7:1" |
45,201 | <question>: What Outcome happened on a Date that was 20 november 2011? <context>: CREATE TABLE table_name_61 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_61 WHERE date = "20 november 2011" |
45,202 | <question>: Which Away team has a Score of 0–3? <context>: CREATE TABLE table_name_4 (away_team VARCHAR, score VARCHAR) | SELECT away_team FROM table_name_4 WHERE score = "0–3" |
45,203 | <question>: Which Attendance has a Tie number of 5? <context>: CREATE TABLE table_name_63 (attendance VARCHAR, tie_no VARCHAR) | SELECT attendance FROM table_name_63 WHERE tie_no = "5" |
45,204 | <question>: Which Score has an Attendance of 23 january 1999, and a Tie # of 6? <context>: CREATE TABLE table_name_74 (score VARCHAR, attendance VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_74 WHERE attendance = "23 january 1999" AND tie_no = "6" |
45,205 | <question>: Which Tie #has an Attendance of 54,591? <context>: CREATE TABLE table_name_16 (tie_no VARCHAR, attendance VARCHAR) | SELECT tie_no FROM table_name_16 WHERE attendance = "54,591" |
45,206 | <question>: Which Home team has a Score of 1–1, and an Away team of tottenham hotspur? <context>: CREATE TABLE table_name_68 (home_team VARCHAR, score VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_68 WHERE score = "1–1" AND away_team = "tottenham hotspur" |
45,207 | <question>: Which Attendance has a Tie # of 15? <context>: CREATE TABLE table_name_25 (attendance VARCHAR, tie_no VARCHAR) | SELECT attendance FROM table_name_25 WHERE tie_no = "15" |
45,208 | <question>: In what Year was the Position 11th? <context>: CREATE TABLE table_name_80 (year VARCHAR, position VARCHAR) | SELECT COUNT(year) FROM table_name_80 WHERE position = "11th" |
45,209 | <question>: What was the name of the Competition in Rome, Italy? <context>: CREATE TABLE table_name_46 (competition VARCHAR, venue VARCHAR) | SELECT competition FROM table_name_46 WHERE venue = "rome, italy" |
45,210 | <question>: What Notes after 1983 have a Position of 18th? <context>: CREATE TABLE table_name_64 (notes VARCHAR, year VARCHAR, position VARCHAR) | SELECT notes FROM table_name_64 WHERE year > 1983 AND position = "18th" |
45,211 | <question>: After 1983, what was the Position in Seoul, South Korea? <context>: CREATE TABLE table_name_92 (position VARCHAR, year VARCHAR, venue VARCHAR) | SELECT position FROM table_name_92 WHERE year > 1983 AND venue = "seoul, south korea" |
45,212 | <question>: How many Gold medals for the country with a Rank of 1 and less than 2 Total medals? <context>: CREATE TABLE table_name_57 (gold VARCHAR, rank VARCHAR, total VARCHAR) | SELECT COUNT(gold) FROM table_name_57 WHERE rank = "1" AND total < 2 |
45,213 | <question>: How many Gold medals does the country with 2 Silver and more than 2 Bronze have? <context>: CREATE TABLE table_name_11 (gold VARCHAR, silver VARCHAR, bronze VARCHAR) | SELECT COUNT(gold) FROM table_name_11 WHERE silver = 2 AND bronze > 2 |
45,214 | <question>: What is the Age of dorothy Peel as of 1 February 2014 ? <context>: CREATE TABLE table_name_18 (age_as_of_1_february_2014 VARCHAR, name VARCHAR) | SELECT age_as_of_1_february_2014 FROM table_name_18 WHERE name = "dorothy peel" |
45,215 | <question>: Who is 111years, 358days Age as of 1 February 2014? <context>: CREATE TABLE table_name_86 (name VARCHAR, age_as_of_1_february_2014 VARCHAR) | SELECT name FROM table_name_86 WHERE age_as_of_1_february_2014 = "111years, 358days" |
45,216 | <question>: Which Capacity has a City of london, and a Stadium of queen's club? <context>: CREATE TABLE table_name_85 (capacity INTEGER, city VARCHAR, stadium VARCHAR) | SELECT AVG(capacity) FROM table_name_85 WHERE city = "london" AND stadium = "queen's club" |
45,217 | <question>: Which Rank has a Name of thomas morgenstern, and Points larger than 368.9? <context>: CREATE TABLE table_name_38 (rank INTEGER, name VARCHAR, points VARCHAR) | SELECT AVG(rank) FROM table_name_38 WHERE name = "thomas morgenstern" AND points > 368.9 |
45,218 | <question>: What is the lowest total for bronzes over 1, golds over 8, and fewer than 10 silvers? <context>: CREATE TABLE table_name_64 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR) | SELECT MIN(total) FROM table_name_64 WHERE bronze > 1 AND gold > 8 AND silver < 10 |
45,219 | <question>: What is the highest number of silvers for ranks over 7? <context>: CREATE TABLE table_name_88 (silver INTEGER, rank INTEGER) | SELECT MAX(silver) FROM table_name_88 WHERE rank > 7 |
45,220 | <question>: Who was the opponent when the record recorded was 64-78? <context>: CREATE TABLE table_name_51 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_51 WHERE record = "64-78" |
45,221 | <question>: When the record was 67-82, what was the final score recorded? <context>: CREATE TABLE table_name_55 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_55 WHERE record = "67-82" |
45,222 | <question>: Who was the opponent for the game played with 54,136 people in attendance? <context>: CREATE TABLE table_name_38 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_38 WHERE attendance = "54,136" |
45,223 | <question>: Which position does bert coan play? <context>: CREATE TABLE table_name_19 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_19 WHERE player = "bert coan" |
45,224 | <question>: What is round 1's position? <context>: CREATE TABLE table_name_13 (position VARCHAR, round VARCHAR) | SELECT position FROM table_name_13 WHERE round = 1 |
45,225 | <question>: Which Round is the highest one that has a Position of running back? <context>: CREATE TABLE table_name_14 (round INTEGER, position VARCHAR) | SELECT MAX(round) FROM table_name_14 WHERE position = "running back" |
45,226 | <question>: Which Position has a Pick smaller than 29, and a School/Club Team of arizona? <context>: CREATE TABLE table_name_85 (position VARCHAR, pick VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_85 WHERE pick < 29 AND school_club_team = "arizona" |
45,227 | <question>: Which Round is the lowest one that has a School/Club Team of alabama, and a Pick larger than 43? <context>: CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR, pick VARCHAR) | SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "alabama" AND pick > 43 |
45,228 | <question>: what is the venue of belshina <context>: CREATE TABLE table_name_94 (venue VARCHAR, team VARCHAR) | SELECT venue FROM table_name_94 WHERE team = "belshina" |
45,229 | <question>: what is the venue of neman <context>: CREATE TABLE table_name_23 (venue VARCHAR, team VARCHAR) | SELECT venue FROM table_name_23 WHERE team = "neman" |
45,230 | <question>: what is the venue of neman <context>: CREATE TABLE table_name_47 (venue VARCHAR, team VARCHAR) | SELECT venue FROM table_name_47 WHERE team = "neman" |
45,231 | <question>: Name the total number of pick with round less than 6 and overall of 102 <context>: CREATE TABLE table_name_46 (pick__number VARCHAR, round VARCHAR, overall VARCHAR) | SELECT COUNT(pick__number) FROM table_name_46 WHERE round < 6 AND overall = 102 |
45,232 | <question>: Which Outcome has a Score of 4–6 3–6? <context>: CREATE TABLE table_name_30 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_30 WHERE score = "4–6 3–6" |
45,233 | <question>: Which Tournament has a Score of 3–6 6–4 4–6? <context>: CREATE TABLE table_name_43 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_43 WHERE score = "3–6 6–4 4–6" |
45,234 | <question>: Which Date has a Score of 6–1 7–6 (8–6)? <context>: CREATE TABLE table_name_11 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_11 WHERE score = "6–1 7–6 (8–6)" |
45,235 | <question>: Which Score has a Date of 26 september 2004? <context>: CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_71 WHERE date = "26 september 2004" |
45,236 | <question>: Which Outcome has a Score of 3–6 2–6? <context>: CREATE TABLE table_name_90 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_90 WHERE score = "3–6 2–6" |
45,237 | <question>: Which Surface has an Opponent in the final of daniella dominikovic? <context>: CREATE TABLE table_name_5 (surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT surface FROM table_name_5 WHERE opponent_in_the_final = "daniella dominikovic" |
45,238 | <question>: What is the amount of time (sum) at 40° that it takes a 16 lb shell to reach a maximum of no more than 22,000 ft? <context>: CREATE TABLE table_name_80 (time_to_ft__m__at_40 VARCHAR, shell__lb_ VARCHAR, max_height__ft_ VARCHAR) | SELECT COUNT(time_to_ft__m__at_40) AS °__seconds_ FROM table_name_80 WHERE shell__lb_ = 16 AND max_height__ft_ < 22 OFFSET 000 |
45,239 | <question>: What is the average maximum height of a shell that travels for more than 16.3 seconds at 55° and has a maximum velocity of 2200 ft/s? <context>: CREATE TABLE table_name_19 (max_height__ft_ INTEGER, time_to_ft__m__at_55°__seconds_ VARCHAR, m_v_ft_s VARCHAR) | SELECT AVG(max_height__ft_) FROM table_name_19 WHERE time_to_ft__m__at_55°__seconds_ > 16.3 AND m_v_ft_s = 2200 |
45,240 | <question>: What is the maximum amount of time a shell travels at 55° when it traveled less than 9.6 seconds at 40°? <context>: CREATE TABLE table_name_47 (time_to_ft__m__at_55 INTEGER, time_to_ft__m__at_40°__seconds_ INTEGER) | SELECT MAX(time_to_ft__m__at_55) AS °__seconds_ FROM table_name_47 WHERE time_to_ft__m__at_40°__seconds_ < 9.6 |
45,241 | <question>: What is the weight of the shell that reached its maximum height at 40° in 12.6 seconds? <context>: CREATE TABLE table_name_6 (shell__lb_ VARCHAR, time_to_ft__m__at_40°__seconds_ VARCHAR) | SELECT shell__lb_ FROM table_name_6 WHERE time_to_ft__m__at_40°__seconds_ = 12.6 |
45,242 | <question>: What is the average maximum height of the shell smaller than 12.5 lb that reached its maximum height at 25° in 10.1 seconds? <context>: CREATE TABLE table_name_24 (max_height__ft_ INTEGER, time_to_ft__m__at_25°__seconds_ VARCHAR, shell__lb_ VARCHAR) | SELECT AVG(max_height__ft_) FROM table_name_24 WHERE time_to_ft__m__at_25°__seconds_ = "10.1" AND shell__lb_ < 12.5 |
45,243 | <question>: What is the highest attendance for the game that was before week 6 on October 22, 1967? <context>: CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR, week VARCHAR) | SELECT MAX(attendance) FROM table_name_74 WHERE date = "october 22, 1967" AND week < 6 |
45,244 | <question>: What is the state having a contestant with a talent of classical piano and a hometown from Lancaster, NY? <context>: CREATE TABLE table_name_63 (state VARCHAR, talent VARCHAR, hometown VARCHAR) | SELECT state FROM table_name_63 WHERE talent = "classical piano" AND hometown = "lancaster, ny" |
45,245 | <question>: Whose talent was ballet en pointe? <context>: CREATE TABLE table_name_56 (name VARCHAR, talent VARCHAR) | SELECT name FROM table_name_56 WHERE talent = "ballet en pointe" |
45,246 | <question>: What is the state represented by the contestant from Mesa, AZ? <context>: CREATE TABLE table_name_43 (state VARCHAR, hometown VARCHAR) | SELECT state FROM table_name_43 WHERE hometown = "mesa, az" |
45,247 | <question>: What is the talent of the contestant from Lexington, SC? <context>: CREATE TABLE table_name_82 (talent VARCHAR, hometown VARCHAR) | SELECT talent FROM table_name_82 WHERE hometown = "lexington, sc" |
45,248 | <question>: What is the age of the contestant from Reno, NV? <context>: CREATE TABLE table_name_55 (age_1 VARCHAR, hometown VARCHAR) | SELECT age_1 FROM table_name_55 WHERE hometown = "reno, nv" |
45,249 | <question>: Which writer wrote episode 18-09 (652)? <context>: CREATE TABLE table_name_29 (writer_s_ VARCHAR, episode VARCHAR) | SELECT writer_s_ FROM table_name_29 WHERE episode = "18-09 (652)" |
45,250 | <question>: What episode was written by jonathan lewis? <context>: CREATE TABLE table_name_97 (episode VARCHAR, writer_s_ VARCHAR) | SELECT episode FROM table_name_97 WHERE writer_s_ = "jonathan lewis" |
45,251 | <question>: What position does Maryland have a player for Round 3? <context>: CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR, round VARCHAR) | SELECT position FROM table_name_81 WHERE school_club_team = "maryland" AND round = 3 |
45,252 | <question>: How many picks are there for defensive back for rounds larger than 11? <context>: CREATE TABLE table_name_23 (pick VARCHAR, position VARCHAR, round VARCHAR) | SELECT COUNT(pick) FROM table_name_23 WHERE position = "defensive back" AND round > 11 |
45,253 | <question>: What is the highest game that has april 21 as the date? <context>: CREATE TABLE table_name_64 (game INTEGER, date VARCHAR) | SELECT MAX(game) FROM table_name_64 WHERE date = "april 21" |
45,254 | <question>: What score has a game less than 4, and april 19 as the date? <context>: CREATE TABLE table_name_2 (score VARCHAR, game VARCHAR, date VARCHAR) | SELECT score FROM table_name_2 WHERE game < 4 AND date = "april 19" |
45,255 | <question>: What opponent has a game less than 6, and april 17 as the date? <context>: CREATE TABLE table_name_4 (opponent VARCHAR, game VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_4 WHERE game < 6 AND date = "april 17" |
45,256 | <question>: What is the home team that played Derby County as the away team? <context>: CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_18 WHERE away_team = "derby county" |
45,257 | <question>: Which home team is ranked no. 7 by tie no.? <context>: CREATE TABLE table_name_87 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_87 WHERE tie_no = "7" |
45,258 | <question>: What is the score for the game in which Manchester United was the home team? <context>: CREATE TABLE table_name_85 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_85 WHERE home_team = "manchester united" |
45,259 | <question>: How many golds does the nation having a rank of 8, fewer than 5 bronzes and more than 1 silver have? <context>: CREATE TABLE table_name_62 (gold VARCHAR, rank VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT COUNT(gold) FROM table_name_62 WHERE bronze < 5 AND silver > 1 AND rank > 8 |
45,260 | <question>: What nation was the film from that was in english and had a Literary tradition of canadian literature? <context>: CREATE TABLE table_name_99 (country VARCHAR, language_s_ VARCHAR, literary_tradition VARCHAR) | SELECT country FROM table_name_99 WHERE language_s_ = "english" AND literary_tradition = "canadian literature" |
45,261 | <question>: What is the literary traidtion for the film in english in 2011? <context>: CREATE TABLE table_name_74 (literary_tradition VARCHAR, language_s_ VARCHAR, year VARCHAR) | SELECT literary_tradition FROM table_name_74 WHERE language_s_ = "english" AND year = 2011 |
45,262 | <question>: What country was the film made in that was made after 2011? <context>: CREATE TABLE table_name_10 (country VARCHAR, year INTEGER) | SELECT country FROM table_name_10 WHERE year > 2011 |
45,263 | <question>: Which team has 48 rebounds? <context>: CREATE TABLE table_name_62 (team VARCHAR, rebounds VARCHAR) | SELECT team FROM table_name_62 WHERE rebounds = 48 |
45,264 | <question>: What's the lowest amount of 12 games and less than 48 rebounds? <context>: CREATE TABLE table_name_1 (rank INTEGER, games VARCHAR, rebounds VARCHAR) | SELECT MIN(rank) FROM table_name_1 WHERE games = 12 AND rebounds < 48 |
45,265 | <question>: How many rebounds does Fedor likholitov have with a rank greater than 8? <context>: CREATE TABLE table_name_21 (rebounds INTEGER, name VARCHAR, rank VARCHAR) | SELECT SUM(rebounds) FROM table_name_21 WHERE name = "fedor likholitov" AND rank > 8 |
45,266 | <question>: Which game has more than 112 rebounds and a rank greater than 3? <context>: CREATE TABLE table_name_76 (games INTEGER, rank VARCHAR, rebounds VARCHAR) | SELECT MAX(games) FROM table_name_76 WHERE rank > 3 AND rebounds = 112 |
45,267 | <question>: What was the score in a place of t5 in the United States? <context>: CREATE TABLE table_name_25 (score VARCHAR, place VARCHAR, nation VARCHAR) | SELECT score FROM table_name_25 WHERE place = "t5" AND nation = "united states" |
45,268 | <question>: What was the score for a match where Sophie Gustafson played? <context>: CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_44 WHERE player = "sophie gustafson" |
45,269 | <question>: with games more than 22 what is the rebound total? <context>: CREATE TABLE table_name_12 (rebounds INTEGER, games INTEGER) | SELECT SUM(rebounds) FROM table_name_12 WHERE games > 22 |
45,270 | <question>: What is the location of the b.c. open? <context>: CREATE TABLE table_name_81 (location VARCHAR, tournament VARCHAR) | SELECT location FROM table_name_81 WHERE tournament = "b.c. open" |
45,271 | <question>: What is the location of the tallahassee open, with a Score of 269 (–19)? <context>: CREATE TABLE table_name_83 (location VARCHAR, score VARCHAR, tournament VARCHAR) | SELECT location FROM table_name_83 WHERE score = "269 (–19)" AND tournament = "tallahassee open" |
45,272 | <question>: What date did Lanny Wadkins (6) win? <context>: CREATE TABLE table_name_12 (date VARCHAR, winner VARCHAR) | SELECT date FROM table_name_12 WHERE winner = "lanny wadkins (6)" |
45,273 | <question>: What is the Location for the buick-goodwrench open? <context>: CREATE TABLE table_name_40 (location VARCHAR, tournament VARCHAR) | SELECT location FROM table_name_40 WHERE tournament = "buick-goodwrench open" |
45,274 | <question>: What is the Netflix episode that has a series episode of 6-02? <context>: CREATE TABLE table_name_98 (netflix VARCHAR, series_ep VARCHAR) | SELECT netflix FROM table_name_98 WHERE series_ep = "6-02" |
45,275 | <question>: Which segment A item that has a Segment D of wigs? <context>: CREATE TABLE table_name_80 (segment_a VARCHAR, segment_d VARCHAR) | SELECT segment_a FROM table_name_80 WHERE segment_d = "wigs" |
45,276 | <question>: Which series episode has a Netflix episode of S03E16? <context>: CREATE TABLE table_name_55 (series_ep VARCHAR, netflix VARCHAR) | SELECT series_ep FROM table_name_55 WHERE netflix = "s03e16" |
45,277 | <question>: Which Netflix episode has an overall episode number under 69 and a Segment D of S Trombone? <context>: CREATE TABLE table_name_92 (netflix VARCHAR, episode VARCHAR, segment_d VARCHAR) | SELECT netflix FROM table_name_92 WHERE episode < 69 AND segment_d = "s trombone" |
45,278 | <question>: Which Species Specific has a Comparative of no, and an Intra-molecular structure of no, and a Link of sourcecode? <context>: CREATE TABLE table_name_29 (species_specific VARCHAR, link VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR) | SELECT species_specific FROM table_name_29 WHERE comparative = "no" AND intra_molecular_structure = "no" AND link = "sourcecode" |
45,279 | <question>: Which Intra-molecular structure has a Comparative of no, and a Name of mitarget? <context>: CREATE TABLE table_name_76 (intra_molecular_structure VARCHAR, comparative VARCHAR, name VARCHAR) | SELECT intra_molecular_structure FROM table_name_76 WHERE comparative = "no" AND name = "mitarget" |
45,280 | <question>: Which Comparative has a Name of pictar? <context>: CREATE TABLE table_name_71 (comparative VARCHAR, name VARCHAR) | SELECT comparative FROM table_name_71 WHERE name = "pictar" |
45,281 | <question>: Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no? <context>: CREATE TABLE table_name_63 (name VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR, link VARCHAR) | SELECT name FROM table_name_63 WHERE intra_molecular_structure = "no" AND link = "webserver" AND comparative = "no" |
45,282 | <question>: Which Comparative has a Link of sourcecode webserver? <context>: CREATE TABLE table_name_43 (comparative VARCHAR, link VARCHAR) | SELECT comparative FROM table_name_43 WHERE link = "sourcecode webserver" |
45,283 | <question>: Which Species Specific has a Link of server/sourcecode? <context>: CREATE TABLE table_name_53 (species_specific VARCHAR, link VARCHAR) | SELECT species_specific FROM table_name_53 WHERE link = "server/sourcecode" |
45,284 | <question>: What is the 1st leg for Instituto? <context>: CREATE TABLE table_name_45 (home__2nd_leg_ VARCHAR) | SELECT 1 AS st_leg FROM table_name_45 WHERE home__2nd_leg_ = "instituto" |
45,285 | <question>: What is the home of aggregate's 3-4? <context>: CREATE TABLE table_name_87 (home__2nd_leg_ VARCHAR, aggregate VARCHAR) | SELECT home__2nd_leg_ FROM table_name_87 WHERE aggregate = "3-4" |
45,286 | <question>: What round did the fight against Sofia Bagherdai go to? <context>: CREATE TABLE table_name_74 (round VARCHAR, opponent VARCHAR) | SELECT round FROM table_name_74 WHERE opponent = "sofia bagherdai" |
45,287 | <question>: What was the method of fight completion for the Mars: Attack 1 event? <context>: CREATE TABLE table_name_4 (method VARCHAR, event VARCHAR) | SELECT method FROM table_name_4 WHERE event = "mars: attack 1" |
45,288 | <question>: what had a score of 70-71-68-72=281? <context>: CREATE TABLE table_name_88 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_88 WHERE score = 70 - 71 - 68 - 72 = 281 |
45,289 | <question>: what had a score like roberto devicenzo <context>: CREATE TABLE table_name_97 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_97 WHERE player = "roberto devicenzo" |
45,290 | <question>: What was the total number who attended during week 11? <context>: CREATE TABLE table_name_98 (attendance VARCHAR, week VARCHAR) | SELECT COUNT(attendance) FROM table_name_98 WHERE week = 11 |
45,291 | <question>: What was the total number of weeks with a result of l 31-21? <context>: CREATE TABLE table_name_33 (week VARCHAR, result VARCHAR) | SELECT COUNT(week) FROM table_name_33 WHERE result = "l 31-21" |
45,292 | <question>: Which 2003 has a 2012 of 1–4? <context>: CREATE TABLE table_name_24 (Id VARCHAR) | SELECT 2003 FROM table_name_24 WHERE 2012 = "1–4" |
45,293 | <question>: Which 2007 has a 2008 of 0 / 4? <context>: CREATE TABLE table_name_90 (Id VARCHAR) | SELECT 2007 FROM table_name_90 WHERE 2008 = "0 / 4" |
45,294 | <question>: Which 2007 has a 2003 of 2r, and a 2004 of 1r? <context>: CREATE TABLE table_name_7 (Id VARCHAR) | SELECT 2007 FROM table_name_7 WHERE 2003 = "2r" AND 2004 = "1r" |
45,295 | <question>: Which 2010 has a 2009 of 0 / 4? <context>: CREATE TABLE table_name_86 (Id VARCHAR) | SELECT 2010 FROM table_name_86 WHERE 2009 = "0 / 4" |
45,296 | <question>: Which 2011 has a 1999 of A, and a 2004 of 2r, and a Career SR of 0 / 10? <context>: CREATE TABLE table_name_96 (career_sr VARCHAR) | SELECT 2011 FROM table_name_96 WHERE 1999 = "a" AND 2004 = "2r" AND career_sr = "0 / 10" |
45,297 | <question>: Which 2005 has a 1999 of 0–0? <context>: CREATE TABLE table_name_37 (Id VARCHAR) | SELECT 2005 FROM table_name_37 WHERE 1999 = "0–0" |
45,298 | <question>: what is the date of week 7 <context>: CREATE TABLE table_name_92 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_92 WHERE week = 7 |
45,299 | <question>: Who was the visitor in the game that led to a 39-20-6 record? <context>: CREATE TABLE table_name_96 (visitor VARCHAR, record VARCHAR) | SELECT visitor FROM table_name_96 WHERE record = "39-20-6" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.