Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
40,400
<question>: What is the name of the young rider classification when Paolo Tiralongo won? <context>: CREATE TABLE table_28538368_2 (young_rider_classification VARCHAR, winner VARCHAR)
SELECT young_rider_classification FROM table_28538368_2 WHERE winner = "Paolo Tiralongo"
40,401
<question>: What's the version in the 1.0.4 release? <context>: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT version FROM table_28540539_2 WHERE release = "1.0.4"
40,402
<question>: What's the release date in the 1.1.10 release? <context>: CREATE TABLE table_28540539_2 (release VARCHAR)
SELECT release AS date FROM table_28540539_2 WHERE release = "1.1.10"
40,403
<question>: What's the version of the 1.0.12 release? <context>: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT version FROM table_28540539_2 WHERE release = "1.0.12"
40,404
<question>: What's the number of the 1.0.9 release version? <context>: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT COUNT(version) FROM table_28540539_2 WHERE release = "1.0.9"
40,405
<question>: What's the number of the 1.0.12 release version? <context>: CREATE TABLE table_28540539_2 (version VARCHAR, release VARCHAR)
SELECT COUNT(version) FROM table_28540539_2 WHERE release = "1.0.12"
40,406
<question>: For how many series were there 11.84 million watchers? <context>: CREATE TABLE table_28561455_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR)
SELECT no_in_series FROM table_28561455_1 WHERE us_viewers__million_ = "11.84"
40,407
<question>: What's the smallest season number? <context>: CREATE TABLE table_28561455_1 (no_in_season INTEGER)
SELECT MIN(no_in_season) FROM table_28561455_1
40,408
<question>: Who wrote the episodes that were directed by Peter O'Fallon? <context>: CREATE TABLE table_28561455_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_28561455_1 WHERE directed_by = "Peter O'Fallon"
40,409
<question>: What was the latest episode number that Meredith Averill wrote? <context>: CREATE TABLE table_28561455_1 (no_in_series INTEGER, written_by VARCHAR)
SELECT MAX(no_in_series) FROM table_28561455_1 WHERE written_by = "Meredith Averill"
40,410
<question>: What is the latest episode number that was directed by Tom Dicillo? <context>: CREATE TABLE table_28561455_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_series) FROM table_28561455_1 WHERE directed_by = "Tom DiCillo"
40,411
<question>: How many years did Germany participate, when the team from Italy was Naples LL Naples and the team from England was London Area Youth London? <context>: CREATE TABLE table_28562675_3 (germany VARCHAR, italy VARCHAR, england VARCHAR)
SELECT COUNT(germany) FROM table_28562675_3 WHERE italy = "Naples LL Naples" AND england = "London Area Youth London"
40,412
<question>: What was the team from Austria when the Netherlands sent Brunssum/Schinnen LL Brunssum and Belgium sent Shape and Waterloo LL Brussels? <context>: CREATE TABLE table_28562675_3 (austria VARCHAR, netherlands VARCHAR, belgium VARCHAR)
SELECT austria FROM table_28562675_3 WHERE netherlands = "Brunssum/Schinnen LL Brunssum" AND belgium = "SHAPE and Waterloo LL Brussels"
40,413
<question>: What is the maximum number of matches in a game? <context>: CREATE TABLE table_28547332_4 (matches INTEGER)
SELECT MAX(matches) FROM table_28547332_4
40,414
<question>: What is the highest score in those games where the average is 9.88? <context>: CREATE TABLE table_28547332_4 (highest_score INTEGER, average VARCHAR)
SELECT MIN(highest_score) FROM table_28547332_4 WHERE average = "9.88"
40,415
<question>: What digital channel corresponds to virtual channel 23.2? <context>: CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)
SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "23.2"
40,416
<question>: What digital channel corresponds to virtual channel 5.2? <context>: CREATE TABLE table_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)
SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "5.2"
40,417
<question>: What network airs on virtual channel 23.1? <context>: CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR)
SELECT network FROM table_2857352_3 WHERE virtual_channel = "23.1"
40,418
<question>: How many networks run on virtual channel 23.4? <context>: CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR)
SELECT COUNT(network) FROM table_2857352_3 WHERE virtual_channel = "23.4"
40,419
<question>: What city licensed the broadcast on virtual channel 8.2? <context>: CREATE TABLE table_2857352_3 (city_of_license VARCHAR, virtual_channel VARCHAR)
SELECT city_of_license FROM table_2857352_3 WHERE virtual_channel = "8.2"
40,420
<question>: What was the title of the episode with production code 2J5515? <context>: CREATE TABLE table_28582091_2 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_28582091_2 WHERE production_code = "2J5515"
40,421
<question>: Name the chassis for ludwig fischer <context>: CREATE TABLE table_28578594_1 (chassis VARCHAR, driver VARCHAR)
SELECT chassis FROM table_28578594_1 WHERE driver = "Ludwig Fischer"
40,422
<question>: Name the entrant for bruno sterzi <context>: CREATE TABLE table_28578594_1 (entrant VARCHAR, driver VARCHAR)
SELECT entrant FROM table_28578594_1 WHERE driver = "Bruno Sterzi"
40,423
<question>: Name the least number for nello pagani <context>: CREATE TABLE table_28578594_1 (no INTEGER, driver VARCHAR)
SELECT MIN(no) FROM table_28578594_1 WHERE driver = "Nello Pagani"
40,424
<question>: What is the largest number of consecutive starts for jason gildon? <context>: CREATE TABLE table_28606933_7 (consecutive_starts INTEGER, player VARCHAR)
SELECT MAX(consecutive_starts) FROM table_28606933_7 WHERE player = "Jason Gildon"
40,425
<question>: What team(s) had 120 consecutive starts? <context>: CREATE TABLE table_28606933_7 (teams VARCHAR, consecutive_starts VARCHAR)
SELECT teams FROM table_28606933_7 WHERE consecutive_starts = 120
40,426
<question>: What period(s) featured a left inside linebacker? <context>: CREATE TABLE table_28606933_7 (period VARCHAR, position VARCHAR)
SELECT period FROM table_28606933_7 WHERE position = "Left inside linebacker"
40,427
<question>: How many consecutive starts for the linebacker who played from 9/21/1975 – 12/16/1984? <context>: CREATE TABLE table_28606933_7 (total INTEGER, period VARCHAR)
SELECT MAX(total) FROM table_28606933_7 WHERE period = "9/21/1975 – 12/16/1984"
40,428
<question>: What is the title of the episode written by Frank Military? <context>: CREATE TABLE table_28611413_2 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_28611413_2 WHERE written_by = "Frank Military"
40,429
<question>: How many seasons had 16.15 million viewers? <context>: CREATE TABLE table_28611413_2 (no_in_series VARCHAR, viewers__millions_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_28611413_2 WHERE viewers__millions_ = "16.15"
40,430
<question>: What is air date of the episode directed by John P. Kousakis? <context>: CREATE TABLE table_28611413_2 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_28611413_2 WHERE directed_by = "John P. Kousakis"
40,431
<question>: Who was the player when totals were 105-161? <context>: CREATE TABLE table_28628309_6 (player VARCHAR, totals VARCHAR)
SELECT player FROM table_28628309_6 WHERE totals = "105-161"
40,432
<question>: How many items appear in the average column when the totals were 105-161? <context>: CREATE TABLE table_28628309_6 (average VARCHAR, totals VARCHAR)
SELECT COUNT(average) FROM table_28628309_6 WHERE totals = "105-161"
40,433
<question>: What were the totals when the average is 6.25? <context>: CREATE TABLE table_28628309_6 (totals VARCHAR, average VARCHAR)
SELECT totals FROM table_28628309_6 WHERE average = "6.25"
40,434
<question>: Who was the team when the category is field goal percentage? <context>: CREATE TABLE table_28628309_6 (team VARCHAR, category VARCHAR)
SELECT team FROM table_28628309_6 WHERE category = "Field goal percentage"
40,435
<question>: Name the election for the percent of popular vote being 4.48% <context>: CREATE TABLE table_286271_1 (election VARCHAR, _percentage_of_popular_vote VARCHAR)
SELECT election FROM table_286271_1 WHERE _percentage_of_popular_vote = "4.48%"
40,436
<question>: How many times was taiwan 3rd runner-up? <context>: CREATE TABLE table_28634206_1 (country VARCHAR)
SELECT MAX(3 AS rd_runner_up) FROM table_28634206_1 WHERE country = "Taiwan"
40,437
<question>: How many miss universes did south africa have? <context>: CREATE TABLE table_28634206_1 (miss_universe VARCHAR, country VARCHAR)
SELECT COUNT(miss_universe) FROM table_28634206_1 WHERE country = "South Africa"
40,438
<question>: How many placements in total does russia have? <context>: CREATE TABLE table_28634206_1 (total INTEGER, country VARCHAR)
SELECT MAX(total) FROM table_28634206_1 WHERE country = "Russia"
40,439
<question>: Which country has had 6 miss universe's? <context>: CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)
SELECT country FROM table_28634206_1 WHERE miss_universe = "6"
40,440
<question>: Which country has had 8 miss universes? <context>: CREATE TABLE table_28634206_1 (country VARCHAR, miss_universe VARCHAR)
SELECT country FROM table_28634206_1 WHERE miss_universe = "8"
40,441
<question>: What is the minimum number of points for teams averaging 1.412? <context>: CREATE TABLE table_2865020_5 (points INTEGER, average VARCHAR)
SELECT MIN(points) FROM table_2865020_5 WHERE average = "1.412"
40,442
<question>: What 2003-2004 values are associated with an average of 1.377? <context>: CREATE TABLE table_2865020_5 (average VARCHAR)
SELECT 2003 AS _04 FROM table_2865020_5 WHERE average = "1.377"
40,443
<question>: How many millions of viewers are listed where the writer is Matthew Okumura? <context>: CREATE TABLE table_2866503_1 (us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__million_ FROM table_2866503_1 WHERE written_by = "Matthew Okumura"
40,444
<question>: What is the U.S. air date when the U.S. viewers are 7.5 million? <context>: CREATE TABLE table_2866503_1 (us_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT us_air_date FROM table_2866503_1 WHERE us_viewers__million_ = "7.5"
40,445
<question>: How many u.s. viewers (million) have 6 as the #? <context>: CREATE TABLE table_2866456_1 (us_viewers__million_ VARCHAR, _number VARCHAR)
SELECT us_viewers__million_ FROM table_2866456_1 WHERE _number = 6
40,446
<question>: Who is the directed by when 2t6404 is the production code? <context>: CREATE TABLE table_2866456_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT directed_by FROM table_2866456_1 WHERE production_code = "2T6404"
40,447
<question>: what is the number of the episode in the season that had 5.60 millions of north american spectors? <context>: CREATE TABLE table_2866509_1 (no VARCHAR, us_viewers__million_ VARCHAR)
SELECT no FROM table_2866509_1 WHERE us_viewers__million_ = "5.60"
40,448
<question>: who are the writers of the episode whose production code is 176206? <context>: CREATE TABLE table_2866509_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_2866509_1 WHERE production_code = 176206
40,449
<question>: What stadium does FK Rudar play in? <context>: CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)
SELECT stadium FROM table_28668784_1 WHERE home_team = "FK Rudar"
40,450
<question>: What town holds Stadion Zlatica? <context>: CREATE TABLE table_28668784_1 (city___town VARCHAR, stadium VARCHAR)
SELECT city___town FROM table_28668784_1 WHERE stadium = "Stadion Zlatica"
40,451
<question>: What stadium does FK Jedinstvo play in? <context>: CREATE TABLE table_28668784_1 (stadium VARCHAR, home_team VARCHAR)
SELECT stadium FROM table_28668784_1 WHERE home_team = "FK Jedinstvo"
40,452
<question>: What is listed in tor floysvik when karianne gulliksen is 6? <context>: CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)
SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE karianne_gulliksen = 6
40,453
<question>: How many music entries are there when tor floysvik is 3? <context>: CREATE TABLE table_28677723_10 (music VARCHAR, tor_fløysvik VARCHAR)
SELECT COUNT(music) FROM table_28677723_10 WHERE tor_fløysvik = 3
40,454
<question>: What is listed under chister tornell when karianne gulliksen is 7? <context>: CREATE TABLE table_28677723_10 (christer_tornell INTEGER, karianne_gulliksen VARCHAR)
SELECT MIN(christer_tornell) FROM table_28677723_10 WHERE karianne_gulliksen = 7
40,455
<question>: What is listed under tor floysvik when couple is maria & asmund? <context>: CREATE TABLE table_28677723_10 (tor_fløysvik INTEGER, couple VARCHAR)
SELECT MIN(tor_fløysvik) FROM table_28677723_10 WHERE couple = "Maria & Asmund"
40,456
<question>: What are Unit 2's dates of commissioning? <context>: CREATE TABLE table_28672269_1 (date_of_commissioning VARCHAR, unit_number VARCHAR)
SELECT COUNT(date_of_commissioning) FROM table_28672269_1 WHERE unit_number = 2
40,457
<question>: What is the boiler provider for Bhel, India's TG Set provider? <context>: CREATE TABLE table_28672269_1 (boiler_provider VARCHAR, tg_set_provider VARCHAR)
SELECT boiler_provider FROM table_28672269_1 WHERE tg_set_provider = "BHEL, India"
40,458
<question>: Name the trine dehli cleve for english waltz <context>: CREATE TABLE table_28677723_14 (trine_dehli_cleve INTEGER, style VARCHAR)
SELECT MIN(trine_dehli_cleve) FROM table_28677723_14 WHERE style = "English Waltz"
40,459
<question>: Name the style for 39 <context>: CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)
SELECT style FROM table_28677723_14 WHERE total = 39
40,460
<question>: Name the style for 27 <context>: CREATE TABLE table_28677723_14 (style VARCHAR, total VARCHAR)
SELECT style FROM table_28677723_14 WHERE total = 27
40,461
<question>: Name the most for fløysvik for 8 <context>: CREATE TABLE table_28677723_14 (tor_fløysvik INTEGER, karianne_gulliksen VARCHAR)
SELECT MAX(tor_fløysvik) FROM table_28677723_14 WHERE karianne_gulliksen = 8
40,462
<question>: how many for floysvik and christer tornell is 7? <context>: CREATE TABLE table_28677723_11 (tor_fløysvik VARCHAR, christer_tornell VARCHAR)
SELECT COUNT(tor_fløysvik) FROM table_28677723_11 WHERE christer_tornell = 7
40,463
<question>: how many for christer tornell where the total is 30? <context>: CREATE TABLE table_28677723_11 (christer_tornell VARCHAR, total VARCHAR)
SELECT COUNT(christer_tornell) FROM table_28677723_11 WHERE total = 30
40,464
<question>: What is the couple that received a total score of 38? <context>: CREATE TABLE table_28677723_16 (couple VARCHAR, total VARCHAR)
SELECT couple FROM table_28677723_16 WHERE total = 38
40,465
<question>: What is the greatest total score received by aylar & egor when karianne Gulliksen gave an 8? <context>: CREATE TABLE table_28677723_16 (total INTEGER, couple VARCHAR, karianne_gulliksen VARCHAR)
SELECT MAX(total) FROM table_28677723_16 WHERE couple = "Aylar & Egor" AND karianne_gulliksen = 8
40,466
<question>: What is the largest number for trine dehli cleve? <context>: CREATE TABLE table_28677723_5 (trine_dehli_cleve INTEGER)
SELECT MAX(trine_dehli_cleve) FROM table_28677723_5
40,467
<question>: What is the largest number for karianne gulliksen? <context>: CREATE TABLE table_28677723_5 (karianne_gulliksen INTEGER)
SELECT MAX(karianne_gulliksen) FROM table_28677723_5
40,468
<question>: How many styles had a total score of exactly 33? <context>: CREATE TABLE table_28677723_9 (style VARCHAR, total VARCHAR)
SELECT COUNT(style) FROM table_28677723_9 WHERE total = 33
40,469
<question>: Which style led to a score given by Tor Floysvik of 8? <context>: CREATE TABLE table_28677723_9 (style VARCHAR, tor_fløysvik VARCHAR)
SELECT style FROM table_28677723_9 WHERE tor_fløysvik = 8
40,470
<question>: What is the smallest total score for the Pasodoble style? <context>: CREATE TABLE table_28677723_9 (total INTEGER, style VARCHAR)
SELECT MIN(total) FROM table_28677723_9 WHERE style = "Pasodoble"
40,471
<question>: What is the title of the episode watched by 0.88 million U.S. viewers? <context>: CREATE TABLE table_28680377_2 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT title FROM table_28680377_2 WHERE us_viewers__million_ = "0.88"
40,472
<question>: What is the original air date of the episode that was watched by 0.88 million U.S. viewers? <context>: CREATE TABLE table_28680377_2 (original_air_date VARCHAR, us_viewers__million_ VARCHAR)
SELECT original_air_date FROM table_28680377_2 WHERE us_viewers__million_ = "0.88"
40,473
<question>: How may players have a passing yard score of 208? <context>: CREATE TABLE table_28697228_4 (player VARCHAR, passing_yards VARCHAR)
SELECT COUNT(player) FROM table_28697228_4 WHERE passing_yards = 208
40,474
<question>: What is the name of the player with total offense of 454? <context>: CREATE TABLE table_28697228_4 (player VARCHAR, total_offense VARCHAR)
SELECT player FROM table_28697228_4 WHERE total_offense = 454
40,475
<question>: What is the number of rushing yards when the opponentis Indiana and the player is Denard Robinson? <context>: CREATE TABLE table_28697228_4 (rushing_yards INTEGER, opponent VARCHAR, player VARCHAR)
SELECT MAX(rushing_yards) FROM table_28697228_4 WHERE opponent = "Indiana" AND player = "Denard Robinson"
40,476
<question>: What is the number of total offense when the opponentis Penn State? <context>: CREATE TABLE table_28697228_4 (total_offense INTEGER, opponent VARCHAR)
SELECT MAX(total_offense) FROM table_28697228_4 WHERE opponent = "Penn State"
40,477
<question>: How many rushing yards are listed when the passing yards are 244? <context>: CREATE TABLE table_28697228_4 (rushing_yards VARCHAR, passing_yards VARCHAR)
SELECT rushing_yards FROM table_28697228_4 WHERE passing_yards = 244
40,478
<question>: What is the volume when the resrvoir is Tanes? <context>: CREATE TABLE table_28702208_1 (volume__hm³_ VARCHAR, reservoir VARCHAR)
SELECT volume__hm³_ FROM table_28702208_1 WHERE reservoir = "Tanes"
40,479
<question>: are there bi-tone is there's no olive drab and the caliber is 9×19mm parabellum and model is xdm 5.25 competition <context>: CREATE TABLE table_2869843_1 (bi_tone VARCHAR, model VARCHAR, olive_drab VARCHAR, caliber VARCHAR)
SELECT bi_tone FROM table_2869843_1 WHERE olive_drab = "No" AND caliber = "9×19mm Parabellum" AND model = "XDM 5.25 Competition"
40,480
<question>: What is the family of the constellation that has lyncis /ˈlɪnsɨs/ as genitive? <context>: CREATE TABLE table_287159_1 (family VARCHAR, genitive VARCHAR)
SELECT family FROM table_287159_1 WHERE genitive = "Lyncis /ˈlɪnsɨs/"
40,481
<question>: What is the origin of the constellation that can be abbreviated to tele? <context>: CREATE TABLE table_287159_1 (origin VARCHAR, other_abbreviation VARCHAR)
SELECT origin FROM table_287159_1 WHERE other_abbreviation = "Tele"
40,482
<question>: What is the other abbreviation of the constellation that has β trianguli as its brightest star? <context>: CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, brightest_star VARCHAR)
SELECT other_abbreviation FROM table_287159_1 WHERE brightest_star = "β Trianguli"
40,483
<question>: What is the brightest star of the constellation that means archer? <context>: CREATE TABLE table_287159_1 (brightest_star VARCHAR, meaning VARCHAR)
SELECT brightest_star FROM table_287159_1 WHERE meaning = "archer"
40,484
<question>: What is the other abbreviation of the constellation that has hydrae /ˈhaɪdriː/ as genitive? <context>: CREATE TABLE table_287159_1 (other_abbreviation VARCHAR, genitive VARCHAR)
SELECT other_abbreviation FROM table_287159_1 WHERE genitive = "Hydrae /ˈhaɪdriː/"
40,485
<question>: What is the meaning of the constellation that has puppis /ˈpʌpɨs/ as genitive? <context>: CREATE TABLE table_287159_1 (meaning VARCHAR, genitive VARCHAR)
SELECT meaning FROM table_287159_1 WHERE genitive = "Puppis /ˈpʌpɨs/"
40,486
<question>: How many track numbers were called song 2? <context>: CREATE TABLE table_28715942_3 (track_no VARCHAR, track VARCHAR)
SELECT COUNT(track_no) FROM table_28715942_3 WHERE track = "Song 2"
40,487
<question>: Who was the vocal percussionist when stevie wonder was the original artist? <context>: CREATE TABLE table_28715942_3 (vocal_percussionist VARCHAR, original_artist VARCHAR)
SELECT vocal_percussionist FROM table_28715942_3 WHERE original_artist = "Stevie Wonder"
40,488
<question>: What track name had Terry Tamm as the soloist? <context>: CREATE TABLE table_28715942_3 (track VARCHAR, soloist_s_ VARCHAR)
SELECT track FROM table_28715942_3 WHERE soloist_s_ = "Terry Tamm"
40,489
<question>: What was the date of the game that had a result of Army 16, SMU 14? <context>: CREATE TABLE table_28719193_19 (date VARCHAR, matchups_results VARCHAR)
SELECT date FROM table_28719193_19 WHERE matchups_results = "Army 16, SMU 14"
40,490
<question>: What was the city whose stadium is Gerald J. Ford Stadium? <context>: CREATE TABLE table_28719193_19 (city VARCHAR, stadium VARCHAR)
SELECT city FROM table_28719193_19 WHERE stadium = "Gerald J. Ford stadium"
40,491
<question>: What is every category wise when the multi lane is 677? <context>: CREATE TABLE table_28723146_2 (category_wise VARCHAR, multi_lane VARCHAR)
SELECT category_wise FROM table_28723146_2 WHERE multi_lane = 677
40,492
<question>: What is the highest value for multi lane if category wise is major district roads? <context>: CREATE TABLE table_28723146_2 (multi_lane INTEGER, category_wise VARCHAR)
SELECT MAX(multi_lane) FROM table_28723146_2 WHERE category_wise = "Major district roads"
40,493
<question>: What is the least total? <context>: CREATE TABLE table_28723146_2 (total INTEGER)
SELECT MIN(total) FROM table_28723146_2
40,494
<question>: What are the years of TeBe career for the players whose league matches are exactly 163? <context>: CREATE TABLE table_28730459_3 (tebe_career VARCHAR, league_matches VARCHAR)
SELECT tebe_career FROM table_28730459_3 WHERE league_matches = 163
40,495
<question>: What is the number of league goals for players with 10 league matches and a TeBe career of 2003? <context>: CREATE TABLE table_28730459_3 (league_goals VARCHAR, league_matches VARCHAR, tebe_career VARCHAR)
SELECT league_goals FROM table_28730459_3 WHERE league_matches = 10 AND tebe_career = "2003"
40,496
<question>: What is listed in eliminated when the finish is 15th voted out 9th jury Member Day 46? <context>: CREATE TABLE table_28742659_2 (eliminated VARCHAR, finish VARCHAR)
SELECT eliminated FROM table_28742659_2 WHERE finish = "15th voted Out 9th Jury Member Day 46"
40,497
<question>: What is listed in reward when the finish is listed at 13th voted out 6th jury Member Day 43? <context>: CREATE TABLE table_28742659_2 (reward VARCHAR, finish VARCHAR)
SELECT reward FROM table_28742659_2 WHERE finish = "13th voted Out 6th Jury Member Day 43"
40,498
<question>: What is the name of immunity when the finish is 3rd voted out day 9? <context>: CREATE TABLE table_28742659_2 (immunity VARCHAR, finish VARCHAR)
SELECT immunity FROM table_28742659_2 WHERE finish = "3rd voted Out Day 9"
40,499
<question>: What is the vote number when immunity listed as David and reward is listed as none? <context>: CREATE TABLE table_28742659_2 (vote VARCHAR, immunity VARCHAR, reward VARCHAR)
SELECT vote FROM table_28742659_2 WHERE immunity = "David" AND reward = "None"