Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
34,100 | <question>: when the points for is 139 is points difference? <context>: CREATE TABLE table_20396710_1 (points_difference VARCHAR, points_for VARCHAR) | SELECT COUNT(points_difference) FROM table_20396710_1 WHERE points_for = "139" |
34,101 | <question>: when points against is points again, which are the drawn? <context>: CREATE TABLE table_20396710_1 (drawn VARCHAR) | SELECT drawn FROM table_20396710_1 WHERE "points_against" = "points_against" |
34,102 | <question>: when points for is 39 what is the total number of drawn <context>: CREATE TABLE table_20396710_1 (drawn VARCHAR, points_for VARCHAR) | SELECT drawn FROM table_20396710_1 WHERE points_for = "39" |
34,103 | <question>: what is the mccain % where obama got 19.3% <context>: CREATE TABLE table_20424014_1 (mccain__percentage VARCHAR, obama__percentage VARCHAR) | SELECT mccain__percentage FROM table_20424014_1 WHERE obama__percentage = "19.3%" |
34,104 | <question>: what is the highest mccain # where obama got 33.7% <context>: CREATE TABLE table_20424014_1 (mccain__number INTEGER, obama__percentage VARCHAR) | SELECT MAX(mccain__number) FROM table_20424014_1 WHERE obama__percentage = "33.7%" |
34,105 | <question>: where did obama get 39.8% <context>: CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR) | SELECT county FROM table_20424014_1 WHERE obama__percentage = "39.8%" |
34,106 | <question>: what is the obama # in carson city <context>: CREATE TABLE table_20424014_1 (obama__number VARCHAR, county VARCHAR) | SELECT obama__number FROM table_20424014_1 WHERE county = "Carson City" |
34,107 | <question>: where did obama get 41.3% <context>: CREATE TABLE table_20424014_1 (county VARCHAR, obama__percentage VARCHAR) | SELECT county FROM table_20424014_1 WHERE obama__percentage = "41.3%" |
34,108 | <question>: Name the number of season for team bruichladdich <context>: CREATE TABLE table_20398823_1 (season VARCHAR, team VARCHAR) | SELECT COUNT(season) FROM table_20398823_1 WHERE team = "team Bruichladdich" |
34,109 | <question>: Name the least podiums for 49 points <context>: CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR) | SELECT MIN(podiums) FROM table_20398823_1 WHERE points = "49" |
34,110 | <question>: Name the least f/laps <context>: CREATE TABLE table_20398823_1 (f_laps INTEGER) | SELECT MIN(f_laps) FROM table_20398823_1 |
34,111 | <question>: Namet he season for wins being 0 and 20 races <context>: CREATE TABLE table_20398823_1 (season VARCHAR, wins VARCHAR, races VARCHAR) | SELECT season FROM table_20398823_1 WHERE wins = 0 AND races = 20 |
34,112 | <question>: Name the least podiums for 0 wins and 2005 season for 321 points <context>: CREATE TABLE table_20398823_1 (podiums INTEGER, points VARCHAR, wins VARCHAR, season VARCHAR) | SELECT MIN(podiums) FROM table_20398823_1 WHERE wins = 0 AND season = 2005 AND points = "321" |
34,113 | <question>: What is the Spanish title of the film whose title used in nomination was Ogu and Mampato in Rapa Nui? <context>: CREATE TABLE table_20404716_1 (spanish_title VARCHAR, film_title_used_in_nomination VARCHAR) | SELECT spanish_title FROM table_20404716_1 WHERE film_title_used_in_nomination = "Ogu and Mampato in Rapa Nui" |
34,114 | <question>: Who was the director of the film that was not nominated and had the Spanish title of play? <context>: CREATE TABLE table_20404716_1 (director VARCHAR, result VARCHAR, spanish_title VARCHAR) | SELECT director FROM table_20404716_1 WHERE result = "Not Nominated" AND spanish_title = "Play" |
34,115 | <question>: How many couples have an average of 25.3? <context>: CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR) | SELECT COUNT(couple) FROM table_20424140_3 WHERE average = "25.3" |
34,116 | <question>: How many different numbers of total dances are there for the couple ranked at number 6? <context>: CREATE TABLE table_20424140_3 (number_of_dances VARCHAR, place VARCHAR) | SELECT COUNT(number_of_dances) FROM table_20424140_3 WHERE place = 6 |
34,117 | <question>: What couple has an average of 17.2? <context>: CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR) | SELECT couple FROM table_20424140_3 WHERE average = "17.2" |
34,118 | <question>: What's the minimal number of dances a couple has danced? <context>: CREATE TABLE table_20424140_3 (number_of_dances INTEGER) | SELECT MIN(number_of_dances) FROM table_20424140_3 |
34,119 | <question>: What's the highest number a couple has ranked at? <context>: CREATE TABLE table_20424140_3 (place INTEGER) | SELECT MAX(place) FROM table_20424140_3 |
34,120 | <question>: How many crops were damaged when the public property damage was 1,03,049.60? <context>: CREATE TABLE table_20403667_2 (crop_damaged__in_lakh_inr__ VARCHAR, public_property_damaged__in_lakh_inr__ VARCHAR) | SELECT crop_damaged__in_lakh_inr__ FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60" |
34,121 | <question>: What is the panchayat when the public property damage was 1,03,049.60 <context>: CREATE TABLE table_20403667_2 (panchayat INTEGER, public_property_damaged__in_lakh_inr__ VARCHAR) | SELECT MAX(panchayat) FROM table_20403667_2 WHERE public_property_damaged__in_lakh_inr__ = "1,03,049.60" |
34,122 | <question>: What is the largest village that had 103279 houses affected? <context>: CREATE TABLE table_20403667_2 (village INTEGER, house_affected VARCHAR) | SELECT MAX(village) FROM table_20403667_2 WHERE house_affected = 103279 |
34,123 | <question>: What is the smallest district that had 33.25 in animals <context>: CREATE TABLE table_20403667_2 (district INTEGER, animal__in_lakh__ VARCHAR) | SELECT MIN(district) FROM table_20403667_2 WHERE animal__in_lakh__ = "33.25" |
34,124 | <question>: How many districts had crib damage of 1,164.50? <context>: CREATE TABLE table_20403667_2 (district VARCHAR, crop_damaged__in_lakh_inr__ VARCHAR) | SELECT COUNT(district) FROM table_20403667_2 WHERE crop_damaged__in_lakh_inr__ = "1,164.50" |
34,125 | <question>: Where did Obama get 37.1%? <context>: CREATE TABLE table_20453681_1 (county VARCHAR, obama_percentage VARCHAR) | SELECT county FROM table_20453681_1 WHERE obama_percentage = "37.1%" |
34,126 | <question>: What's the county where McCain got 60.6% and Obama got 37.3%? <context>: CREATE TABLE table_20453681_1 (county VARCHAR, mccain_percentage VARCHAR, obama_percentage VARCHAR) | SELECT county FROM table_20453681_1 WHERE mccain_percentage = "60.6%" AND obama_percentage = "37.3%" |
34,127 | <question>: What's the number of McCain votes in the county where Obama got 35.7% and others got 1.9% of the votes? <context>: CREATE TABLE table_20453681_1 (mccain_number INTEGER, obama_percentage VARCHAR, others_percentage VARCHAR) | SELECT MIN(mccain_number) FROM table_20453681_1 WHERE obama_percentage = "35.7%" AND others_percentage = "1.9%" |
34,128 | <question>: How many votes did Obama get in Geauga? <context>: CREATE TABLE table_20453681_1 (obama_number VARCHAR, county VARCHAR) | SELECT obama_number FROM table_20453681_1 WHERE county = "Geauga" |
34,129 | <question>: How many people voted for others in the county where McCain got 65.5% of the votes? <context>: CREATE TABLE table_20453681_1 (others VARCHAR, mccain_percentage VARCHAR) | SELECT others FROM table_20453681_1 WHERE mccain_percentage = "65.5%" |
34,130 | <question>: What is Phil Taylor's 3-dart average? <context>: CREATE TABLE table_20463779_22 (player VARCHAR) | SELECT 3 AS _dart_average FROM table_20463779_22 WHERE player = "Phil Taylor" |
34,131 | <question>: Who is the guest 3 in the show where guest 4 is Jill Douglas? <context>: CREATE TABLE table_20466963_4 (guest_3 VARCHAR, guest_4 VARCHAR) | SELECT guest_3 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas" |
34,132 | <question>: Who is the guest 2 in the episode where guest 4 is Iyare Igiehon and guest 3 is John Oliver? <context>: CREATE TABLE table_20466963_4 (guest_2 VARCHAR, guest_4 VARCHAR, guest_3 VARCHAR) | SELECT guest_2 FROM table_20466963_4 WHERE guest_4 = "Iyare Igiehon" AND guest_3 = "John Oliver" |
34,133 | <question>: Who is the guest 1 in the episode where guest 4 is Jill Douglas? <context>: CREATE TABLE table_20466963_4 (guest_1 VARCHAR, guest_4 VARCHAR) | SELECT guest_1 FROM table_20466963_4 WHERE guest_4 = "Jill Douglas" |
34,134 | <question>: How many dates are associated with a guest 4 being Jim Jeffries (debut)? <context>: CREATE TABLE table_20466963_4 (date VARCHAR, guest_4 VARCHAR) | SELECT COUNT(date) FROM table_20466963_4 WHERE guest_4 = "Jim Jeffries (debut)" |
34,135 | <question>: What is the date of the episode in which the presenter is Johnny Vaughan? <context>: CREATE TABLE table_20466963_4 (date VARCHAR, presenter VARCHAR) | SELECT date FROM table_20466963_4 WHERE presenter = "Johnny Vaughan" |
34,136 | <question>: Name the guest 4 for 8 december <context>: CREATE TABLE table_20466963_13 (guest_4 VARCHAR, date VARCHAR) | SELECT guest_4 FROM table_20466963_13 WHERE date = "8 December" |
34,137 | <question>: Name the guest 4 for steve lamacq <context>: CREATE TABLE table_20466963_13 (guest_4 VARCHAR, guest_2 VARCHAR) | SELECT guest_4 FROM table_20466963_13 WHERE guest_2 = "Steve Lamacq" |
34,138 | <question>: Name the guest 2 for colin murray 6 april <context>: CREATE TABLE table_20466963_13 (guest_2 VARCHAR, presenter VARCHAR, date VARCHAR) | SELECT COUNT(guest_2) FROM table_20466963_13 WHERE presenter = "Colin Murray" AND date = "6 April" |
34,139 | <question>: Name the presenter 11 may <context>: CREATE TABLE table_20466963_13 (presenter VARCHAR, date VARCHAR) | SELECT presenter FROM table_20466963_13 WHERE date = "11 May" |
34,140 | <question>: Name the guest 3 for iyare igiehon <context>: CREATE TABLE table_20466963_13 (guest_3 VARCHAR, guest_2 VARCHAR) | SELECT guest_3 FROM table_20466963_13 WHERE guest_2 = "Iyare Igiehon" |
34,141 | <question>: How many seasons featured 29 conversions? <context>: CREATE TABLE table_20505342_1 (penalties VARCHAR, conversions VARCHAR) | SELECT COUNT(penalties) FROM table_20505342_1 WHERE conversions = 29 |
34,142 | <question>: Lowest number of drop goals? <context>: CREATE TABLE table_20505342_1 (drop_goals INTEGER) | SELECT MIN(drop_goals) FROM table_20505342_1 |
34,143 | <question>: What is the point total for the season with 2 drop goals? <context>: CREATE TABLE table_20505342_1 (total_points INTEGER, drop_goals VARCHAR) | SELECT MIN(total_points) FROM table_20505342_1 WHERE drop_goals = 2 |
34,144 | <question>: Name the most obama number for mccain being 38.86% <context>: CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_percentage VARCHAR) | SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_percentage = "38.86%" |
34,145 | <question>: Name the most abama number for mccain being 29266 <context>: CREATE TABLE table_20468206_1 (obama_number INTEGER, mccain_number VARCHAR) | SELECT MAX(obama_number) FROM table_20468206_1 WHERE mccain_number = 29266 |
34,146 | <question>: Name the county for mccain being 38.78% <context>: CREATE TABLE table_20468206_1 (county VARCHAR, mccain_percentage VARCHAR) | SELECT county FROM table_20468206_1 WHERE mccain_percentage = "38.78%" |
34,147 | <question>: In how many counties di McCain win 41.62% of the vote? <context>: CREATE TABLE table_20524090_1 (county VARCHAR, mccain_percentage VARCHAR) | SELECT COUNT(county) FROM table_20524090_1 WHERE mccain_percentage = "41.62%" |
34,148 | <question>: What percentage of the vote did McCain win in Waynesboro (city)? <context>: CREATE TABLE table_20524090_1 (mccain_percentage VARCHAR, county VARCHAR) | SELECT mccain_percentage FROM table_20524090_1 WHERE county = "Waynesboro (city)" |
34,149 | <question>: What was Obama's percentage in those places where McCain's percentage was 55.46%? <context>: CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, mccain_percentage VARCHAR) | SELECT obama_percentage FROM table_20524090_1 WHERE mccain_percentage = "55.46%" |
34,150 | <question>: What was Obama's percentage in the county of Alleghany? <context>: CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR) | SELECT obama_percentage FROM table_20524090_1 WHERE county = "Alleghany" |
34,151 | <question>: What was Obama's percentage in the county of Surry? <context>: CREATE TABLE table_20524090_1 (obama_percentage VARCHAR, county VARCHAR) | SELECT obama_percentage FROM table_20524090_1 WHERE county = "Surry" |
34,152 | <question>: How many percent of the votes in Debaca did McCain get? <context>: CREATE TABLE table_20539826_1 (mccain_percentage VARCHAR, county VARCHAR) | SELECT mccain_percentage FROM table_20539826_1 WHERE county = "DeBaca" |
34,153 | <question>: What percentage of the votes did Obama get in the county where 3909 people voted in total? <context>: CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, total VARCHAR) | SELECT obama_percentage FROM table_20539826_1 WHERE total = 3909 |
34,154 | <question>: What percentage of the votes did Obama get in the county where McCain got 3648 votes? <context>: CREATE TABLE table_20539826_1 (obama_percentage VARCHAR, mccain_number VARCHAR) | SELECT obama_percentage FROM table_20539826_1 WHERE mccain_number = 3648 |
34,155 | <question>: Who was the winner when the SEC team LSU played? <context>: CREATE TABLE table_20540006_6 (winner VARCHAR, sec_team VARCHAR) | SELECT winner FROM table_20540006_6 WHERE sec_team = "LSU" |
34,156 | <question>: What was the attendance for the game when the challenge leader was at Big East (4-2)? <context>: CREATE TABLE table_20540006_6 (attendance INTEGER, challenge_leader VARCHAR) | SELECT MAX(attendance) FROM table_20540006_6 WHERE challenge_leader = "Big East (4-2)" |
34,157 | <question>: What suumer team was James Lomangino from St. John's on? <context>: CREATE TABLE table_20589703_2 (summer_team VARCHAR, college VARCHAR, player VARCHAR) | SELECT summer_team FROM table_20589703_2 WHERE college = "St. John's" AND player = "James Lomangino" |
34,158 | <question>: In what draft round in 2012 did a player from Rio Hondo get drafted? <context>: CREATE TABLE table_20589703_2 (draft_round VARCHAR, college VARCHAR, draft_year VARCHAR) | SELECT draft_round FROM table_20589703_2 WHERE college = "Rio Hondo" AND draft_year = 2012 |
34,159 | <question>: What college did Aaron Slegers attend? <context>: CREATE TABLE table_20589703_2 (college VARCHAR, player VARCHAR) | SELECT college FROM table_20589703_2 WHERE player = "Aaron Slegers" |
34,160 | <question>: What are the statuses of the platelet counts for the conditions where the prothrombin time and partial thromboblastin time is unaffected? <context>: CREATE TABLE table_20592988_1 (platelet_count VARCHAR, prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR) | SELECT platelet_count FROM table_20592988_1 WHERE prothrombin_time = "Unaffected" AND partial_thromboplastin_time = "Unaffected" |
34,161 | <question>: What is the status of partial thromboplastin times for conditions where the platelet count is decreased? <context>: CREATE TABLE table_20592988_1 (partial_thromboplastin_time VARCHAR, platelet_count VARCHAR) | SELECT partial_thromboplastin_time FROM table_20592988_1 WHERE platelet_count = "Decreased" |
34,162 | <question>: In what conditions are both the platelet count and prothrombin time unaffected? <context>: CREATE TABLE table_20592988_1 (condition VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR) | SELECT condition FROM table_20592988_1 WHERE platelet_count = "Unaffected" AND prothrombin_time = "Unaffected" |
34,163 | <question>: What is the status of bleeding time for thrombocytopenia? <context>: CREATE TABLE table_20592988_1 (bleeding_time VARCHAR, condition VARCHAR) | SELECT bleeding_time FROM table_20592988_1 WHERE condition = "Thrombocytopenia" |
34,164 | <question>: What is the status of platelet counts for conditions where bleeding time is prolonged and partial thromboplastin time is unaffected? <context>: CREATE TABLE table_20592988_1 (platelet_count VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR) | SELECT platelet_count FROM table_20592988_1 WHERE bleeding_time = "Prolonged" AND partial_thromboplastin_time = "Unaffected" |
34,165 | <question>: Which players made exactly 8 cuts? <context>: CREATE TABLE table_20590020_2 (player VARCHAR, cuts_made VARCHAR) | SELECT player FROM table_20590020_2 WHERE cuts_made = 8 |
34,166 | <question>: What is the total number of entries for Leif Olson? <context>: CREATE TABLE table_20590020_2 (starts VARCHAR, player VARCHAR) | SELECT COUNT(starts) FROM table_20590020_2 WHERE player = "Leif Olson" |
34,167 | <question>: What is the total number of players who had a money list rank of 96? <context>: CREATE TABLE table_20590020_2 (best_finish VARCHAR, money_list_rank VARCHAR) | SELECT COUNT(best_finish) FROM table_20590020_2 WHERE money_list_rank = 96 |
34,168 | <question>: what is the name for br no. 60501 <context>: CREATE TABLE table_20595642_2 (name VARCHAR, br_no VARCHAR) | SELECT name FROM table_20595642_2 WHERE br_no = 60501 |
34,169 | <question>: When 23% scott mcadams (d) what are the dates administered? <context>: CREATE TABLE table_20597634_3 (dates_administered VARCHAR, scott_mcadams__d_ VARCHAR) | SELECT dates_administered FROM table_20597634_3 WHERE scott_mcadams__d_ = "23%" |
34,170 | <question>: When 30% is scott mcadams (d) percentage how many poll sources are there? <context>: CREATE TABLE table_20597634_3 (poll_source VARCHAR, scott_mcadams__d_ VARCHAR) | SELECT COUNT(poll_source) FROM table_20597634_3 WHERE scott_mcadams__d_ = "30%" |
34,171 | <question>: Name the revenue for eps being 1.19 <context>: CREATE TABLE table_20614109_1 (revenue__ INTEGER, earnings_per_share__€_ VARCHAR) | SELECT MAX(revenue__) AS €million_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19" |
34,172 | <question>: Name the net profit for eps beign 1.19 <context>: CREATE TABLE table_20614109_1 (net_profit__€m_ VARCHAR, earnings_per_share__€_ VARCHAR) | SELECT net_profit__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.19" |
34,173 | <question>: Name the ebit for eps being 1.78 <context>: CREATE TABLE table_20614109_1 (earnings_before_interest_and_taxes__€m_ VARCHAR, earnings_per_share__€_ VARCHAR) | SELECT earnings_before_interest_and_taxes__€m_ FROM table_20614109_1 WHERE earnings_per_share__€_ = "1.78" |
34,174 | <question>: How many different production codes does the episode directed by Dominic Polcino have? <context>: CREATE TABLE table_20613292_1 (production_code VARCHAR, directed_by VARCHAR) | SELECT COUNT(production_code) FROM table_20613292_1 WHERE directed_by = "Dominic Polcino" |
34,175 | <question>: What's the production code of the episode written by Kirker Butler and directed by Dan Povenmire? <context>: CREATE TABLE table_20613292_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR) | SELECT production_code FROM table_20613292_1 WHERE written_by = "Kirker Butler" AND directed_by = "Dan Povenmire" |
34,176 | <question>: What was the weight in kg when the jockey was B. York? <context>: CREATE TABLE table_2062148_2 (weight__kg_ VARCHAR, jockey VARCHAR) | SELECT weight__kg_ FROM table_2062148_2 WHERE jockey = "B. York" |
34,177 | <question>: What was the result of the race where the jockey was J. Marshall? <context>: CREATE TABLE table_2062148_2 (result VARCHAR, jockey VARCHAR) | SELECT result FROM table_2062148_2 WHERE jockey = "J. Marshall" |
34,178 | <question>: Name the most weight <context>: CREATE TABLE table_2062148_4 (weight__kg_ INTEGER) | SELECT MAX(weight__kg_) FROM table_2062148_4 |
34,179 | <question>: Name the date for moonee valley <context>: CREATE TABLE table_2062148_4 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_2062148_4 WHERE venue = "Moonee Valley" |
34,180 | <question>: What group was the Hollindale Stakes in? <context>: CREATE TABLE table_2062148_3 (group VARCHAR, race VARCHAR) | SELECT group FROM table_2062148_3 WHERE race = "Hollindale Stakes" |
34,181 | <question>: What race has a distance of 1200 m? <context>: CREATE TABLE table_2062148_3 (race VARCHAR, distance VARCHAR) | SELECT race FROM table_2062148_3 WHERE distance = "1200 m" |
34,182 | <question>: What was the result for the time of 1-26.21? <context>: CREATE TABLE table_20626467_1 (result VARCHAR, time VARCHAR) | SELECT result FROM table_20626467_1 WHERE time = "1-26.21" |
34,183 | <question>: Who was the jockey in group 1 at the 1400m distance at randwick? <context>: CREATE TABLE table_20626467_1 (jockey VARCHAR, distance VARCHAR, class VARCHAR, venue VARCHAR) | SELECT jockey FROM table_20626467_1 WHERE class = "Group 1" AND venue = "Randwick" AND distance = "1400m" |
34,184 | <question>: What class was the 2nd - portillo? <context>: CREATE TABLE table_20626467_1 (class VARCHAR, winner_2nd VARCHAR) | SELECT class FROM table_20626467_1 WHERE winner_2nd = "2nd - Portillo" |
34,185 | <question>: What time for the entrant weighing 54.4kg? <context>: CREATE TABLE table_20626467_1 (time VARCHAR, weight__kg_ VARCHAR) | SELECT time FROM table_20626467_1 WHERE weight__kg_ = "54.4kg" |
34,186 | <question>: What is every entry for epoch if periselene is 5,454.925? <context>: CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR) | SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "5,454.925" |
34,187 | <question>: What is every entry for epoch if periselene is 2,291.250? <context>: CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR) | SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "2,291.250" |
34,188 | <question>: What is every value of period when eccentricity is 0.583085? <context>: CREATE TABLE table_206217_2 (period__h_ VARCHAR, eccentricity VARCHAR) | SELECT period__h_ FROM table_206217_2 WHERE eccentricity = "0.583085" |
34,189 | <question>: What is every value of epoch if inclination is 90.063603? <context>: CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, inclination__deg___to_moon_equator_ VARCHAR) | SELECT epoch__utc_ FROM table_206217_2 WHERE inclination__deg___to_moon_equator_ = "90.063603" |
34,190 | <question>: What is every value for periselene if period is 4.947432? <context>: CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, period__h_ VARCHAR) | SELECT periselene__km_ FROM table_206217_2 WHERE period__h_ = "4.947432" |
34,191 | <question>: How many values of periselene when epoch is November 15, 2004, 17:47:12.1? <context>: CREATE TABLE table_206217_2 (periselene__km_ VARCHAR, epoch__utc_ VARCHAR) | SELECT COUNT(periselene__km_) FROM table_206217_2 WHERE epoch__utc_ = "November 15, 2004, 17:47:12.1" |
34,192 | <question>: How many times did the Bruins play Tennessee? <context>: CREATE TABLE table_20630665_1 (result VARCHAR, opponent VARCHAR) | SELECT COUNT(result) FROM table_20630665_1 WHERE opponent = "Tennessee" |
34,193 | <question>: What is the current tournament name for the event in Tampa? <context>: CREATE TABLE table_20630462_1 (also_currently_known_as VARCHAR, tournament VARCHAR) | SELECT also_currently_known_as FROM table_20630462_1 WHERE tournament = "Tampa" |
34,194 | <question>: What is the tier IV year for the tournament held in Tampa? <context>: CREATE TABLE table_20630462_1 (tier_iv_in VARCHAR, tournament VARCHAR) | SELECT tier_iv_in FROM table_20630462_1 WHERE tournament = "Tampa" |
34,195 | <question>: What is the most years that tournaments held in Rome have lasted? <context>: CREATE TABLE table_20630462_1 (years INTEGER, tournament VARCHAR) | SELECT MAX(years) FROM table_20630462_1 WHERE tournament = "Rome" |
34,196 | <question>: What is the city location of the tournament currently known as the Medibank International Sydney? <context>: CREATE TABLE table_20630462_1 (city_s_ VARCHAR, also_currently_known_as VARCHAR) | SELECT city_s_ FROM table_20630462_1 WHERE also_currently_known_as = "Medibank International Sydney" |
34,197 | <question>: How many different shareholders have 2.39 % of capital? <context>: CREATE TABLE table_206359_1 (shareholder_name VARCHAR, _percentage_of_capital VARCHAR) | SELECT COUNT(shareholder_name) FROM table_206359_1 WHERE _percentage_of_capital = "2.39" |
34,198 | <question>: What shareholders have 0 A shares? <context>: CREATE TABLE table_206359_1 (shareholder_name VARCHAR, a_shares VARCHAR) | SELECT shareholder_name FROM table_206359_1 WHERE a_shares = 0 |
34,199 | <question>: What percentage of votes does the shareholder with 78.19% of capital have? <context>: CREATE TABLE table_206359_1 (_percentage_of_votes VARCHAR, _percentage_of_capital VARCHAR) | SELECT _percentage_of_votes FROM table_206359_1 WHERE _percentage_of_capital = "78.19" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.