question
stringlengths 17
201
| answer
stringlengths 21
400
| context
stringlengths 32
286
|
---|---|---|
What is the result/score for the match report recap on week 14? | SELECT result_score FROM table_name_25 WHERE match_report = "recap" AND week = 14 | CREATE TABLE table_name_25 (result_score VARCHAR, match_report VARCHAR, week VARCHAR) |
Name the least rank subcontinent for bangladesh | SELECT MIN(rank_subcontinent) FROM table_2248784_3 WHERE country = "Bangladesh" | CREATE TABLE table_2248784_3 (rank_subcontinent INTEGER, country VARCHAR) |
What is the height for rank greater than 10 in Tameer Tower? | SELECT height_m__ft_ FROM table_name_77 WHERE rank > 10 AND name = "tameer tower" | CREATE TABLE table_name_77 (height_m__ft_ VARCHAR, rank VARCHAR, name VARCHAR) |
In what round was the loss at ufc 118? | SELECT round FROM table_name_92 WHERE res = "loss" AND event = "ufc 118" | CREATE TABLE table_name_92 (round VARCHAR, res VARCHAR, event VARCHAR) |
What chassis did Gordon Johncock use with his cosworth engine? | SELECT chassis FROM table_name_73 WHERE engine = "cosworth" AND drivers = "gordon johncock" | CREATE TABLE table_name_73 (chassis VARCHAR, engine VARCHAR, drivers VARCHAR) |
Which Visitor has a Score of 0-4? | SELECT visitor FROM table_name_78 WHERE score = "0-4" | CREATE TABLE table_name_78 (visitor VARCHAR, score VARCHAR) |
What was the score of the game on September 14, 2008? | SELECT result FROM table_name_88 WHERE date = "september 14, 2008" | CREATE TABLE table_name_88 (result VARCHAR, date VARCHAR) |
What were the last 5 meetings when Columbia was mu, 4-2? | SELECT last_5_meetings FROM table_name_6 WHERE at_columbia = "mu, 4-2" | CREATE TABLE table_name_6 (last_5_meetings VARCHAR, at_columbia VARCHAR) |
In how many district has a politician took office on 1844-10-14? | SELECT district FROM table_26362472_1 WHERE took_office = "1844-10-14" | CREATE TABLE table_26362472_1 (district VARCHAR, took_office VARCHAR) |
What is the Away team when Arsenal is the Home team? | SELECT away_team FROM table_name_93 WHERE home_team = "arsenal" | CREATE TABLE table_name_93 (away_team VARCHAR, home_team VARCHAR) |
Who is the Cincinnati College player? | SELECT player FROM table_name_71 WHERE college = "cincinnati" | CREATE TABLE table_name_71 (player VARCHAR, college VARCHAR) |
What country is Paul Stankowski from? | SELECT country FROM table_name_21 WHERE player = "paul stankowski" | CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR) |
What is the 2003 value with 1r in 2009 at the Australian Open? | SELECT 2003 FROM table_name_16 WHERE 2009 = "1r" AND tournament = "australian open" | CREATE TABLE table_name_16 (tournament VARCHAR) |
What was the final score when the player was an e to par? | SELECT score FROM table_name_97 WHERE to_par = "e" | CREATE TABLE table_name_97 (score VARCHAR, to_par VARCHAR) |
What is the crowd total for glenferrie oval? | SELECT COUNT(crowd) FROM table_name_77 WHERE venue = "glenferrie oval" | CREATE TABLE table_name_77 (crowd VARCHAR, venue VARCHAR) |
What format has the call sign DZFE? | SELECT format FROM table_name_42 WHERE call_sign = "dzfe" | CREATE TABLE table_name_42 (format VARCHAR, call_sign VARCHAR) |
Which Score has a Place of t1, and a Player of hubert green? | SELECT AVG(score) FROM table_name_35 WHERE place = "t1" AND player = "hubert green" | CREATE TABLE table_name_35 (score INTEGER, place VARCHAR, player VARCHAR) |
What team played against Al-Ismaily (team 1)? | SELECT team_2 FROM table_name_79 WHERE team_1 = "al-ismaily" | CREATE TABLE table_name_79 (team_2 VARCHAR, team_1 VARCHAR) |
Which opponent was played at Forbes Field after week 4? | SELECT opponent FROM table_name_76 WHERE game_site = "forbes field" AND week > 4 | CREATE TABLE table_name_76 (opponent VARCHAR, game_site VARCHAR, week VARCHAR) |
What is the fixed charge for the user who had a tariff of 11.30? | SELECT fixed_charge___rs__kwh_ FROM table_25479607_3 WHERE tariff___rs__kwh_ = "11.30" | CREATE TABLE table_25479607_3 (fixed_charge___rs__kwh_ VARCHAR, tariff___rs__kwh_ VARCHAR) |
What is the listed year that has a rank smaller than 8 and moving from Olympiacos? | SELECT year FROM table_name_64 WHERE rank < 8 AND moving_from = "olympiacos" | CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR, moving_from VARCHAR) |
What is the most recent year that China won a bronze? | SELECT MAX(year) FROM table_name_77 WHERE bronze = "china" | CREATE TABLE table_name_77 (year INTEGER, bronze VARCHAR) |
What is the launch site of the satellite with a 2003-041a COSPAR ID? | SELECT launch_site FROM table_name_71 WHERE cospar_id_satcat_β = "2003-041a" | CREATE TABLE table_name_71 (launch_site VARCHAR, cospar_id_satcat_β VARCHAR) |
What is the target market for the station on 97.9 fm? | SELECT target_city__market FROM table_134987_3 WHERE frequency = "97.9 FM" | CREATE TABLE table_134987_3 (target_city__market VARCHAR, frequency VARCHAR) |
What is the average number of bronze of the nation with more than 1 gold and 1 silver medal? | SELECT AVG(bronze) FROM table_name_96 WHERE gold > 1 AND silver = 1 | CREATE TABLE table_name_96 (bronze INTEGER, gold VARCHAR, silver VARCHAR) |
What is the latest year? | SELECT MAX(year) FROM table_2199290_1 | CREATE TABLE table_2199290_1 (year INTEGER) |
What is Run 3, when Team is United States (USA) USA I? | SELECT run_3 FROM table_name_73 WHERE team = "united states (usa) usa i" | CREATE TABLE table_name_73 (run_3 VARCHAR, team VARCHAR) |
What Torque has a Power of HP (KW)? | SELECT torque FROM table_name_21 WHERE power = "hp (kw)" | CREATE TABLE table_name_21 (torque VARCHAR, power VARCHAR) |
How many Gold medals for the Nations with 6 or more Bronze medals and 18 or more Silver? | SELECT AVG(gold) FROM table_name_73 WHERE bronze > 6 AND silver > 18 | CREATE TABLE table_name_73 (gold INTEGER, bronze VARCHAR, silver VARCHAR) |
Where was the game played when their record was 9-1-0? | SELECT location FROM table_name_10 WHERE record = "9-1-0" | CREATE TABLE table_name_10 (location VARCHAR, record VARCHAR) |
What were the investment earnings in the year that State and Federal taxes were $13,999,169? | SELECT investment_earnings FROM table_name_26 WHERE state_ & _federal = "13,999,169" | CREATE TABLE table_name_26 (investment_earnings VARCHAR, state_ VARCHAR, _federal VARCHAR) |
How many official languages does Afghanistan have? | SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = "Afghanistan" AND IsOfficial = "T" | CREATE TABLE country (Code VARCHAR, Name VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR) |
How many points does the player with 2 steals have? | SELECT points FROM table_24912693_4 WHERE steals = 2 | CREATE TABLE table_24912693_4 (points VARCHAR, steals VARCHAR) |
What was the date of the Capitals game when Columbus was the home team? | SELECT date FROM table_name_28 WHERE home = "columbus" | CREATE TABLE table_name_28 (date VARCHAR, home VARCHAR) |
What incumbent was a federalist that was first elected in 1803? | SELECT incumbent FROM table_2668374_18 WHERE party = "Federalist" AND first_elected = "1803" | CREATE TABLE table_2668374_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) |
What state has lincoln, de as the hometown? | SELECT state FROM table_name_73 WHERE hometown = "lincoln, de" | CREATE TABLE table_name_73 (state VARCHAR, hometown VARCHAR) |
How much Snatch has a Total (kg) smaller than 257? | SELECT SUM(snatch) FROM table_name_79 WHERE total__kg_ < 257 | CREATE TABLE table_name_79 (snatch INTEGER, total__kg_ INTEGER) |
Name the avg start for avg finish of 18.3 | SELECT avg_start FROM table_2187333_1 WHERE avg_finish = "18.3" | CREATE TABLE table_2187333_1 (avg_start VARCHAR, avg_finish VARCHAR) |
Which bats did mitchell play first? | SELECT bats FROM table_name_23 WHERE first = "mitchell" | CREATE TABLE table_name_23 (bats VARCHAR, first VARCHAR) |
What was the lowest wins in a season less than 1915 with a 7th finish and 0.429 win %? | SELECT MIN(wins) FROM table_name_74 WHERE finish = "7th" AND win_percentage > 0.429 AND reds_season < 1915 | CREATE TABLE table_name_74 (wins INTEGER, reds_season VARCHAR, finish VARCHAR, win_percentage VARCHAR) |
Name the result with week of 16 | SELECT result FROM table_name_72 WHERE week = "16" | CREATE TABLE table_name_72 (result VARCHAR, week VARCHAR) |
What is the score of set 3 when the total is 45β31? | SELECT set_3 FROM table_name_24 WHERE total = "45β31" | CREATE TABLE table_name_24 (set_3 VARCHAR, total VARCHAR) |
How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis? | SELECT COUNT(year) FROM table_name_10 WHERE engine = "audi 3.6l turbo v8" AND rank = "1st" AND chassis = "audi r8r" | CREATE TABLE table_name_10 (year VARCHAR, chassis VARCHAR, engine VARCHAR, rank VARCHAR) |
Which 1990-91 has an average number of 1.035? | SELECT 1990 AS _91 FROM table_name_34 WHERE average = 1.035 | CREATE TABLE table_name_34 (average VARCHAR) |
What is Away, when Home is "marathon"? | SELECT away FROM table_name_14 WHERE home = "marathon" | CREATE TABLE table_name_14 (away VARCHAR, home VARCHAR) |
Which archbishop vacated the throne on May 17, 1907? | SELECT archbishop FROM table_name_42 WHERE vacated_throne = "may 17, 1907" | CREATE TABLE table_name_42 (archbishop VARCHAR, vacated_throne VARCHAR) |
What notes have 2 as the rank? | SELECT notes FROM table_name_62 WHERE rank = 2 | CREATE TABLE table_name_62 (notes VARCHAR, rank VARCHAR) |
What region does the University of California, Los Angeles play in? | SELECT region FROM table_name_37 WHERE state = "california" AND host = "university of california, los angeles" | CREATE TABLE table_name_37 (region VARCHAR, state VARCHAR, host VARCHAR) |
Find the titles of items that received both a rating higher than 8 and a rating below 5. | SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating > 8 INTERSECT SELECT T1.title FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id WHERE T2.rating < 5 | CREATE TABLE item (title VARCHAR, i_id VARCHAR); CREATE TABLE review (i_id VARCHAR, rating INTEGER) |
On what surface was the Australian Open (6) played on? | SELECT surface FROM table_29163303_1 WHERE championship = "Australian Open (6)" | CREATE TABLE table_29163303_1 (surface VARCHAR, championship VARCHAR) |
Which missions were scheduled to launch on November 16, 2006? | SELECT mission FROM table_11869952_3 WHERE launch_date = "November 16, 2006" | CREATE TABLE table_11869952_3 (mission VARCHAR, launch_date VARCHAR) |
Where was Assen held? | SELECT round FROM table_10083598_1 WHERE circuit = "Assen" | CREATE TABLE table_10083598_1 (round VARCHAR, circuit VARCHAR) |
Name the incumbent for lost re-election democratic-republican hold | SELECT incumbent FROM table_2668352_14 WHERE result = "Lost re-election Democratic-Republican hold" | CREATE TABLE table_2668352_14 (incumbent VARCHAR, result VARCHAR) |
What is the largest number of silver that had 0 bronzes and total less than 1? | SELECT MAX(silver) FROM table_name_67 WHERE bronze = 0 AND total < 1 | CREATE TABLE table_name_67 (silver INTEGER, bronze VARCHAR, total VARCHAR) |
What was the lowest number of wins for the team that scored more than 14 points and had a position of 7? | SELECT MIN(wins) FROM table_name_78 WHERE position = 7 AND scored > 14 | CREATE TABLE table_name_78 (wins INTEGER, position VARCHAR, scored VARCHAR) |
What is the latest year for the role of joan gordon, aka francine la rue? | SELECT MAX(year) FROM table_name_65 WHERE role = "joan gordon, aka francine la rue" | CREATE TABLE table_name_65 (year INTEGER, role VARCHAR) |
Name the area president when the area name is south america south | SELECT area_president__quorum_ FROM table_name_44 WHERE area_name = "south america south" | CREATE TABLE table_name_44 (area_president__quorum_ VARCHAR, area_name VARCHAR) |
How many places according to the 2011 census of whatever population have an area of 132.79 kilometers squared? | SELECT COUNT(population__2011_census_) FROM table_14325808_1 WHERE area__kmΒ²_ = "132.79" | CREATE TABLE table_14325808_1 (population__2011_census_ VARCHAR, area__kmΒ²_ VARCHAR) |
What is the population as of 11-01-2010 for Bayan County? | SELECT population__2010_11_01_ FROM table_name_50 WHERE name = "bayan county" | CREATE TABLE table_name_50 (population__2010_11_01_ VARCHAR, name VARCHAR) |
Can you tell me the highest Gold that has the Bronze larger than 3, and the Total smaller than 24? | SELECT MAX(gold) FROM table_name_15 WHERE bronze > 3 AND total < 24 | CREATE TABLE table_name_15 (gold INTEGER, bronze VARCHAR, total VARCHAR) |
Mame the reg season for 2001 | SELECT reg_season FROM table_2511876_1 WHERE year = 2001 | CREATE TABLE table_2511876_1 (reg_season VARCHAR, year VARCHAR) |
Find the maximum and total number of followers of all users. | SELECT MAX(followers), SUM(followers) FROM user_profiles | CREATE TABLE user_profiles (followers INTEGER) |
What is the current streak against TCU? | SELECT current_streak FROM table_15740666_4 WHERE kansas_state_vs = "TCU" | CREATE TABLE table_15740666_4 (current_streak VARCHAR, kansas_state_vs VARCHAR) |
What is the lowest overall year? | SELECT MIN(year) FROM table_16677738_1 | CREATE TABLE table_16677738_1 (year INTEGER) |
Name the number of total for 3 gold and rank less than 3 | SELECT COUNT(total) FROM table_name_25 WHERE gold = 3 AND rank < 3 | CREATE TABLE table_name_25 (total VARCHAR, gold VARCHAR, rank VARCHAR) |
What date has parlophone as the label, and lp as a format? | SELECT date FROM table_name_17 WHERE label = "parlophone" AND format = "lp" | CREATE TABLE table_name_17 (date VARCHAR, label VARCHAR, format VARCHAR) |
What college did the Cincinnati Bengals' player come from? | SELECT college FROM table_12165999_1 WHERE afl_team = "Cincinnati Bengals" | CREATE TABLE table_12165999_1 (college VARCHAR, afl_team VARCHAR) |
What number of Fatalties is associated with the Time of 12:38:46? | SELECT fatalities FROM table_name_78 WHERE time = "12:38:46" | CREATE TABLE table_name_78 (fatalities VARCHAR, time VARCHAR) |
What is the D 41 β when the D 47 β is d 34? | SELECT d_41_β FROM table_name_83 WHERE d_47_β = "d 34" | CREATE TABLE table_name_83 (d_41_β VARCHAR, d_47_β VARCHAR) |
What is the longitude of the feature named Razia Patera? | SELECT longitude FROM table_16799784_8 WHERE name = "Razia Patera" | CREATE TABLE table_16799784_8 (longitude VARCHAR, name VARCHAR) |
Which director had a worldwide gross of $30,471? | SELECT director FROM table_name_97 WHERE gross__worldwide_ = "$30,471" | CREATE TABLE table_name_97 (director VARCHAR, gross__worldwide_ VARCHAR) |
Name the 2006 when the 2010 is 27 | SELECT 2006 FROM table_name_26 WHERE 2010 = "27" | CREATE TABLE table_name_26 (Id VARCHAR) |
What are Perkins Engineering's fewest laps? | SELECT MIN(laps) FROM table_name_17 WHERE team = "perkins engineering" | CREATE TABLE table_name_17 (laps INTEGER, team VARCHAR) |
When is the most recent year with more than 27 points and more than 5 wins? | SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5 | CREATE TABLE table_name_69 (year INTEGER, points VARCHAR, wins VARCHAR) |
Who had high assists in game number 9? | SELECT high_assists FROM table_27712702_7 WHERE game = 9 | CREATE TABLE table_27712702_7 (high_assists VARCHAR, game VARCHAR) |
With a rank of 2 what is the second quarter? | SELECT second_quarter FROM table_name_69 WHERE rank = 2 | CREATE TABLE table_name_69 (second_quarter VARCHAR, rank VARCHAR) |
What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft? | SELECT position FROM table_2508633_4 WHERE nfl_team = "New Orleans Saints" | CREATE TABLE table_2508633_4 (position VARCHAR, nfl_team VARCHAR) |
What is 1995 Grand Slam Tournament if 1996 is also grand slam tournaments? | SELECT 1990 FROM table_name_33 WHERE 1996 = "grand slam tournaments" | CREATE TABLE table_name_33 (Id VARCHAR) |
What is listed in new points when status is second round lost to xavier malisse? | SELECT MIN(new_points) FROM table_29572583_19 WHERE status = "Second round lost to Xavier Malisse" | CREATE TABLE table_29572583_19 (new_points INTEGER, status VARCHAR) |
Show all the locations where some cinemas were opened in both year 2010 and year 2011. | SELECT LOCATION FROM cinema WHERE openning_year = 2010 INTERSECT SELECT LOCATION FROM cinema WHERE openning_year = 2011 | CREATE TABLE cinema (LOCATION VARCHAR, openning_year VARCHAR) |
What college has a team of new york jets? | SELECT college FROM table_name_74 WHERE team = "new york jets" | CREATE TABLE table_name_74 (college VARCHAR, team VARCHAR) |
Which team has nc position for 2010 season? | SELECT team FROM table_23338693_1 WHERE position = "NC" AND season = 2010 | CREATE TABLE table_23338693_1 (team VARCHAR, position VARCHAR, season VARCHAR) |
What is the lowest top 10 with fewer than 4 wins, fewer than 3260 points and more than 0 for top 5? | SELECT MIN(top_10) FROM table_name_29 WHERE wins < 4 AND points < 3260 AND top_5 > 0 | CREATE TABLE table_name_29 (top_10 INTEGER, top_5 VARCHAR, wins VARCHAR, points VARCHAR) |
What is the average year of an entrant that had fewer than 6 points and a Maserati Straight-6 engine? | SELECT AVG(year) FROM table_name_25 WHERE points < 6 AND engine = "maserati straight-6" | CREATE TABLE table_name_25 (year INTEGER, points VARCHAR, engine VARCHAR) |
Which country is Howard Clark from? | SELECT country FROM table_name_18 WHERE player = "howard clark" | CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR) |
Which Frequency has a Model Number of c3 1.4a? | SELECT frequency FROM table_name_5 WHERE model_number = "c3 1.4a" | CREATE TABLE table_name_5 (frequency VARCHAR, model_number VARCHAR) |
What was the original air date for the episode with production code 1wab06? | SELECT originalairdate FROM table_20726262_2 WHERE production_code = "1WAB06" | CREATE TABLE table_20726262_2 (originalairdate VARCHAR, production_code VARCHAR) |
For Pontyberem RFC that has a Try Bonus of 2, what is the played? | SELECT played FROM table_name_56 WHERE try_bonus = "2" AND club = "pontyberem rfc" | CREATE TABLE table_name_56 (played VARCHAR, try_bonus VARCHAR, club VARCHAR) |
What is the Date of the at&t pebble beach national pro-am Tournament? | SELECT date FROM table_name_91 WHERE tournament = "at&t pebble beach national pro-am" | CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR) |
Who had the pole position when matt davies had the fastest lap? | SELECT pole_position FROM table_29162856_1 WHERE fastest_lap = "Matt Davies" | CREATE TABLE table_29162856_1 (pole_position VARCHAR, fastest_lap VARCHAR) |
Which actor plays the character Helga Beimer? | SELECT actor FROM table_name_83 WHERE character = "helga beimer" | CREATE TABLE table_name_83 (actor VARCHAR, character VARCHAR) |
Which score has a record of 58β15β8? | SELECT score FROM table_name_80 WHERE record = "58β15β8" | CREATE TABLE table_name_80 (score VARCHAR, record VARCHAR) |
When rider John Hopkins had 21 laps, what was the grid? | SELECT grid FROM table_name_20 WHERE laps = "21" AND rider = "john hopkins" | CREATE TABLE table_name_20 (grid VARCHAR, laps VARCHAR, rider VARCHAR) |
What is the score for 04 september 2006? | SELECT score FROM table_name_21 WHERE date = "04 september 2006" | CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR) |
What dates was champion masahiro kawamura at the ibaraki country club tournament? | SELECT dates FROM table_name_6 WHERE tournament_location = "ibaraki country club" AND champion = "masahiro kawamura" | CREATE TABLE table_name_6 (dates VARCHAR, tournament_location VARCHAR, champion VARCHAR) |
What was the attendance of the game that lasted 3:55? | SELECT att FROM table_name_1 WHERE time = "3:55" | CREATE TABLE table_name_1 (att VARCHAR, time VARCHAR) |
What is the Away captain with a Venue that is old trafford? | SELECT away_captain FROM table_name_36 WHERE venue = "old trafford" | CREATE TABLE table_name_36 (away_captain VARCHAR, venue VARCHAR) |
List all institutions with a team name of the Cardinals. | SELECT institution FROM table_18483171_1 WHERE team_nickname = "Cardinals" | CREATE TABLE table_18483171_1 (institution VARCHAR, team_nickname VARCHAR) |
What is the average squad age of the team whose shirt sponsor is Sho'rtan Gaz Mahsulot and whose kit manufacturer is Adidas? | SELECT average_squad_age FROM table_25527255_2 WHERE shirt_sponsor = "Sho'rtan Gaz Mahsulot" AND kit_manufacturer = "Adidas" | CREATE TABLE table_25527255_2 (average_squad_age VARCHAR, shirt_sponsor VARCHAR, kit_manufacturer VARCHAR) |
Which album awarded Paul McGuinness a Lifetime Achievement Award? | SELECT album FROM table_name_20 WHERE lifetime_achievement_award = "paul mcguinness" | CREATE TABLE table_name_20 (album VARCHAR, lifetime_achievement_award VARCHAR) |
Subsets and Splits