Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
8,500 | <question>: What is the barony for the Ballintaggart townland? <context>: CREATE TABLE table_30120619_1 (barony VARCHAR, townland VARCHAR) | SELECT barony FROM table_30120619_1 WHERE townland = "Ballintaggart" |
8,501 | <question>: What is the poor law union for the Barnahely towland? <context>: CREATE TABLE table_30120619_1 (poor_law_union VARCHAR, townland VARCHAR) | SELECT poor_law_union FROM table_30120619_1 WHERE townland = "Barnahely" |
8,502 | <question>: What is the barony of the townland whose area is 150 acres? <context>: CREATE TABLE table_30120619_1 (barony VARCHAR, area__acres__ VARCHAR) | SELECT barony FROM table_30120619_1 WHERE area__acres__ = 150 |
8,503 | <question>: In which townlands is the civil parish Monkstown? <context>: CREATE TABLE table_30120619_1 (townland VARCHAR, civil_parish VARCHAR) | SELECT townland FROM table_30120619_1 WHERE civil_parish = "Monkstown" |
8,504 | <question>: Which townland has an area of 165 acres? <context>: CREATE TABLE table_30120619_1 (townland VARCHAR, area__acres__ VARCHAR) | SELECT townland FROM table_30120619_1 WHERE area__acres__ = 165 |
8,505 | <question>: Name the total number of barony for kilmore <context>: CREATE TABLE table_30120559_1 (barony VARCHAR, townland VARCHAR) | SELECT COUNT(barony) FROM table_30120559_1 WHERE townland = "Kilmore" |
8,506 | <question>: Name the poor law union for area being 332 <context>: CREATE TABLE table_30120559_1 (poor_law_union VARCHAR, area__acres__ VARCHAR) | SELECT COUNT(poor_law_union) FROM table_30120559_1 WHERE area__acres__ = 332 |
8,507 | <question>: How many townlands are there for caheragh and is larger than 270 acres? <context>: CREATE TABLE table_30121096_1 (townland VARCHAR, civil_parish VARCHAR, area__acres__ VARCHAR) | SELECT COUNT(townland) FROM table_30121096_1 WHERE civil_parish = "Caheragh" AND area__acres__ = 270 |
8,508 | <question>: Which civil parish is for the townland clooncugger? <context>: CREATE TABLE table_30121096_1 (civil_parish VARCHAR, townland VARCHAR) | SELECT civil_parish FROM table_30121096_1 WHERE townland = "Clooncugger" |
8,509 | <question>: How many poor law unions have an area of 262 acres and is in drinagh civil parish? <context>: CREATE TABLE table_30121096_1 (poor_law_union VARCHAR, area__acres__ VARCHAR, civil_parish VARCHAR) | SELECT COUNT(poor_law_union) FROM table_30121096_1 WHERE area__acres__ = 262 AND civil_parish = "Drinagh" |
8,510 | <question>: How many current account balances are associated with GDP at constant prices growth rates of 4.6? <context>: CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_constant_prices_growth_rate__percent_change_ VARCHAR) | SELECT COUNT(current_account_balance__percent_of_gdp_) FROM table_30133_1 WHERE gdp_at_constant_prices_growth_rate__percent_change_ = "4.6" |
8,511 | <question>: How many export volume of goods/services values are associated with GDP at constant prices values of 3.072? <context>: CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_constant_prices__thb_trillions_ VARCHAR) | SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_constant_prices__thb_trillions_ = "3.072" |
8,512 | <question>: How many export volume of goods and services values are associated with GDP at current prices of 161.340? <context>: CREATE TABLE table_30133_1 (export_volume_of_goods_and_services__percent_change_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR) | SELECT COUNT(export_volume_of_goods_and_services__percent_change_) FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = "161.340" |
8,513 | <question>: What is the current account balance for an export volume of goods and service value of -4.2? <context>: CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, export_volume_of_goods_and_services__percent_change_ VARCHAR) | SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE export_volume_of_goods_and_services__percent_change_ = "-4.2" |
8,514 | <question>: What is the current account balance for a GDP at current prices of 142.640? <context>: CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_current_prices__usd_billions_ VARCHAR) | SELECT current_account_balance__percent_of_gdp_ FROM table_30133_1 WHERE gdp_at_current_prices__usd_billions_ = "142.640" |
8,515 | <question>: What is the GDP at constant prices for a current account balance of 12.8? <context>: CREATE TABLE table_30133_1 (gdp_at_constant_prices__thb_trillions_ VARCHAR, current_account_balance__percent_of_gdp_ VARCHAR) | SELECT gdp_at_constant_prices__thb_trillions_ FROM table_30133_1 WHERE current_account_balance__percent_of_gdp_ = "12.8" |
8,516 | <question>: Tell me the games for total less than 4 for swimming 1968 <context>: CREATE TABLE table_name_87 (games VARCHAR, years VARCHAR, total VARCHAR, sport VARCHAR) | SELECT games FROM table_name_87 WHERE total < 4 AND sport = "swimming" AND years = "1968" |
8,517 | <question>: Tell me the total number of bronze for silver being 0 and sport of wrestling and total more than 3 <context>: CREATE TABLE table_name_16 (bronze VARCHAR, total VARCHAR, silver VARCHAR, sport VARCHAR) | SELECT COUNT(bronze) FROM table_name_16 WHERE silver = 0 AND sport = "wrestling" AND total > 3 |
8,518 | <question>: Tell me the lowest Bronze for gold of 3 in the winter for cross-country skiing and silver less than 0 <context>: CREATE TABLE table_name_56 (bronze INTEGER, silver VARCHAR, sport VARCHAR, gold VARCHAR, games VARCHAR) | SELECT MIN(bronze) FROM table_name_56 WHERE gold = 3 AND games = "winter" AND sport = "cross-country skiing" AND silver < 0 |
8,519 | <question>: What is the lowest round for an offensive guard when the overall is smaller than 150? <context>: CREATE TABLE table_name_59 (round INTEGER, overall VARCHAR, position VARCHAR) | SELECT MIN(round) FROM table_name_59 WHERE overall < 150 AND position = "offensive guard" |
8,520 | <question>: Which college was the player selected from in round 1? <context>: CREATE TABLE table_name_43 (college VARCHAR, round VARCHAR) | SELECT college FROM table_name_43 WHERE round = 1 |
8,521 | <question>: Tell me the DA for bureau chief ada <context>: CREATE TABLE table_name_22 (district_attorney VARCHAR, position VARCHAR) | SELECT district_attorney FROM table_name_22 WHERE position = "bureau chief ada" |
8,522 | <question>: Tell me the left office for enrico la loggia <context>: CREATE TABLE table_name_83 (left_office VARCHAR, minister VARCHAR) | SELECT left_office FROM table_name_83 WHERE minister = "enrico la loggia" |
8,523 | <question>: Tell me the portfolio of minister of carlo giovanardi <context>: CREATE TABLE table_name_77 (portfolio VARCHAR, minister VARCHAR) | SELECT portfolio FROM table_name_77 WHERE minister = "carlo giovanardi" |
8,524 | <question>: Tell me the left office for mirko tremaglia <context>: CREATE TABLE table_name_20 (left_office VARCHAR, minister VARCHAR) | SELECT left_office FROM table_name_20 WHERE minister = "mirko tremaglia" |
8,525 | <question>: What School/Club Team has a Player named Juan Dixon and a Position of guard? <context>: CREATE TABLE table_name_58 (school_club_team VARCHAR, position VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_58 WHERE position = "guard" AND player = "juan dixon" |
8,526 | <question>: Which Player's Position is guard and played in Toronto during the Years 2007-08? <context>: CREATE TABLE table_name_16 (player VARCHAR, position VARCHAR, years_in_toronto VARCHAR) | SELECT player FROM table_name_16 WHERE position = "guard" AND years_in_toronto = "2007-08" |
8,527 | <question>: What Player is from Argentina and whose position is a guard-forward? <context>: CREATE TABLE table_name_9 (player VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT player FROM table_name_9 WHERE position = "guard-forward" AND nationality = "argentina" |
8,528 | <question>: What School/Club Team played in Toronto during 2012? <context>: CREATE TABLE table_name_43 (school_club_team VARCHAR, years_in_toronto VARCHAR) | SELECT school_club_team FROM table_name_43 WHERE years_in_toronto = "2012" |
8,529 | <question>: What was the result of the syracuse grand prix? <context>: CREATE TABLE table_name_80 (result VARCHAR, event VARCHAR) | SELECT result FROM table_name_80 WHERE event = "syracuse grand prix" |
8,530 | <question>: What year has a result of 3 in the venue of Jarama. <context>: CREATE TABLE table_name_25 (year INTEGER, result VARCHAR, venue VARCHAR) | SELECT MIN(year) FROM table_name_25 WHERE result = "3" AND venue = "jarama" |
8,531 | <question>: Tell me the highest opponents for record of 7-3 and vikings points more than 7 <context>: CREATE TABLE table_name_97 (opponents INTEGER, record VARCHAR, vikings_points VARCHAR) | SELECT MAX(opponents) FROM table_name_97 WHERE record = "7-3" AND vikings_points > 7 |
8,532 | <question>: Tell me the most attendance for game less than 1 <context>: CREATE TABLE table_name_15 (attendance INTEGER, game INTEGER) | SELECT MAX(attendance) FROM table_name_15 WHERE game < 1 |
8,533 | <question>: Tell me the surface of 2 december 1974 <context>: CREATE TABLE table_name_58 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_58 WHERE date = "2 december 1974" |
8,534 | <question>: Name the score for moscow, ussr 15 february 1971 <context>: CREATE TABLE table_name_57 (score_in_the_final VARCHAR, location VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_57 WHERE location = "moscow, ussr" AND date = "15 february 1971" |
8,535 | <question>: Name the lowest year for 12th position <context>: CREATE TABLE table_name_4 (year INTEGER, position VARCHAR) | SELECT MIN(year) FROM table_name_4 WHERE position = "12th" |
8,536 | <question>: Tell me the competition for half marathon <context>: CREATE TABLE table_name_70 (competition VARCHAR, notes VARCHAR) | SELECT competition FROM table_name_70 WHERE notes = "half marathon" |
8,537 | <question>: Tell me the category of na director <context>: CREATE TABLE table_name_75 (category VARCHAR, director VARCHAR) | SELECT category FROM table_name_75 WHERE director = "na" |
8,538 | <question>: I want to know the highest heat rank for overall rank of t63 and time less than 25.47 <context>: CREATE TABLE table_name_88 (heat_rank INTEGER, overall_rank VARCHAR, time VARCHAR) | SELECT MAX(heat_rank) FROM table_name_88 WHERE overall_rank = "t63" AND time < 25.47 |
8,539 | <question>: Tell me the country for lane of 6 <context>: CREATE TABLE table_name_66 (country VARCHAR, lane VARCHAR) | SELECT country FROM table_name_66 WHERE lane = 6 |
8,540 | <question>: Tell me the overall rank for heat rank of 8 <context>: CREATE TABLE table_name_60 (overall_rank VARCHAR, heat_rank VARCHAR) | SELECT overall_rank FROM table_name_60 WHERE heat_rank = 8 |
8,541 | <question>: Tell me the position of chris clark <context>: CREATE TABLE table_name_8 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_8 WHERE player = "chris clark" |
8,542 | <question>: Tell me the nhl team for 74 <context>: CREATE TABLE table_name_75 (nhl_team VARCHAR, pick VARCHAR) | SELECT nhl_team FROM table_name_75 WHERE pick = "74" |
8,543 | <question>: Tell me the pick for canada centre <context>: CREATE TABLE table_name_74 (pick VARCHAR, position VARCHAR, nationality VARCHAR) | SELECT pick FROM table_name_74 WHERE position = "centre" AND nationality = "canada" |
8,544 | <question>: Tell me the format for geffen of the united states <context>: CREATE TABLE table_name_3 (format VARCHAR, label VARCHAR, region VARCHAR) | SELECT format FROM table_name_3 WHERE label = "geffen" AND region = "united states" |
8,545 | <question>: Tell me the format for worldwide region july 22, 2008 <context>: CREATE TABLE table_name_67 (format VARCHAR, region VARCHAR, date VARCHAR) | SELECT format FROM table_name_67 WHERE region = "worldwide" AND date = "july 22, 2008" |
8,546 | <question>: Tell me the label for digital download for bonus tracks version <context>: CREATE TABLE table_name_39 (label VARCHAR, format VARCHAR, edition_s_ VARCHAR) | SELECT label FROM table_name_39 WHERE format = "digital download" AND edition_s_ = "bonus tracks version" |
8,547 | <question>: Which team has a rank of 6? <context>: CREATE TABLE table_name_43 (team VARCHAR, rank VARCHAR) | SELECT team FROM table_name_43 WHERE rank = 6 |
8,548 | <question>: Name the horsepower for VIN code of h and engine for 351-2v cleveland v8 <context>: CREATE TABLE table_name_94 (horsepower VARCHAR, vin_code VARCHAR, engine VARCHAR) | SELECT horsepower FROM table_name_94 WHERE vin_code = "h" AND engine = "351-2v cleveland v8" |
8,549 | <question>: Name the horsepwer for compression ratio of 9.00:1 and carburetor of 2-barrel and engine 302-2v windsor v8 <context>: CREATE TABLE table_name_19 (horsepower VARCHAR, engine VARCHAR, compression_ratio VARCHAR, carburetor VARCHAR) | SELECT horsepower FROM table_name_19 WHERE compression_ratio = "9.00:1" AND carburetor = "2-barrel" AND engine = "302-2v windsor v8" |
8,550 | <question>: Tell me the VIN code for compression ratio of 10.50:1 <context>: CREATE TABLE table_name_7 (vin_code VARCHAR, compression_ratio VARCHAR) | SELECT vin_code FROM table_name_7 WHERE compression_ratio = "10.50:1" |
8,551 | <question>: Tell me the network for 13 january 2009 <context>: CREATE TABLE table_name_80 (network VARCHAR, premiere VARCHAR) | SELECT network FROM table_name_80 WHERE premiere = "13 january 2009" |
8,552 | <question>: Tell me the prize for belgium <context>: CREATE TABLE table_name_53 (prize VARCHAR, country_region VARCHAR) | SELECT prize FROM table_name_53 WHERE country_region = "belgium" |
8,553 | <question>: Tell me the 13 january 2009 host <context>: CREATE TABLE table_name_19 (host VARCHAR, premiere VARCHAR) | SELECT host FROM table_name_19 WHERE premiere = "13 january 2009" |
8,554 | <question>: Tell me the host for rtl-tvi <context>: CREATE TABLE table_name_6 (host VARCHAR, network VARCHAR) | SELECT host FROM table_name_6 WHERE network = "rtl-tvi" |
8,555 | <question>: I want to meet that has a time 2:15.93 <context>: CREATE TABLE table_name_92 (meet VARCHAR, time VARCHAR) | SELECT meet FROM table_name_92 WHERE time = "2:15.93" |
8,556 | <question>: Tell me the location of lithuania 12 october 2013 <context>: CREATE TABLE table_name_86 (location VARCHAR, nationality VARCHAR, date VARCHAR) | SELECT location FROM table_name_86 WHERE nationality = "lithuania" AND date = "12 october 2013" |
8,557 | <question>: Tell me the title of work for year more than 2009 <context>: CREATE TABLE table_name_17 (title_of_work VARCHAR, year INTEGER) | SELECT title_of_work FROM table_name_17 WHERE year > 2009 |
8,558 | <question>: When was there a Result of 8β0 and a Score of 1β0? <context>: CREATE TABLE table_name_48 (date VARCHAR, result VARCHAR, score VARCHAR) | SELECT date FROM table_name_48 WHERE result = "8β0" AND score = "1β0" |
8,559 | <question>: What was the result of Bridgeview, Illinois? <context>: CREATE TABLE table_name_33 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_33 WHERE venue = "bridgeview, illinois" |
8,560 | <question>: When did a Competition of friendly, and a Score of 2β1, and a Venue of philadelphia , pennsylvania occur? <context>: CREATE TABLE table_name_4 (date VARCHAR, venue VARCHAR, competition VARCHAR, score VARCHAR) | SELECT date FROM table_name_4 WHERE competition = "friendly" AND score = "2β1" AND venue = "philadelphia , pennsylvania" |
8,561 | <question>: What was the score on June 28, 2009? <context>: CREATE TABLE table_name_56 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_56 WHERE date = "june 28, 2009" |
8,562 | <question>: Tell me the nationality of pick 140 <context>: CREATE TABLE table_name_67 (nationality VARCHAR, pick VARCHAR) | SELECT nationality FROM table_name_67 WHERE pick = "140" |
8,563 | <question>: Tell me the position for pick of 146 <context>: CREATE TABLE table_name_7 (position VARCHAR, pick VARCHAR) | SELECT position FROM table_name_7 WHERE pick = "146" |
8,564 | <question>: Tell me the NHL team for mike gaffney <context>: CREATE TABLE table_name_53 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_name_53 WHERE player = "mike gaffney" |
8,565 | <question>: Tell me the nationality of pick of 153 <context>: CREATE TABLE table_name_85 (nationality VARCHAR, pick VARCHAR) | SELECT nationality FROM table_name_85 WHERE pick = "153" |
8,566 | <question>: Tell me the player for pick of 145 <context>: CREATE TABLE table_name_9 (player VARCHAR, pick VARCHAR) | SELECT player FROM table_name_9 WHERE pick = "145" |
8,567 | <question>: What tournament took place on October 11, 2013? <context>: CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_23 WHERE date = "october 11, 2013" |
8,568 | <question>: Which tournament took place on June 18, 2013? <context>: CREATE TABLE table_name_94 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_94 WHERE date = "june 18, 2013" |
8,569 | <question>: What is the average week on November 7, 1976 with an attendance less than 46,735? <context>: CREATE TABLE table_name_94 (week INTEGER, date VARCHAR, attendance VARCHAR) | SELECT AVG(week) FROM table_name_94 WHERE date = "november 7, 1976" AND attendance < 46 OFFSET 735 |
8,570 | <question>: Who is the opponent for week 5? <context>: CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_96 WHERE week = 5 |
8,571 | <question>: Tell me the highest overall rank for heat rank more than 4 and lane less than 2 <context>: CREATE TABLE table_name_68 (overall_rank INTEGER, heat_rank VARCHAR, lane VARCHAR) | SELECT MAX(overall_rank) FROM table_name_68 WHERE heat_rank > 4 AND lane < 2 |
8,572 | <question>: Who is the partner with a runner-up outcome on April 6, 1992? <context>: CREATE TABLE table_name_26 (partner VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT partner FROM table_name_26 WHERE outcome = "runner-up" AND date = "april 6, 1992" |
8,573 | <question>: What outcome occurs on a hard surface with a score of 4β6, 6β7(3)? <context>: CREATE TABLE table_name_3 (outcome VARCHAR, surface VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_3 WHERE surface = "hard" AND score = "4β6, 6β7(3)" |
8,574 | <question>: On what date did Lori McNeil play as a partner with a score of 6β7(6), 5β7? <context>: CREATE TABLE table_name_84 (date VARCHAR, partner VARCHAR, score VARCHAR) | SELECT date FROM table_name_84 WHERE partner = "lori mcneil" AND score = "6β7(6), 5β7" |
8,575 | <question>: What is the most losses that the Royals had when they had a percentage over 0.461, won over 86 games, and finished 2nd in 1953? <context>: CREATE TABLE table_name_62 (losses INTEGER, year VARCHAR, finish VARCHAR, percentage VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_62 WHERE percentage > 0.461 AND wins > 86 AND finish = "2nd" AND year = 1953 |
8,576 | <question>: Tell the opponent of eastbourne with score of 6β0, 5β7, 3β6 <context>: CREATE TABLE table_name_59 (opponent VARCHAR, tournament VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_59 WHERE tournament = "eastbourne" AND score = "6β0, 5β7, 3β6" |
8,577 | <question>: Tell me the outcome of 2β6, 1β6 <context>: CREATE TABLE table_name_40 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_40 WHERE score = "2β6, 1β6" |
8,578 | <question>: Tell me the surface for eastbourne 14 june 1999 <context>: CREATE TABLE table_name_6 (surface VARCHAR, tournament VARCHAR, date VARCHAR) | SELECT surface FROM table_name_6 WHERE tournament = "eastbourne" AND date = "14 june 1999" |
8,579 | <question>: Tell me the category for result of won and year more than 2009 <context>: CREATE TABLE table_name_77 (category VARCHAR, result VARCHAR, year VARCHAR) | SELECT category FROM table_name_77 WHERE result = "won" AND year > 2009 |
8,580 | <question>: Tell me the nominated work larger than 2011 <context>: CREATE TABLE table_name_54 (nominated_work VARCHAR, year INTEGER) | SELECT nominated_work FROM table_name_54 WHERE year > 2011 |
8,581 | <question>: Tell me the result for primetime emmy awards <context>: CREATE TABLE table_name_94 (result VARCHAR, association VARCHAR) | SELECT result FROM table_name_94 WHERE association = "primetime emmy awards" |
8,582 | <question>: What competition was held 1 March 1909? <context>: CREATE TABLE table_name_31 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_31 WHERE date = "1 march 1909" |
8,583 | <question>: Tell me the total number of gold for total less than 1 <context>: CREATE TABLE table_name_62 (gold VARCHAR, total INTEGER) | SELECT COUNT(gold) FROM table_name_62 WHERE total < 1 |
8,584 | <question>: Tell me the model for total production of 1347 <context>: CREATE TABLE table_name_30 (model VARCHAR, total_production VARCHAR) | SELECT model FROM table_name_30 WHERE total_production = 1347 |
8,585 | <question>: What is the total amount of Gold from guatemala and silver smaller than 0? <context>: CREATE TABLE table_name_88 (gold INTEGER, nation VARCHAR, silver VARCHAR) | SELECT SUM(gold) FROM table_name_88 WHERE nation = "guatemala" AND silver < 0 |
8,586 | <question>: Tell me the event for 2012 london games <context>: CREATE TABLE table_name_70 (event VARCHAR, games VARCHAR) | SELECT event FROM table_name_70 WHERE games = "2012 london" |
8,587 | <question>: Tell me the games for men's 5000 metres <context>: CREATE TABLE table_name_18 (games VARCHAR, event VARCHAR) | SELECT games FROM table_name_18 WHERE event = "men's 5000 metres" |
8,588 | <question>: When did the w 20-19 happen? <context>: CREATE TABLE table_name_72 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_72 WHERE result = "w 20-19" |
8,589 | <question>: What was the attendance of the w 28-13 game? <context>: CREATE TABLE table_name_61 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_61 WHERE result = "w 28-13" |
8,590 | <question>: Tell me the voting turnout for 1985 general elections <context>: CREATE TABLE table_name_91 (voting_turnout VARCHAR, general_elections VARCHAR) | SELECT voting_turnout FROM table_name_91 WHERE general_elections = 1985 |
8,591 | <question>: What is total number of wins for England? <context>: CREATE TABLE table_name_59 (total INTEGER, nation VARCHAR) | SELECT SUM(total) FROM table_name_59 WHERE nation = "england" |
8,592 | <question>: The Soviet Union has won more than 2 Silver, but how many Bronzes? <context>: CREATE TABLE table_name_44 (bronze VARCHAR, nation VARCHAR, silver VARCHAR) | SELECT COUNT(bronze) FROM table_name_44 WHERE nation = "soviet union" AND silver > 2 |
8,593 | <question>: Which Alliance Constituency has Seamus Close, position 2 and an election smaller than 1997? <context>: CREATE TABLE table_name_41 (constituency VARCHAR, candidate VARCHAR, position VARCHAR, party VARCHAR, election VARCHAR) | SELECT constituency FROM table_name_41 WHERE party = "alliance" AND election < 1997 AND position = 2 AND candidate = "seamus close" |
8,594 | <question>: I want the average for evening gown of 7.52 and swimsuit larger than 7.78 <context>: CREATE TABLE table_name_54 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR) | SELECT AVG(average) FROM table_name_54 WHERE evening_gown = 7.52 AND swimsuit > 7.78 |
8,595 | <question>: Tell me the lowest interview for oklahoma and swimsuit less than 8.8 <context>: CREATE TABLE table_name_46 (interview INTEGER, state VARCHAR, swimsuit VARCHAR) | SELECT MIN(interview) FROM table_name_46 WHERE state = "oklahoma" AND swimsuit < 8.8 |
8,596 | <question>: Tell me the sum of evening gown for average of 9.06 and swimsuit less than 8.76 <context>: CREATE TABLE table_name_53 (evening_gown INTEGER, average VARCHAR, swimsuit VARCHAR) | SELECT SUM(evening_gown) FROM table_name_53 WHERE average = 9.06 AND swimsuit < 8.76 |
8,597 | <question>: Tell me the highest interview for north carolina and evening gown more than 7.68 <context>: CREATE TABLE table_name_19 (interview INTEGER, state VARCHAR, evening_gown VARCHAR) | SELECT MAX(interview) FROM table_name_19 WHERE state = "north carolina" AND evening_gown > 7.68 |
8,598 | <question>: Which NCAA Tournament Appearances have Conference Titles that are larger than 0, NCAA Titles of 0, and were coached by Lou Watson? <context>: CREATE TABLE table_name_3 (ncaa_tourn_appearances VARCHAR, coach VARCHAR, conference_titles VARCHAR, ncaa_titles VARCHAR) | SELECT ncaa_tourn_appearances FROM table_name_3 WHERE conference_titles > "0" AND ncaa_titles = "0" AND coach = "lou watson" |
8,599 | <question>: Tell me the category for 2012 and drama league award <context>: CREATE TABLE table_name_92 (category VARCHAR, year VARCHAR, award VARCHAR) | SELECT category FROM table_name_92 WHERE year = 2012 AND award = "drama league award" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.