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