answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT MAX(panchayat) FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60"
CREATE TABLE table_20403667_2 (panchayat INTEGER, public_property_damaged__in_lakh_inr__ VARCHAR)
What is the panchayat when the public property damage was 1,03,049.60
SELECT MAX(village) FROM table_20403667_2 WHERE house_affected = 103279
CREATE TABLE table_20403667_2 (village INTEGER, house_affected VARCHAR)
What is the largest village that had 103279 houses affected?
SELECT MIN(district) FROM table_20403667_2 WHERE animal__in_lakh__ = "33.25"
CREATE TABLE table_20403667_2 (district INTEGER, animal__in_lakh__ VARCHAR)
What is the smallest district that had 33.25 in animals
SELECT COUNT(district) FROM table_20403667_2 WHERE crop_damaged__in_lakh_inr__ = "1,164.50"
CREATE TABLE table_20403667_2 (district VARCHAR, crop_damaged__in_lakh_inr__ VARCHAR)
How many districts had crib damage of 1,164.50?
SELECT county FROM table_20453681_1 WHERE obama_percentage = "37.1%"
CREATE TABLE table_20453681_1 (county VARCHAR, obama_percentage VARCHAR)
Where did Obama get 37.1%?
SELECT county FROM table_20453681_1 WHERE mccain_percentage = "60.6%" AND obama_percentage = "37.3%"
CREATE TABLE table_20453681_1 (county VARCHAR, mccain_percentage VARCHAR, obama_percentage VARCHAR)
What's the county where McCain got 60.6% and Obama got 37.3%?
SELECT MIN(mccain_number) FROM table_20453681_1 WHERE obama_percentage = "35.7%" AND others_percentage = "1.9%"
CREATE TABLE table_20453681_1 (mccain_number INTEGER, obama_percentage VARCHAR, others_percentage VARCHAR)
What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes?
SELECT obama_number FROM table_20453681_1 WHERE county = "Geauga"
CREATE TABLE table_20453681_1 (obama_number VARCHAR, county VARCHAR)
How many votes did Obama get in Geauga?
SELECT others FROM table_20453681_1 WHERE mccain_percentage = "65.5%"
CREATE TABLE table_20453681_1 (others VARCHAR, mccain_percentage VARCHAR)
How many people voted for others in the county where McCain got 65.5% of the votes?
SELECT 3 AS _dart_average FROM table_20463779_22 WHERE player = "Phil Taylor"
CREATE TABLE table_20463779_22 (player VARCHAR)
What is Phil Taylor's 3-dart average?
SELECT guest_3 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas"
CREATE TABLE table_20466963_4 (guest_3 VARCHAR, guest_4 VARCHAR)
Who is the guest 3 in the show where guest 4 is Jill Douglas?
SELECT guest_2 FROM table_20466963_4 WHERE guest_4 = "Iyare Igiehon" AND guest_3 = "John Oliver"
CREATE TABLE table_20466963_4 (guest_2 VARCHAR, guest_4 VARCHAR, guest_3 VARCHAR)
Who is the guest 2 in the episode where guest 4 is Iyare Igiehon and guest 3 is John Oliver?
SELECT guest_1 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas"
CREATE TABLE table_20466963_4 (guest_1 VARCHAR, guest_4 VARCHAR)
Who is the guest 1 in the episode where guest 4 is Jill Douglas?
SELECT COUNT(date) FROM table_20466963_4 WHERE guest_4 = "Jim Jeffries (debut)"
CREATE TABLE table_20466963_4 (date VARCHAR, guest_4 VARCHAR)
How many dates are associated with a guest 4 being Jim Jeffries (debut)?
SELECT date FROM table_20466963_4 WHERE presenter = "Johnny Vaughan"
CREATE TABLE table_20466963_4 (date VARCHAR, presenter VARCHAR)
What is the date of the episode in which the presenter is Johnny Vaughan?
SELECT guest_4 FROM table_20466963_13 WHERE date = "8 December"
CREATE TABLE table_20466963_13 (guest_4 VARCHAR, date VARCHAR)
Name the guest 4 for 8 december
SELECT guest_4 FROM table_20466963_13 WHERE guest_2 = "Steve Lamacq"
CREATE TABLE table_20466963_13 (guest_4 VARCHAR, guest_2 VARCHAR)
Name the guest 4 for steve lamacq
SELECT COUNT(guest_2) FROM table_20466963_13 WHERE presenter = "Colin Murray" AND date = "6 April"
CREATE TABLE table_20466963_13 (guest_2 VARCHAR, presenter VARCHAR, date VARCHAR)
Name the guest 2 for colin murray 6 april
SELECT presenter FROM table_20466963_13 WHERE date = "11 May"
CREATE TABLE table_20466963_13 (presenter VARCHAR, date VARCHAR)
Name the presenter 11 may
SELECT guest_3 FROM table_20466963_13 WHERE guest_2 = "Iyare Igiehon"
CREATE TABLE table_20466963_13 (guest_3 VARCHAR, guest_2 VARCHAR)
Name the guest 3 for iyare igiehon
SELECT COUNT(penalties) FROM table_20505342_1 WHERE conversions = 29
CREATE TABLE table_20505342_1 (penalties VARCHAR, conversions VARCHAR)
How many seasons featured 29 conversions?
SELECT MIN(drop_goals) FROM table_20505342_1
CREATE TABLE table_20505342_1 (drop_goals INTEGER)
Lowest number of drop goals?
SELECT MIN(total_points) FROM table_20505342_1 WHERE drop_goals = 2
CREATE TABLE table_20505342_1 (total_points INTEGER, drop_goals VARCHAR)
What is the point total for the season with 2 drop goals?
SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_percentage = "38.86%"
CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_percentage VARCHAR)
Name the most obama number for mccain being 38.86%
SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_number = 29266
CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_number VARCHAR)
Name the most abama number for mccain being 29266
SELECT county FROM table_20468206_1 WHERE mccain_percentage = "38.78%"
CREATE TABLE table_20468206_1 (county VARCHAR, mccain_percentage VARCHAR)
Name the county for mccain being 38.78%
SELECT COUNT(county) FROM table_20524090_1 WHERE mccain_percentage = "41.62%"
CREATE TABLE table_20524090_1 (county VARCHAR, mccain_percentage VARCHAR)
In how many counties di McCain win 41.62% of the vote?
SELECT mccain_percentage FROM table_20524090_1 WHERE county = "Waynesboro (city)"
CREATE TABLE table_20524090_1 (mccain_percentage VARCHAR, county VARCHAR)
What percentage of the vote did McCain win in Waynesboro (city)?
SELECT obama_percentage FROM table_20524090_1 WHERE mccain_percentage = "55.46%"
CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, mccain_percentage VARCHAR)
What was Obama's percentage in those places where McCain's percentage was 55.46%?
SELECT obama_percentage FROM table_20524090_1 WHERE county = "Alleghany"
CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR)
What was Obama's percentage in the county of Alleghany?
SELECT obama_percentage FROM table_20524090_1 WHERE county = "Surry"
CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR)
What was Obama's percentage in the county of Surry?
SELECT mccain_percentage FROM table_20539826_1 WHERE county = "DeBaca"
CREATE TABLE table_20539826_1 (mccain_percentage VARCHAR, county VARCHAR)
How many percent of the votes in Debaca did McCain get?
SELECT obama_percentage FROM table_20539826_1 WHERE total = 3909
CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, total VARCHAR)
What percentage of the votes did Obama get in the county where 3909 people voted in total?
SELECT obama_percentage FROM table_20539826_1 WHERE mccain_number = 3648
CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, mccain_number VARCHAR)
What percentage of the votes did Obama get in the county where McCain got 3648 votes?
SELECT winner FROM table_20540006_6 WHERE sec_team = "LSU"
CREATE TABLE table_20540006_6 (winner VARCHAR, sec_team VARCHAR)
Who was the winner when the SEC team LSU played?
SELECT MAX(attendance) FROM table_20540006_6 WHERE challenge_leader = "Big East (4-2)"
CREATE TABLE table_20540006_6 (attendance INTEGER, challenge_leader VARCHAR)
What was the attendance for the game when the challenge leader was at Big East (4-2)?
SELECT summer_team FROM table_20589703_2 WHERE college = "St. John's" AND player = "James Lomangino"
CREATE TABLE table_20589703_2 (summer_team VARCHAR, college VARCHAR, player VARCHAR)
What suumer team was James Lomangino from St. John's on?
SELECT draft_round FROM table_20589703_2 WHERE college = "Rio Hondo" AND draft_year = 2012
CREATE TABLE table_20589703_2 (draft_round VARCHAR, college VARCHAR, draft_year VARCHAR)
In what draft round in 2012 did a player from Rio Hondo get drafted?
SELECT college FROM table_20589703_2 WHERE player = "Aaron Slegers"
CREATE TABLE table_20589703_2 (college VARCHAR, player VARCHAR)
What college did Aaron Slegers attend?
SELECT platelet_count FROM table_20592988_1 WHERE prothrombin_time = "Unaffected" AND partial_thromboplastin_time = "Unaffected"
CREATE TABLE table_20592988_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR)
What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected?
SELECT partial_thromboplastin_time FROM table_20592988_1 WHERE platelet_count = "Decreased"
CREATE TABLE table_20592988_1 (partial_thromboplastin_time VARCHAR, platelet_count VARCHAR)
What is the status of partial thromboplastin times for conditions where the platelet count is decreased?
SELECT condition FROM table_20592988_1 WHERE platelet_count = "Unaffected" AND prothrombin_time = "Unaffected"
CREATE TABLE table_20592988_1 (condition VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR)
In what conditions are both the platelet count and prothrombin time unaffected?
SELECT bleeding_time FROM table_20592988_1 WHERE condition = "Thrombocytopenia"
CREATE TABLE table_20592988_1 (bleeding_time VARCHAR, condition VARCHAR)
What is the status of bleeding time for thrombocytopenia?
SELECT platelet_count FROM table_20592988_1 WHERE bleeding_time = "Prolonged" AND partial_thromboplastin_time = "Unaffected"
CREATE TABLE table_20592988_1 (platelet_count VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)
What is the status of platelet counts for conditions where bleeding time is prolonged and partial thromboplastin time is unaffected?
SELECT player FROM table_20590020_2 WHERE cuts_made = 8
CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR)
Which players made exactly 8 cuts?
SELECT COUNT(starts) FROM table_20590020_2 WHERE player = "Leif Olson"
CREATE TABLE table_20590020_2 (starts VARCHAR, player VARCHAR)
What is the total number of entries for Leif Olson?
SELECT COUNT(best_finish) FROM table_20590020_2 WHERE money_list_rank = 96
CREATE TABLE table_20590020_2 (best_finish VARCHAR, money_list_rank VARCHAR)
What is the total number of players who had a money list rank of 96?
SELECT name FROM table_20595642_2 WHERE br_no = 60501
CREATE TABLE table_20595642_2 (name VARCHAR, br_no VARCHAR)
what is the name for br no. 60501
SELECT dates_administered FROM table_20597634_3 WHERE scott_mcadams__d_ = "23%"
CREATE TABLE table_20597634_3 (dates_administered VARCHAR, scott_mcadams__d_ VARCHAR)
When 23% scott mcadams (d) what are the dates administered?
SELECT COUNT(poll_source) FROM table_20597634_3 WHERE scott_mcadams__d_ = "30%"
CREATE TABLE table_20597634_3 (poll_source VARCHAR, scott_mcadams__d_ VARCHAR)
When 30% is scott mcadams (d) percentage how many poll sources are there?
SELECT MAX(revenue__) AS €million_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19"
CREATE TABLE table_20614109_1 (revenue__ INTEGER, earnings_per_share__€_ VARCHAR)
Name the revenue for eps being 1.19
SELECT net_profit__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19"
CREATE TABLE table_20614109_1 (net_profit__€m_ VARCHAR, earnings_per_share__€_ VARCHAR)
Name the net profit for eps beign 1.19
SELECT earnings_before_interest_and_taxes__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.78"
CREATE TABLE table_20614109_1 (earnings_before_interest_and_taxes__€m_ VARCHAR, earnings_per_share__€_ VARCHAR)
Name the ebit for eps being 1.78
SELECT COUNT(production_code) FROM table_20613292_1 WHERE directed_by = "Dominic Polcino"
CREATE TABLE table_20613292_1 (production_code VARCHAR, directed_by VARCHAR)
How many different production codes does the episode directed by Dominic Polcino have?
SELECT production_code FROM table_20613292_1 WHERE written_by = "Kirker Butler" AND directed_by = "Dan Povenmire"
CREATE TABLE table_20613292_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR)
What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire?
SELECT weight__kg_ FROM table_2062148_2 WHERE jockey = "B. York"
CREATE TABLE table_2062148_2 (weight__kg_ VARCHAR, jockey VARCHAR)
What was the weight in kg when the jockey was B. York?
SELECT result FROM table_2062148_2 WHERE jockey = "J. Marshall"
CREATE TABLE table_2062148_2 (result VARCHAR, jockey VARCHAR)
What was the result of the race where the jockey was J. Marshall?
SELECT MAX(weight__kg_) FROM table_2062148_4
CREATE TABLE table_2062148_4 (weight__kg_ INTEGER)
Name the most weight
SELECT date FROM table_2062148_4 WHERE venue = "Moonee Valley"
CREATE TABLE table_2062148_4 (date VARCHAR, venue VARCHAR)
Name the date for moonee valley
SELECT group FROM table_2062148_3 WHERE race = "Hollindale Stakes"
CREATE TABLE table_2062148_3 (group VARCHAR, race VARCHAR)
What group was the Hollindale Stakes in?
SELECT race FROM table_2062148_3 WHERE distance = "1200 m"
CREATE TABLE table_2062148_3 (race VARCHAR, distance VARCHAR)
What race has a distance of 1200 m?
SELECT result FROM table_20626467_1 WHERE time = "1-26.21"
CREATE TABLE table_20626467_1 (result VARCHAR, time VARCHAR)
What was the result for the time of 1-26.21?
SELECT jockey FROM table_20626467_1 WHERE class = "Group 1" AND venue = "Randwick" AND distance = "1400m"
CREATE TABLE table_20626467_1 (jockey VARCHAR, distance VARCHAR, class VARCHAR, venue VARCHAR)
Who was the jockey in group 1 at the 1400m distance at randwick?
SELECT class FROM table_20626467_1 WHERE winner_2nd = "2nd - Portillo"
CREATE TABLE table_20626467_1 (class VARCHAR, winner_2nd VARCHAR)
What class was the 2nd - portillo?
SELECT time FROM table_20626467_1 WHERE weight__kg_ = "54.4kg"
CREATE TABLE table_20626467_1 (time VARCHAR, weight__kg_ VARCHAR)
What time for the entrant weighing 54.4kg?
SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "5,454.925"
CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR)
What is every entry for epoch if periselene is 5,454.925?
SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "2,291.250"
CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR)
What is every entry for epoch if periselene is 2,291.250?
SELECT period__h_ FROM table_206217_2 WHERE eccentricity = "0.583085"
CREATE TABLE table_206217_2 (period__h_ VARCHAR, eccentricity VARCHAR)
What is every value of period when eccentricity is 0.583085?
SELECT epoch__utc_ FROM table_206217_2 WHERE inclination__deg___to_moon_equator_ = "90.063603"
CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, inclination__deg___to_moon_equator_ VARCHAR)
What is every value of epoch if inclination is 90.063603?
SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432"
CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, period__h_ VARCHAR)
What is every value for periselene if period is 4.947432?
SELECT COUNT(periselene__km_) FROM table_206217_2 WHERE epoch__utc_ = "November 15, 2004, 17:47:12.1"
CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, epoch__utc_ VARCHAR)
How many values of periselene when epoch is November 15, 2004, 17:47:12.1?
SELECT COUNT(result) FROM table_20630665_1 WHERE opponent = "Tennessee"
CREATE TABLE table_20630665_1 (result VARCHAR, opponent VARCHAR)
How many times did the Bruins play Tennessee?
SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = "Tampa"
CREATE TABLE table_20630462_1 (also_currently_known_as VARCHAR, tournament VARCHAR)
What is the current tournament name for the event in Tampa?
SELECT tier_iv_in FROM table_20630462_1 WHERE tournament = "Tampa"
CREATE TABLE table_20630462_1 (tier_iv_in VARCHAR, tournament VARCHAR)
What is the tier IV year for the tournament held in Tampa?
SELECT MAX(years) FROM table_20630462_1 WHERE tournament = "Rome"
CREATE TABLE table_20630462_1 (years INTEGER, tournament VARCHAR)
What is the most years that tournaments held in Rome have lasted?
SELECT city_s_ FROM table_20630462_1 WHERE also_currently_known_as = "Medibank International Sydney"
CREATE TABLE table_20630462_1 (city_s_ VARCHAR, also_currently_known_as VARCHAR)
What is the city location of the tournament currently known as the Medibank International Sydney?
SELECT COUNT(shareholder_name) FROM table_206359_1 WHERE _percentage_of_capital = "2.39"
CREATE TABLE table_206359_1 (shareholder_name VARCHAR, _percentage_of_capital VARCHAR)
How many different shareholders have 2.39 % of capital?
SELECT shareholder_name FROM table_206359_1 WHERE a_shares = 0
CREATE TABLE table_206359_1 (shareholder_name VARCHAR, a_shares VARCHAR)
What shareholders have 0 A shares?
SELECT _percentage_of_votes FROM table_206359_1 WHERE _percentage_of_capital = "78.19"
CREATE TABLE table_206359_1 (_percentage_of_votes VARCHAR, _percentage_of_capital VARCHAR)
What percentage of votes does the shareholder with 78.19% of capital have?
SELECT COUNT(b_shares) FROM table_206359_1 WHERE shareholder_name = "Handelsbanken fonder"
CREATE TABLE table_206359_1 (b_shares VARCHAR, shareholder_name VARCHAR)
How many different numbers of B shares does Handelsbanken fonder have?
SELECT MIN(green__sw_) FROM table_2066296_5 WHERE interior_roof = "Charcoal/white"
CREATE TABLE table_2066296_5 (green__sw_ INTEGER, interior_roof VARCHAR)
What's the green (SW) of the model with charcoal/white interior/roof?
SELECT COUNT(red__e8_) FROM table_2066296_5 WHERE interior_roof = "Parchment/saddle"
CREATE TABLE table_2066296_5 (red__e8_ VARCHAR, interior_roof VARCHAR)
How many different results for red (e8) does the model with parchment/saddle interior/roof have?
SELECT COUNT(totals) FROM table_2066296_5 WHERE interior_roof = "Parchment/black"
CREATE TABLE table_2066296_5 (totals VARCHAR, interior_roof VARCHAR)
How many different total results are there for the model with parchment/black interior/roof?
SELECT college FROM table_20649850_1 WHERE player = "Aaron Wagner"
CREATE TABLE table_20649850_1 (college VARCHAR, player VARCHAR)
Where did aaron wagner go to college
SELECT college FROM table_20649850_1 WHERE position = "OL"
CREATE TABLE table_20649850_1 (college VARCHAR, position VARCHAR)
Where did the ol go to college?
SELECT MIN(pick__number) FROM table_20649850_1 WHERE college = "New Mexico"
CREATE TABLE table_20649850_1 (pick__number INTEGER, college VARCHAR)
Name the number for new mexico
SELECT COUNT(pick__number) FROM table_20649850_1 WHERE position = "DB"
CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR)
Name the number for db
SELECT player FROM table_20649850_1 WHERE position = "OL"
CREATE TABLE table_20649850_1 (player VARCHAR, position VARCHAR)
Name the player for ol
SELECT pick__number FROM table_20649850_1 WHERE position = "DL"
CREATE TABLE table_20649850_1 (pick__number VARCHAR, position VARCHAR)
Name the number for dl
SELECT company FROM table_20667854_1 WHERE free_float = "0.2726"
CREATE TABLE table_20667854_1 (company VARCHAR, free_float VARCHAR)
Which companies have a free float of 0.2726?
SELECT bse_code FROM table_20667854_1 WHERE free_float = "0.2726"
CREATE TABLE table_20667854_1 (bse_code VARCHAR, free_float VARCHAR)
What is every BSE code for a free float of 0.2726?
SELECT gics_sector FROM table_20667854_1 WHERE free_float = "0.3180"
CREATE TABLE table_20667854_1 (gics_sector VARCHAR, free_float VARCHAR)
What is every GICS sector for free float of 0.3180?
SELECT company FROM table_20667854_1 WHERE index_weighting___percentage = "1" AND city = "Dimitrovgrad"
CREATE TABLE table_20667854_1 (company VARCHAR, index_weighting___percentage VARCHAR, city VARCHAR)
What is every company with an index weighting % of 1 and the city of Dimitrovgrad?
SELECT COUNT(gics_sector) FROM table_20667854_1 WHERE free_float = "0.2391"
CREATE TABLE table_20667854_1 (gics_sector VARCHAR, free_float VARCHAR)
How many GICS sectors have a free float of 0.2391?
SELECT COUNT(free_float) FROM table_20667854_1 WHERE bse_code = "4EH"
CREATE TABLE table_20667854_1 (free_float VARCHAR, bse_code VARCHAR)
How many values of free float for the BSE code of 4EH?
SELECT COUNT(date_of_opinion_poll) FROM table_20683381_2 WHERE undecided = "25%"
CREATE TABLE table_20683381_2 (date_of_opinion_poll VARCHAR, undecided VARCHAR)
How many polls taken on different dates show an undecided percentage of 25%?
SELECT date_of_opinion_poll FROM table_20683381_2 WHERE conductor = "Quantum Research"
CREATE TABLE table_20683381_2 (date_of_opinion_poll VARCHAR, conductor VARCHAR)
When was Quantum Research's poll conducted?
SELECT conductor FROM table_20683381_2 WHERE undecided = "18%" AND sample_size = 2000
CREATE TABLE table_20683381_2 (conductor VARCHAR, undecided VARCHAR, sample_size VARCHAR)
Who conducted the poll with sample size of 2000 that shows 18% undecided?
SELECT height__ft_ FROM table_20669355_2 WHERE country = "Ecuador"
CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR)
How tall is the contestant from Ecuador?
SELECT height__ft_ FROM table_20669355_2 WHERE country = "Aruba"
CREATE TABLE table_20669355_2 (height__ft_ VARCHAR, country VARCHAR)
How tall is the contestant from Aruba?