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