Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
20,300
<question>: Who was seat no 6 when seat no 1 and seat no 5 were jacques lachapelle and donald s. dutton <context>: CREATE TABLE table_2231241_1 (seat_no_6 VARCHAR, seat_no_1 VARCHAR, seat_no_5 VARCHAR)
SELECT seat_no_6 FROM table_2231241_1 WHERE seat_no_1 = "Jacques Lachapelle" AND seat_no_5 = "Donald S. Dutton"
20,301
<question>: which election had seat no 1 filled by jacques lachapelle but seat no 5 was filled by g. sanscartier <context>: CREATE TABLE table_2231241_1 (election VARCHAR, seat_no_1 VARCHAR, seat_no_5 VARCHAR)
SELECT election FROM table_2231241_1 WHERE seat_no_1 = "Jacques Lachapelle" AND seat_no_5 = "G. Sanscartier"
20,302
<question>: How many season did the team lost in round 1 with a GP of 64? <context>: CREATE TABLE table_2233872_1 (COUNt VARCHAR, gp VARCHAR, result VARCHAR)
SELECT COUNt AS season FROM table_2233872_1 WHERE gp = 64 AND result = "lost in round 1"
20,303
<question>: What was the season where the team reached a GP of 244? <context>: CREATE TABLE table_2233872_1 (season VARCHAR, gf VARCHAR)
SELECT season FROM table_2233872_1 WHERE gf = 244
20,304
<question>: What was the maximum OTL if L is 28? <context>: CREATE TABLE table_2233872_1 (Otl INTEGER, l VARCHAR)
SELECT MAX(Otl) FROM table_2233872_1 WHERE l = 28
20,305
<question>: What was the minimum L if the GA is 272? <context>: CREATE TABLE table_2233872_1 (l INTEGER, ga VARCHAR)
SELECT MIN(l) FROM table_2233872_1 WHERE ga = 272
20,306
<question>: What is the least amount of total medals won? <context>: CREATE TABLE table_22355_23 (total_min_2_medals_ INTEGER)
SELECT MIN(total_min_2_medals_) FROM table_22355_23
20,307
<question>: Who was the driver for the winning team Lawson Team Impul? <context>: CREATE TABLE table_22379931_2 (winning_driver VARCHAR, winning_team VARCHAR)
SELECT winning_driver FROM table_22379931_2 WHERE winning_team = "Lawson Team Impul"
20,308
<question>: Who has the fastest lap where Benoît Tréluyer got the pole position? <context>: CREATE TABLE table_22379931_2 (fastest_lap VARCHAR, pole_position VARCHAR)
SELECT fastest_lap FROM table_22379931_2 WHERE pole_position = "Benoît Tréluyer"
20,309
<question>: What was the earlier round where Takashi Kogure got the fastest lap? <context>: CREATE TABLE table_22379931_2 (round INTEGER, fastest_lap VARCHAR)
SELECT MIN(round) FROM table_22379931_2 WHERE fastest_lap = "Takashi Kogure"
20,310
<question>: How many drivers drove on Suzuka Circuit where Loïc Duval took pole position? <context>: CREATE TABLE table_22379931_2 (winning_driver VARCHAR, circuit VARCHAR, pole_position VARCHAR)
SELECT COUNT(winning_driver) FROM table_22379931_2 WHERE circuit = "Suzuka circuit" AND pole_position = "Loïc Duval"
20,311
<question>: What date did the West Indies win the match? <context>: CREATE TABLE table_22384475_1 (match_date VARCHAR, winner VARCHAR)
SELECT match_date FROM table_22384475_1 WHERE winner = "West Indies"
20,312
<question>: How many games were won by a margin of 131 runs? <context>: CREATE TABLE table_22384475_1 (team__a_ VARCHAR, margin VARCHAR)
SELECT COUNT(team__a_) FROM table_22384475_1 WHERE margin = "131 runs"
20,313
<question>: Who won the match when the margin was 131 runs? <context>: CREATE TABLE table_22384475_1 (winner VARCHAR, margin VARCHAR)
SELECT winner FROM table_22384475_1 WHERE margin = "131 runs"
20,314
<question>: What was the margin of the match on 19 Jan 2002? <context>: CREATE TABLE table_22384475_1 (margin VARCHAR, match_date VARCHAR)
SELECT margin FROM table_22384475_1 WHERE match_date = "19 Jan 2002"
20,315
<question>: Where is the Bellerive Country Club venue located? <context>: CREATE TABLE table_224616_1 (location_of_venue VARCHAR, venue VARCHAR)
SELECT location_of_venue FROM table_224616_1 WHERE venue = "Bellerive country Club"
20,316
<question>: List all winning scores from 1982. <context>: CREATE TABLE table_224616_1 (winners_score VARCHAR, year VARCHAR)
SELECT winners_score FROM table_224616_1 WHERE year = 1982
20,317
<question>: How many vacators were in the Pennsylvania 33rd district? <context>: CREATE TABLE table_224794_3 (vacator VARCHAR, district VARCHAR)
SELECT COUNT(vacator) FROM table_224794_3 WHERE district = "Pennsylvania 33rd"
20,318
<question>: Who was the successor for the Kentucky 2nd district? <context>: CREATE TABLE table_224794_3 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_224794_3 WHERE district = "Kentucky 2nd"
20,319
<question>: Name the date successor seated for contested election; served until february 14, 1794 <context>: CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)
SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = "Contested election; served until February 14, 1794"
20,320
<question>: Name the date successor seated for delegate seat established <context>: CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)
SELECT date_successor_seated FROM table_224837_4 WHERE reason_for_change = "Delegate seat established"
20,321
<question>: Name the date successor seated is south carolina 3rd <context>: CREATE TABLE table_224837_4 (date_successor_seated VARCHAR, district VARCHAR)
SELECT date_successor_seated FROM table_224837_4 WHERE district = "South Carolina 3rd"
20,322
<question>: What is the number of vacators when the successor was William H. Wells ( F )? <context>: CREATE TABLE table_224839_3 (vacator VARCHAR, successor VARCHAR)
SELECT COUNT(vacator) FROM table_224839_3 WHERE successor = "William H. Wells ( F )"
20,323
<question>: What is the total number of dates of successor formal installation when the vacator was Joshua Clayton ( F )? <context>: CREATE TABLE table_224839_3 (date_of_successors_formal_installation VARCHAR, vacator VARCHAR)
SELECT COUNT(date_of_successors_formal_installation) FROM table_224839_3 WHERE vacator = "Joshua Clayton ( F )"
20,324
<question>: What is the total number of successors when the vacator was William North ( F ) <context>: CREATE TABLE table_224839_3 (successor VARCHAR, vacator VARCHAR)
SELECT COUNT(successor) FROM table_224839_3 WHERE vacator = "William North ( F )"
20,325
<question>: What are all the states (class) when the successor was Joseph Anderson ( DR )? <context>: CREATE TABLE table_224839_3 (state__class_ VARCHAR, successor VARCHAR)
SELECT state__class_ FROM table_224839_3 WHERE successor = "Joseph Anderson ( DR )"
20,326
<question>: What are all the states (class) when the reason for change was resigned November 26, 1798 and the vacator was John Hunter ( DR )? <context>: CREATE TABLE table_224839_3 (state__class_ VARCHAR, reason_for_change VARCHAR, vacator VARCHAR)
SELECT state__class_ FROM table_224839_3 WHERE reason_for_change = "Resigned November 26, 1798" AND vacator = "John Hunter ( DR )"
20,327
<question>: How many vacators have October 22, 1808 as date successor seated? <context>: CREATE TABLE table_225093_4 (vacator VARCHAR, date_successor_seated VARCHAR)
SELECT COUNT(vacator) FROM table_225093_4 WHERE date_successor_seated = "October 22, 1808"
20,328
<question>: What is the date successor seated where Massachusetts 2nd is the district? <context>: CREATE TABLE table_225093_4 (date_successor_seated VARCHAR, district VARCHAR)
SELECT date_successor_seated FROM table_225093_4 WHERE district = "Massachusetts 2nd"
20,329
<question>: Who is the successor when the reason for change is seat declared vacant January 2, 1808 <context>: CREATE TABLE table_225093_4 (successor VARCHAR, reason_for_change VARCHAR)
SELECT successor FROM table_225093_4 WHERE reason_for_change = "Seat declared vacant January 2, 1808"
20,330
<question>: Which district has John Culpepper (f) as the vacator? <context>: CREATE TABLE table_225093_4 (district VARCHAR, vacator VARCHAR)
SELECT district FROM table_225093_4 WHERE vacator = "John Culpepper (F)"
20,331
<question>: What is the reason for change when maryland 6th is the district? <context>: CREATE TABLE table_225100_4 (reason_for_change VARCHAR, district VARCHAR)
SELECT reason_for_change FROM table_225100_4 WHERE district = "Maryland 6th"
20,332
<question>: Who is the vacator when south carolina 4th is the district? <context>: CREATE TABLE table_225100_4 (vacator VARCHAR, district VARCHAR)
SELECT vacator FROM table_225100_4 WHERE district = "South Carolina 4th"
20,333
<question>: Who is the successor when florida territory at-large is the district? <context>: CREATE TABLE table_225100_4 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_225100_4 WHERE district = "Florida Territory At-large"
20,334
<question>: Name the vacator for reason for change died january 12, 1826 <context>: CREATE TABLE table_225102_4 (vacator VARCHAR, reason_for_change VARCHAR)
SELECT vacator FROM table_225102_4 WHERE reason_for_change = "Died January 12, 1826"
20,335
<question>: Name the reason for change pennsylvania 13th <context>: CREATE TABLE table_225102_4 (reason_for_change VARCHAR, district VARCHAR)
SELECT reason_for_change FROM table_225102_4 WHERE district = "Pennsylvania 13th"
20,336
<question>: Name the vacator for died august 13, 1826 <context>: CREATE TABLE table_225102_4 (vacator VARCHAR, reason_for_change VARCHAR)
SELECT vacator FROM table_225102_4 WHERE reason_for_change = "Died August 13, 1826"
20,337
<question>: Name the successor for elected january 26, 1837 <context>: CREATE TABLE table_225200_3 (successor VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT COUNT(successor) FROM table_225200_3 WHERE date_of_successors_formal_installation = "Elected January 26, 1837"
20,338
<question>: Name the successor for north carolina 13th <context>: CREATE TABLE table_225204_4 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_225204_4 WHERE district = "North Carolina 13th"
20,339
<question>: Name the date successor seated for pennsylvania 17th <context>: CREATE TABLE table_225204_4 (date_successor_seated VARCHAR, district VARCHAR)
SELECT date_successor_seated FROM table_225204_4 WHERE district = "Pennsylvania 17th"
20,340
<question>: who are the writer of the series episode number 170? <context>: CREATE TABLE table_22580855_1 (written_by VARCHAR, series_no VARCHAR)
SELECT written_by FROM table_22580855_1 WHERE series_no = 170
20,341
<question>: which is the maximun serie episode number when the millions of North American spectators is 3.14? <context>: CREATE TABLE table_22580855_1 (series_no INTEGER, us_viewers__millions_ VARCHAR)
SELECT MAX(series_no) FROM table_22580855_1 WHERE us_viewers__millions_ = "3.14"
20,342
<question>: How many writers write the episode whose director is Jonathan Herron? <context>: CREATE TABLE table_22580855_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT COUNT(written_by) FROM table_22580855_1 WHERE directed_by = "Jonathan Herron"
20,343
<question>: which is the biggest production code? <context>: CREATE TABLE table_22580855_1 (production_code INTEGER)
SELECT MAX(production_code) FROM table_22580855_1
20,344
<question>: who are the writers when the production code is 8011? <context>: CREATE TABLE table_22580855_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_22580855_1 WHERE production_code = 8011
20,345
<question>: what is the name of the episode whose writer is Timothy J. Lea and the director is Norberto Barba? <context>: CREATE TABLE table_22580855_1 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT title FROM table_22580855_1 WHERE written_by = "Timothy J. Lea" AND directed_by = "Norberto Barba"
20,346
<question>: What is the least year when men's singles is Raju Rai? <context>: CREATE TABLE table_22587192_1 (year INTEGER, mens_singles VARCHAR)
SELECT MIN(year) FROM table_22587192_1 WHERE mens_singles = "Raju Rai"
20,347
<question>: How many outcomes are listed when the final opponent was Johan Kriek? <context>: CREATE TABLE table_22597626_5 (outcome VARCHAR, opponent_in_the_final VARCHAR)
SELECT COUNT(outcome) FROM table_22597626_5 WHERE opponent_in_the_final = "Johan Kriek"
20,348
<question>: How many miles were driven in the race where the winner finished in 2:47:11? <context>: CREATE TABLE table_22648285_1 (miles__km_ VARCHAR, race_time VARCHAR)
SELECT miles__km_ FROM table_22648285_1 WHERE race_time = "2:47:11"
20,349
<question>: What date was the race in 1968 run on? <context>: CREATE TABLE table_22648285_1 (date VARCHAR, year VARCHAR)
SELECT date FROM table_22648285_1 WHERE year = 1968
20,350
<question>: What year had a race with 301* laps? <context>: CREATE TABLE table_22648285_1 (year VARCHAR, laps VARCHAR)
SELECT year FROM table_22648285_1 WHERE laps = "301*"
20,351
<question>: How many races did Cale Yarborough win at an average speed of 88.924 mph? <context>: CREATE TABLE table_22648285_1 (race_time VARCHAR, driver VARCHAR, average_speed__mph_ VARCHAR)
SELECT COUNT(race_time) FROM table_22648285_1 WHERE driver = "Cale Yarborough" AND average_speed__mph_ = "88.924"
20,352
<question>: Name the most pos for west bromwich albion club <context>: CREATE TABLE table_226619_12 (pos INTEGER, club VARCHAR)
SELECT MAX(pos) FROM table_226619_12 WHERE club = "West Bromwich Albion"
20,353
<question>: Name the points for 212 respect toward opponents <context>: CREATE TABLE table_226619_12 (points VARCHAR, respect_toward_opponents VARCHAR)
SELECT points FROM table_226619_12 WHERE respect_toward_opponents = 212
20,354
<question>: Name the pos for west ham united <context>: CREATE TABLE table_226619_12 (pos INTEGER, club VARCHAR)
SELECT MIN(pos) FROM table_226619_12 WHERE club = "West Ham United"
20,355
<question>: Name the date of birth for 27/07/86 <context>: CREATE TABLE table_22705586_1 (name VARCHAR, date_of_birth VARCHAR)
SELECT name FROM table_22705586_1 WHERE date_of_birth = "27/07/86"
20,356
<question>: Name the least number <context>: CREATE TABLE table_22705586_1 (number INTEGER)
SELECT MIN(number) FROM table_22705586_1
20,357
<question>: Name the nationality for francesco guglielmi <context>: CREATE TABLE table_22705586_1 (nationality VARCHAR, name VARCHAR)
SELECT nationality FROM table_22705586_1 WHERE name = "Francesco Guglielmi"
20,358
<question>: Name the height for date of birth being 17/08/75 <context>: CREATE TABLE table_22705586_1 (height__m_ INTEGER, date_of_birth VARCHAR)
SELECT MIN(height__m_) FROM table_22705586_1 WHERE date_of_birth = "17/08/75"
20,359
<question>: How many points did player 7 score in the challenge cup? <context>: CREATE TABLE table_22683369_8 (challenge_cup VARCHAR, p VARCHAR)
SELECT COUNT(challenge_cup) FROM table_22683369_8 WHERE p = 7
20,360
<question>: What is Kris doolan's league number? <context>: CREATE TABLE table_22683369_8 (league VARCHAR, player VARCHAR)
SELECT COUNT(league) FROM table_22683369_8 WHERE player = "Kris Doolan"
20,361
<question>: What is bryan hodge's player number <context>: CREATE TABLE table_22683369_8 (p VARCHAR, player VARCHAR)
SELECT COUNT(p) FROM table_22683369_8 WHERE player = "Bryan Hodge"
20,362
<question>: What was the lowest number of points scored in the league cup? <context>: CREATE TABLE table_22683369_8 (league INTEGER)
SELECT MIN(league) AS Cup FROM table_22683369_8
20,363
<question>: When did the Cowboys score 13 points in 1966? <context>: CREATE TABLE table_22801165_1 (date VARCHAR, cowboys_points VARCHAR)
SELECT date FROM table_22801165_1 WHERE cowboys_points = 13
20,364
<question>: What was the Cowboys' record for Nov. 5, 1966? <context>: CREATE TABLE table_22801165_1 (record VARCHAR, date VARCHAR)
SELECT record FROM table_22801165_1 WHERE date = "Nov. 5"
20,365
<question>: Who won the regular season when Maryland won the tournament? <context>: CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, tournament_winner VARCHAR)
SELECT regular_season_winner FROM table_22779004_1 WHERE tournament_winner = "Maryland"
20,366
<question>: Who won the tournament when Idaho State won the regular season? <context>: CREATE TABLE table_22779004_1 (conference VARCHAR, regular_season_winner VARCHAR)
SELECT conference AS Tournament FROM table_22779004_1 WHERE regular_season_winner = "Idaho State"
20,367
<question>: Who won the regular season when Missouri Valley Conference took place? <context>: CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, conference VARCHAR)
SELECT regular_season_winner FROM table_22779004_1 WHERE conference = "Missouri Valley conference"
20,368
<question>: What was the conference when Arizona State won the regular season? <context>: CREATE TABLE table_22779004_1 (conference VARCHAR, regular_season_winner VARCHAR)
SELECT conference FROM table_22779004_1 WHERE regular_season_winner = "Arizona State"
20,369
<question>: Who is the tournament winner in the Atlantic Coast Conference? <context>: CREATE TABLE table_22779004_1 (tournament_winner VARCHAR, conference VARCHAR)
SELECT tournament_winner FROM table_22779004_1 WHERE conference = "Atlantic Coast conference"
20,370
<question>: Which county had a 3.6% unemployment rate? <context>: CREATE TABLE table_22815568_2 (county VARCHAR, unemployment_rate VARCHAR)
SELECT county FROM table_22815568_2 WHERE unemployment_rate = "3.6%"
20,371
<question>: What is the status of the county that has a 17.3% poverty rate? <context>: CREATE TABLE table_22815568_2 (status VARCHAR, poverty_rate VARCHAR)
SELECT status FROM table_22815568_2 WHERE poverty_rate = "17.3%"
20,372
<question>: What is the market income per capita of the county with the 9.4% poverty rate? <context>: CREATE TABLE table_22815568_2 (market_income_per_capita VARCHAR, poverty_rate VARCHAR)
SELECT market_income_per_capita FROM table_22815568_2 WHERE poverty_rate = "9.4%"
20,373
<question>: How many status' are there with a population of 90565? <context>: CREATE TABLE table_22815568_2 (status VARCHAR, population VARCHAR)
SELECT COUNT(status) FROM table_22815568_2 WHERE population = 90565
20,374
<question>: What is the status of the county with per capita market income of $24,326? <context>: CREATE TABLE table_22815568_2 (status VARCHAR, market_income_per_capita VARCHAR)
SELECT status FROM table_22815568_2 WHERE market_income_per_capita = "$24,326"
20,375
<question>: What is the unemployment rate for the county with a market income per capita of $20,958? <context>: CREATE TABLE table_22815568_2 (unemployment_rate VARCHAR, market_income_per_capita VARCHAR)
SELECT COUNT(unemployment_rate) FROM table_22815568_2 WHERE market_income_per_capita = "$20,958"
20,376
<question>: List all who wrote for production code 1ark07. <context>: CREATE TABLE table_22835602_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_22835602_1 WHERE production_code = "1ARK07"
20,377
<question>: How many directors were there for the production code 1ark08? <context>: CREATE TABLE table_22835602_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT COUNT(directed_by) FROM table_22835602_1 WHERE production_code = "1ARK08"
20,378
<question>: List all directors from episodes with viewership of 1.945 million. <context>: CREATE TABLE table_22835602_1 (directed_by VARCHAR, viewers__in_millions_ VARCHAR)
SELECT directed_by FROM table_22835602_1 WHERE viewers__in_millions_ = "1.945"
20,379
<question>: What is the original air date for production code 1ark79? <context>: CREATE TABLE table_22835602_1 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_22835602_1 WHERE production_code = "1ARK79"
20,380
<question>: How many rounds were there in the 2006 davis cup europe/africa group I? <context>: CREATE TABLE table_22853654_10 (round VARCHAR, edition VARCHAR)
SELECT COUNT(round) FROM table_22853654_10 WHERE edition = "2006 Davis Cup Europe/Africa Group I"
20,381
<question>: Where does the team play May 3? <context>: CREATE TABLE table_22879262_13 (team VARCHAR, date VARCHAR)
SELECT team FROM table_22879262_13 WHERE date = "May 3"
20,382
<question>: What team was the game on February 27 played against? <context>: CREATE TABLE table_22879323_8 (team VARCHAR, date VARCHAR)
SELECT team FROM table_22879323_8 WHERE date = "February 27"
20,383
<question>: What was the score of the game in which Brook Lopez (8) did the high rebounds? <context>: CREATE TABLE table_22879323_8 (score VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_22879323_8 WHERE high_rebounds = "Brook Lopez (8)"
20,384
<question>: Who did the high assists in the game played on February 9? <context>: CREATE TABLE table_22879323_8 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_22879323_8 WHERE date = "February 9"
20,385
<question>: What was the record in the game against Memphis? <context>: CREATE TABLE table_22879323_8 (record VARCHAR, team VARCHAR)
SELECT record FROM table_22879323_8 WHERE team = "Memphis"
20,386
<question>: What's the highest game number for a game in which Kris Humphries (8) did the high rebounds? <context>: CREATE TABLE table_22879323_8 (game INTEGER, high_rebounds VARCHAR)
SELECT MAX(game) FROM table_22879323_8 WHERE high_rebounds = "Kris Humphries (8)"
20,387
<question>: When 0-1 is the series who has the highest amount of assists? <context>: CREATE TABLE table_22883210_11 (high_assists VARCHAR, series VARCHAR)
SELECT high_assists FROM table_22883210_11 WHERE series = "0-1"
20,388
<question>: When 5 is the game who has the highest amount of points? <context>: CREATE TABLE table_22883210_11 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_22883210_11 WHERE game = 5
20,389
<question>: When 1-1 is the series who is the team? <context>: CREATE TABLE table_22883210_11 (team VARCHAR, series VARCHAR)
SELECT team FROM table_22883210_11 WHERE series = "1-1"
20,390
<question>: When george hill (29) has the highest amount of points what is the date? <context>: CREATE TABLE table_22883210_11 (date VARCHAR, high_points VARCHAR)
SELECT date FROM table_22883210_11 WHERE high_points = "George Hill (29)"
20,391
<question>: Name the audition city for hyatt regency chicago <context>: CREATE TABLE table_22897967_1 (audition_city VARCHAR, callback_venue VARCHAR)
SELECT audition_city FROM table_22897967_1 WHERE callback_venue = "Hyatt Regency Chicago"
20,392
<question>: Name the callback date for amway arena <context>: CREATE TABLE table_22897967_1 (callback_date VARCHAR, audition_venue VARCHAR)
SELECT callback_date FROM table_22897967_1 WHERE audition_venue = "Amway Arena"
20,393
<question>: Name the guest judge for first audition date being july 9, 2009 <context>: CREATE TABLE table_22897967_1 (guest_judge VARCHAR, first_audition_date VARCHAR)
SELECT COUNT(guest_judge) FROM table_22897967_1 WHERE first_audition_date = "July 9, 2009"
20,394
<question>: Name the total number of golden tickets being rosen shingle creek resort <context>: CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, callback_venue VARCHAR)
SELECT COUNT(golden_tickets) FROM table_22897967_1 WHERE callback_venue = "Rosen Shingle Creek Resort"
20,395
<question>: Name the golden ticket for invesco field <context>: CREATE TABLE table_22897967_1 (golden_tickets VARCHAR, audition_venue VARCHAR)
SELECT golden_tickets FROM table_22897967_1 WHERE audition_venue = "Invesco Field"
20,396
<question>: Name the k. r. narayanan values for pondicherry <context>: CREATE TABLE table_22897453_1 (kr_narayanan__values_ VARCHAR, states VARCHAR)
SELECT kr_narayanan__values_ FROM table_22897453_1 WHERE states = "Pondicherry"
20,397
<question>: Name the kr narayanan votes for values being 936 for kr <context>: CREATE TABLE table_22897453_1 (kr_narayanan__votes_ VARCHAR, kr_narayanan__values_ VARCHAR)
SELECT kr_narayanan__votes_ FROM table_22897453_1 WHERE kr_narayanan__values_ = 936
20,398
<question>: Name the most kr votes for value of each vote for 208 <context>: CREATE TABLE table_22897453_1 (kr_narayanan__votes_ INTEGER, value_of_each_vote VARCHAR)
SELECT MAX(kr_narayanan__votes_) FROM table_22897453_1 WHERE value_of_each_vote = 208
20,399
<question>: Name the number of tn seshan values for kr values is 478608 <context>: CREATE TABLE table_22897453_1 (tn_seshan__values_ VARCHAR, kr_narayanan__values_ VARCHAR)
SELECT COUNT(tn_seshan__values_) FROM table_22897453_1 WHERE kr_narayanan__values_ = 478608