question
stringlengths 12
243
| answer
stringlengths 18
557
| context
stringlengths 27
489
|
---|---|---|
Name the time for #1 alabama | SELECT time FROM table_26842217_10 WHERE visiting_team = "#1 Alabama" | CREATE TABLE table_26842217_10 (time VARCHAR, visiting_team VARCHAR) |
Who is the successor when florida territory at-large is the district? | SELECT successor FROM table_225100_4 WHERE district = "Florida Territory At-large" | CREATE TABLE table_225100_4 (successor VARCHAR, district VARCHAR) |
What teams had 9 in the top 5 and 1 wins? | SELECT team_s_ FROM table_1012730_2 WHERE top_5 = 9 AND wins = 1 | CREATE TABLE table_1012730_2 (team_s_ VARCHAR, top_5 VARCHAR, wins VARCHAR) |
Which Foreign population has a Population (2004) larger than 234733? | SELECT AVG(foreign_population) FROM table_name_26 WHERE population__2004_ > 234733 | CREATE TABLE table_name_26 (foreign_population INTEGER, population__2004_ INTEGER) |
what is the points against when drawn is drawn? | SELECT points_against FROM table_name_96 WHERE "drawn" = "drawn" | CREATE TABLE table_name_96 (points_against VARCHAR) |
What is the highest top-25 with more than 9 top-10 but less than 29 events? | SELECT MAX(top_25) FROM table_name_17 WHERE top_10 > 9 AND events < 29 | CREATE TABLE table_name_17 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR) |
What is the date for US catalog CK 9942? | SELECT date FROM table_name_4 WHERE country = "us" AND catalog = "ck 9942" | CREATE TABLE table_name_4 (date VARCHAR, country VARCHAR, catalog VARCHAR) |
What is Odjidja-Ofoe's transfer fee? | SELECT transfer_fee FROM table_name_82 WHERE name = "odjidja-ofoe" | CREATE TABLE table_name_82 (transfer_fee VARCHAR, name VARCHAR) |
Which Date has a Record of 21–10? | SELECT date FROM table_name_43 WHERE record = "21–10" | CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR) |
How many materials are there for output power of ~0.1 pw per cycle (calculated)? | SELECT COUNT(material) FROM table_30057479_1 WHERE output_power = "~0.1 pW per cycle (calculated)" | CREATE TABLE table_30057479_1 (material VARCHAR, output_power VARCHAR) |
Type of phase ii has what gross mw? | SELECT gross_mw FROM table_name_94 WHERE type = "phase ii" | CREATE TABLE table_name_94 (gross_mw VARCHAR, type VARCHAR) |
What is the lowest number of laps for kyle petty with under 118 points? | SELECT MIN(laps) FROM table_name_99 WHERE points < 118 AND driver = "kyle petty" | CREATE TABLE table_name_99 (laps INTEGER, points VARCHAR, driver VARCHAR) |
Which department has Guy-Dominique Kennel as president since 2008? | SELECT départment__or_collectivity_ FROM table_name_54 WHERE since = 2008 AND président = "guy-dominique kennel" | CREATE TABLE table_name_54 (départment__or_collectivity_ VARCHAR, since VARCHAR, président VARCHAR) |
With a subjunctive of du måchast what is the imperative? | SELECT imperative FROM table_name_37 WHERE subjunctive = "du måchast" | CREATE TABLE table_name_37 (imperative VARCHAR, subjunctive VARCHAR) |
Which match was played on April 2, 2006? | SELECT competition FROM table_name_78 WHERE date = "april 2, 2006" | CREATE TABLE table_name_78 (competition VARCHAR, date VARCHAR) |
What type of object has an NGC number higher than 2090 and has a right ascension (J2000) of 05h52m19s? | SELECT object_type FROM table_name_61 WHERE ngc_number > 2090 AND right_ascension___j2000__ = "05h52m19s" | CREATE TABLE table_name_61 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR) |
What number pick was the player from HIFK Helsinki (Finland)? | SELECT pick__number FROM table_2679061_4 WHERE college_junior_club_team = "HIFK Helsinki (Finland)" | CREATE TABLE table_2679061_4 (pick__number VARCHAR, college_junior_club_team VARCHAR) |
What is the average for games Lost where the Points are 25 and games Played are more than 18? | SELECT AVG(lost) FROM table_name_28 WHERE points = 25 AND played > 18 | CREATE TABLE table_name_28 (lost INTEGER, points VARCHAR, played VARCHAR) |
What is the Player that has a Place of t2, and a Score of 74-70-68=212? | SELECT player FROM table_name_64 WHERE place = "t2" AND score = 74 - 70 - 68 = 212 | CREATE TABLE table_name_64 (player VARCHAR, place VARCHAR, score VARCHAR) |
What venue did the parntership of shoaib malik / misbah-ul-haq occur? | SELECT venue FROM table_name_79 WHERE partnerships = "shoaib malik / misbah-ul-haq" | CREATE TABLE table_name_79 (venue VARCHAR, partnerships VARCHAR) |
How many current account balances are associated with GDP at constant prices growth rates of 4.6? | SELECT COUNT(current_account_balance__percent_of_gdp_) FROM table_30133_1 WHERE gdp_at_constant_prices_growth_rate__percent_change_ = "4.6" | CREATE TABLE table_30133_1 (current_account_balance__percent_of_gdp_ VARCHAR, gdp_at_constant_prices_growth_rate__percent_change_ VARCHAR) |
Which campus has the most faculties in year 2003? | SELECT T1.campus FROM campuses AS T1 JOIN faculty AS T2 ON T1.id = T2.campus WHERE T2.year = 2003 ORDER BY T2.faculty DESC LIMIT 1 | CREATE TABLE faculty (campus VARCHAR, year VARCHAR, faculty VARCHAR); CREATE TABLE campuses (campus VARCHAR, id VARCHAR) |
What location had a year of 1971 and a city of Tokyo? | SELECT location FROM table_name_88 WHERE year = 1971 AND city = "tokyo" | CREATE TABLE table_name_88 (location VARCHAR, year VARCHAR, city VARCHAR) |
What is the highest top-10 that has a u.s. open for the tournament, and a top-25 greater than 12? | SELECT MAX(top_10) FROM table_name_49 WHERE tournament = "u.s. open" AND top_25 > 12 | CREATE TABLE table_name_49 (top_10 INTEGER, tournament VARCHAR, top_25 VARCHAR) |
what is the sweet for voice actor saki fujita? | SELECT sweet FROM table_26615633_3 WHERE voice_actor = "Saki Fujita" | CREATE TABLE table_26615633_3 (sweet VARCHAR, voice_actor VARCHAR) |
Who had a date of 19-02-2003? | SELECT player FROM table_name_23 WHERE date = "19-02-2003" | CREATE TABLE table_name_23 (player VARCHAR, date VARCHAR) |
I want the constructor for winning driver of jim clark, pole position of graham hill and dutch grand prix | SELECT constructor FROM table_name_34 WHERE winning_driver = "jim clark" AND pole_position = "graham hill" AND race = "dutch grand prix" | CREATE TABLE table_name_34 (constructor VARCHAR, race VARCHAR, winning_driver VARCHAR, pole_position VARCHAR) |
how many incumbent with first elected being 1932 | SELECT COUNT(incumbent) FROM table_1342331_5 WHERE first_elected = 1932 | CREATE TABLE table_1342331_5 (incumbent VARCHAR, first_elected VARCHAR) |
What is the total number of Year, when Result is "Nominated", when Category is "Outstanding Actor in a Musical", and when Award is "Drama Desk Award"? | SELECT COUNT(year) FROM table_name_68 WHERE result = "nominated" AND category = "outstanding actor in a musical" AND award = "drama desk award" | CREATE TABLE table_name_68 (year VARCHAR, award VARCHAR, result VARCHAR, category VARCHAR) |
What is the lowest term from the 2007 election with the position of chairperson? | SELECT MIN(term) FROM table_name_94 WHERE elected = 2007 AND position = "chairperson" | CREATE TABLE table_name_94 (term INTEGER, elected VARCHAR, position VARCHAR) |
What date was the game with the away team york city? | SELECT date FROM table_name_56 WHERE away_team = "york city" | CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR) |
What is the points total number if the assists is 7? | SELECT COUNT(points) FROM table_23346303_5 WHERE assists = 7 | CREATE TABLE table_23346303_5 (points VARCHAR, assists VARCHAR) |
What nationality is Bill Robinzine? | SELECT nationality FROM table_name_69 WHERE player = "bill robinzine" | CREATE TABLE table_name_69 (nationality VARCHAR, player VARCHAR) |
What artist had a mintage of 41,828 before year 2002? | SELECT artist FROM table_name_81 WHERE year < 2002 AND mintage = "41,828" | CREATE TABLE table_name_81 (artist VARCHAR, year VARCHAR, mintage VARCHAR) |
What city had a rank before 3 and primary carrier JetBlue Airways? | SELECT city FROM table_name_78 WHERE rank < 3 AND carriers = "jetblue airways" | CREATE TABLE table_name_78 (city VARCHAR, rank VARCHAR, carriers VARCHAR) |
What Season, when Country is China, when Team is Dalian Shide, and when Goals are 0? | SELECT season FROM table_name_48 WHERE country = "china" AND team = "dalian shide" AND goals = 0 | CREATE TABLE table_name_48 (season VARCHAR, goals VARCHAR, country VARCHAR, team VARCHAR) |
What was the score against andrei pavel? | SELECT score FROM table_name_6 WHERE opponent = "andrei pavel" | CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR) |
What is Date, when Margin Of Victory is 4 Strokes? | SELECT date FROM table_name_1 WHERE margin_of_victory = "4 strokes" | CREATE TABLE table_name_1 (date VARCHAR, margin_of_victory VARCHAR) |
What Kerry number does Taylor county have with more than 65 others#? | SELECT COUNT(kerry_number) FROM table_name_64 WHERE county = "taylor" AND others_number > 65 | CREATE TABLE table_name_64 (kerry_number VARCHAR, county VARCHAR, others_number VARCHAR) |
Who lost to moyer (9–4)? | SELECT opponent FROM table_name_26 WHERE loss = "moyer (9–4)" | CREATE TABLE table_name_26 (opponent VARCHAR, loss VARCHAR) |
where cfl team is edmonton (2) what are all the position | SELECT position FROM table_26996293_2 WHERE cfl_team = "Edmonton (2)" | CREATE TABLE table_26996293_2 (position VARCHAR, cfl_team VARCHAR) |
Who had the high points when they played in Philips Arena 14,413? | SELECT high_points FROM table_name_48 WHERE location_attendance = "philips arena 14,413" | CREATE TABLE table_name_48 (high_points VARCHAR, location_attendance VARCHAR) |
What was the score for the game in which Al-Qadsia was Team 2? | SELECT score FROM table_name_55 WHERE team_2 = "al-qadsia" | CREATE TABLE table_name_55 (score VARCHAR, team_2 VARCHAR) |
How many different net run rates did the team with 19 total points have? | SELECT COUNT(net_run_rate) FROM table_25368177_1 WHERE total_points = 19 | CREATE TABLE table_25368177_1 (net_run_rate VARCHAR, total_points VARCHAR) |
Who was in the three darts challenge that aired on 10 may 2010? | SELECT three_darts_challenge FROM table_26733129_1 WHERE air_date = "10 May 2010" | CREATE TABLE table_26733129_1 (three_darts_challenge VARCHAR, air_date VARCHAR) |
How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7? | SELECT COUNT(athlete) FROM table_17289604_38 WHERE round_of_64 = "Llagostera Vives ( ESP ) L 6–2, 3–6, 5–7" | CREATE TABLE table_17289604_38 (athlete VARCHAR, round_of_64 VARCHAR) |
What is the sum of Game on february 28? | SELECT SUM(game) FROM table_name_52 WHERE date = "february 28" | CREATE TABLE table_name_52 (game INTEGER, date VARCHAR) |
What country did Raymond Floyd play for? | SELECT country FROM table_name_9 WHERE player = "raymond floyd" | CREATE TABLE table_name_9 (country VARCHAR, player VARCHAR) |
Name the us viewers directed by christine moore | SELECT us_viewers__millions_ FROM table_26914076_2 WHERE directed_by = "Christine Moore" | CREATE TABLE table_26914076_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR) |
What is the paper type for the date of issue July 8? | SELECT paper_type FROM table_25468520_1 WHERE date_of_issue = "July 8" | CREATE TABLE table_25468520_1 (paper_type VARCHAR, date_of_issue VARCHAR) |
What was the date during week 13? | SELECT date FROM table_name_70 WHERE week = 13 | CREATE TABLE table_name_70 (date VARCHAR, week VARCHAR) |
Location of the school with the nickname Mountaineers | SELECT location FROM table_16432543_1 WHERE nickname = "Mountaineers" | CREATE TABLE table_16432543_1 (location VARCHAR, nickname VARCHAR) |
Which date has a Record of 41-46? | SELECT date FROM table_name_55 WHERE record = "41-46" | CREATE TABLE table_name_55 (date VARCHAR, record VARCHAR) |
What is the highest ff when solo is 56? | SELECT MAX(ff) FROM table_26176081_29 WHERE solo = 56 | CREATE TABLE table_26176081_29 (ff INTEGER, solo VARCHAR) |
Who was the player with a transfer window of summer and was moving to Kortrijk? | SELECT name FROM table_name_36 WHERE transfer_window = "summer" AND moving_to = "kortrijk" | CREATE TABLE table_name_36 (name VARCHAR, transfer_window VARCHAR, moving_to VARCHAR) |
When vince carter (24) has the highest points how many teams are there? | SELECT COUNT(team) FROM table_23249053_11 WHERE high_points = "Vince Carter (24)" | CREATE TABLE table_23249053_11 (team VARCHAR, high_points VARCHAR) |
When batavo is the main sponsor and olympikus is the kit manufacturer who are the minor sponsors? | SELECT minor_sponsors FROM table_187239_1 WHERE kit_manufacturer = "Olympikus" AND main_sponsor = "Batavo" | CREATE TABLE table_187239_1 (minor_sponsors VARCHAR, kit_manufacturer VARCHAR, main_sponsor VARCHAR) |
What is the lowest number of points of the team with 2 losses and a lower than 1 position? | SELECT MIN(points) FROM table_name_73 WHERE losses = 2 AND position > 1 | CREATE TABLE table_name_73 (points INTEGER, losses VARCHAR, position VARCHAR) |
What is To par, when Margin of Victory is "2 Strokes", and when Tournament is "Women's British Open"? | SELECT to_par FROM table_name_98 WHERE margin_of_victory = "2 strokes" AND tournament = "women's british open" | CREATE TABLE table_name_98 (to_par VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) |
What is the total number of acres at Sai Tso Wan, opening before 1978? | SELECT COUNT(acres) FROM table_name_29 WHERE landfill = "sai tso wan" AND opened < 1978 | CREATE TABLE table_name_29 (acres VARCHAR, landfill VARCHAR, opened VARCHAR) |
what's the electorate where election date is 16 cannot handle non-empty timestamp argument! | SELECT electorate FROM table_1193568_1 WHERE election_date = "16 Cannot handle non-empty timestamp argument!" | CREATE TABLE table_1193568_1 (electorate VARCHAR, election_date VARCHAR) |
Which GDP per capita (US$) (2004) is the highest one that has an Area (km²) larger than 148825.6, and a State of roraima? | SELECT MAX(gdp_per_capita__us) AS $___2004_ FROM table_name_37 WHERE area__km²_ > 148825.6 AND state = "roraima" | CREATE TABLE table_name_37 (gdp_per_capita__us INTEGER, area__km²_ VARCHAR, state VARCHAR) |
What label is after 2004? | SELECT label FROM table_name_24 WHERE year > 2004 | CREATE TABLE table_name_24 (label VARCHAR, year INTEGER) |
Name the opponent for black knights points 27 | SELECT opponent FROM table_21091145_1 WHERE black_knights_points = 27 | CREATE TABLE table_21091145_1 (opponent VARCHAR, black_knights_points VARCHAR) |
How many goals have 28 as the points, and matches greater than 11? | SELECT COUNT(goals) FROM table_name_56 WHERE points = 28 AND matches > 11 | CREATE TABLE table_name_56 (goals VARCHAR, points VARCHAR, matches VARCHAR) |
What is the traditional form for 宁陵县? | SELECT traditional FROM table_2135222_2 WHERE simplified = "宁陵县" | CREATE TABLE table_2135222_2 (traditional VARCHAR, simplified VARCHAR) |
What is the home port of m40? | SELECT home_port FROM table_name_62 WHERE pennant = "m40" | CREATE TABLE table_name_62 (home_port VARCHAR, pennant VARCHAR) |
Which Name has an Intra-molecular structure of no, and a Link of webserver, and a Comparative of no? | SELECT name FROM table_name_63 WHERE intra_molecular_structure = "no" AND link = "webserver" AND comparative = "no" | CREATE TABLE table_name_63 (name VARCHAR, comparative VARCHAR, intra_molecular_structure VARCHAR, link VARCHAR) |
which regimen was in the arkansas county | SELECT regiment FROM table_29458735_5 WHERE county = "Arkansas" | CREATE TABLE table_29458735_5 (regiment VARCHAR, county VARCHAR) |
What were the scores on September 11, 2006? | SELECT score FROM table_name_95 WHERE date = "september 11, 2006" | CREATE TABLE table_name_95 (score VARCHAR, date VARCHAR) |
Which mean rank had a silver number smaller than 0? | SELECT AVG(rank) FROM table_name_60 WHERE silver < 0 | CREATE TABLE table_name_60 (rank INTEGER, silver INTEGER) |
What is the district for the party federalist and the candidates are william craik (f) 51.0% benjamin edwards 49.0%? | SELECT district FROM table_2668416_7 WHERE party = "Federalist" AND candidates = "William Craik (F) 51.0% Benjamin Edwards 49.0%" | CREATE TABLE table_2668416_7 (district VARCHAR, party VARCHAR, candidates VARCHAR) |
Find the name of amenities of the dorm where the student with last name Smith is living in. | SELECT T3.amenity_name FROM dorm AS T1 JOIN has_amenity AS T2 ON T1.dormid = T2.dormid JOIN dorm_amenity AS T3 ON T2.amenid = T3.amenid JOIN lives_in AS T4 ON T4.dormid = T1.dormid JOIN student AS T5 ON T5.stuid = T4.stuid WHERE T5.lname = 'Smith' | CREATE TABLE student (stuid VARCHAR, lname VARCHAR); CREATE TABLE dorm (dormid VARCHAR); CREATE TABLE lives_in (dormid VARCHAR, stuid VARCHAR); CREATE TABLE has_amenity (dormid VARCHAR, amenid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR) |
Name the school/club team for kevin ollie | SELECT school_club_team FROM table_15621965_14 WHERE player = "Kevin Ollie" | CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR) |
What nationality is listed when the college/junior/club team is oshawa generals (ohl)? | SELECT nationality FROM table_2850912_7 WHERE college_junior_club_team = "Oshawa Generals (OHL)" | CREATE TABLE table_2850912_7 (nationality VARCHAR, college_junior_club_team VARCHAR) |
What is the call sign of the station with the frequency of 90.3mhz | SELECT callsign FROM table_17487395_1 WHERE frequency = "90.3MHz" | CREATE TABLE table_17487395_1 (callsign VARCHAR, frequency VARCHAR) |
Which date had 67,472 in attendance? | SELECT date FROM table_name_73 WHERE attendance = "67,472" | CREATE TABLE table_name_73 (date VARCHAR, attendance VARCHAR) |
What was the final score of the game on November 17? | SELECT final_score FROM table_name_33 WHERE date = "november 17" | CREATE TABLE table_name_33 (final_score VARCHAR, date VARCHAR) |
Which Games is the highest one that has a Drawn smaller than 0? | SELECT MAX(games) FROM table_name_26 WHERE drawn < 0 | CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER) |
What's the average crowd size when the Home team is melbourne? | SELECT AVG(crowd) FROM table_name_48 WHERE home_team = "melbourne" | CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR) |
What's the production time with more than 2.737 built and a 280s model? | SELECT production_time FROM table_name_59 WHERE number_built > 2.737 AND model = "280s" | CREATE TABLE table_name_59 (production_time VARCHAR, number_built VARCHAR, model VARCHAR) |
What is the lowest pick for the Buffalo Bills? | SELECT MIN(pick) FROM table_name_60 WHERE team = "buffalo bills" | CREATE TABLE table_name_60 (pick INTEGER, team VARCHAR) |
What is the largest number of DVDs? | SELECT MAX(dvd_no) FROM table_1467951_4 | CREATE TABLE table_1467951_4 (dvd_no INTEGER) |
What is the most current year that had a BB CW of 78? | SELECT MAX(year) FROM table_name_8 WHERE bb_cw = "78" | CREATE TABLE table_name_8 (year INTEGER, bb_cw VARCHAR) |
When North Melbourne played as the away team, what was the crowd numbers? | SELECT crowd FROM table_name_56 WHERE away_team = "north melbourne" | CREATE TABLE table_name_56 (crowd VARCHAR, away_team VARCHAR) |
Name the republican steve sauerberg for august 12, 2008 | SELECT republican AS :_steve_sauerberg FROM table_16751596_2 WHERE dates_administered = "August 12, 2008" | CREATE TABLE table_16751596_2 (republican VARCHAR, dates_administered VARCHAR) |
How many tackles for the player with over 0 fumble recovries and 0 forced fumbles? | SELECT COUNT(total) FROM table_name_96 WHERE fumble_rec > 0 AND fumble_force = 0 | CREATE TABLE table_name_96 (total VARCHAR, fumble_rec VARCHAR, fumble_force VARCHAR) |
What is the location before game 44, and a 20-16 record? | SELECT location FROM table_name_10 WHERE game < 44 AND record = "20-16" | CREATE TABLE table_name_10 (location VARCHAR, game VARCHAR, record VARCHAR) |
What was the final score of the Friendly Competition in Manama, Bahrain? | SELECT score FROM table_name_48 WHERE venue = "manama, bahrain" AND competition = "friendly" | CREATE TABLE table_name_48 (score VARCHAR, venue VARCHAR, competition VARCHAR) |
Record of 15-12-4, and a Game larger than 31 involves what highest December? | SELECT MAX(december) FROM table_name_68 WHERE record = "15-12-4" AND game > 31 | CREATE TABLE table_name_68 (december INTEGER, record VARCHAR, game VARCHAR) |
When did the United Kingdom format a stereo LP? | SELECT date FROM table_name_29 WHERE region = "united kingdom" AND format = "stereo lp" | CREATE TABLE table_name_29 (date VARCHAR, region VARCHAR, format VARCHAR) |
Name the least december for hsbc arena/18,017 | SELECT MIN(december) FROM table_27537870_5 WHERE location_attendance = "HSBC Arena/18,017" | CREATE TABLE table_27537870_5 (december INTEGER, location_attendance VARCHAR) |
Which Reservoir capacity has an Impounded body of water of tumut two pondage? | SELECT reservoir_capacity FROM table_name_41 WHERE impounded_body_of_water = "tumut two pondage" | CREATE TABLE table_name_41 (reservoir_capacity VARCHAR, impounded_body_of_water VARCHAR) |
How many asian rank have 1 as a mideast rank? | SELECT COUNT(rank_asia) FROM table_2248784_4 WHERE rank_mideast = 1 | CREATE TABLE table_2248784_4 (rank_asia VARCHAR, rank_mideast VARCHAR) |
What is top speed of a petrol engine at ps (kw; bhp)@5250-6250? | SELECT top_speed FROM table_21154679_1 WHERE max_power = "PS (kW; bhp)@5250-6250" | CREATE TABLE table_21154679_1 (top_speed VARCHAR, max_power VARCHAR) |
Which entrant has a year after 1955? | SELECT entrant FROM table_name_59 WHERE year > 1955 | CREATE TABLE table_name_59 (entrant VARCHAR, year INTEGER) |
What are the lengths of the models that are mm (in) tall? | SELECT length FROM table_1773707_2 WHERE height = "mm (in)" | CREATE TABLE table_1773707_2 (length VARCHAR, height VARCHAR) |
When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have? | SELECT bob_dole FROM table_name_67 WHERE george_hw_bush = "81%" AND pat_robertson = "9%" | CREATE TABLE table_name_67 (bob_dole VARCHAR, george_hw_bush VARCHAR, pat_robertson VARCHAR) |
List the names of aircrafts and the number of times it won matches. | SELECT T1.Aircraft, COUNT(*) FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft | CREATE TABLE MATCH (Winning_Aircraft VARCHAR); CREATE TABLE aircraft (Aircraft VARCHAR, Aircraft_ID VARCHAR) |
Who was the home team that played against Armthorpe Welfare? | SELECT home_team FROM table_name_51 WHERE away_team = "armthorpe welfare" | CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR) |
Subsets and Splits