question
stringlengths 12
243
| answer
stringlengths 18
557
| context
stringlengths 27
489
|
---|---|---|
Name the College which has a Round smaller than 3, and a Pick # larger than 4, and a Position of wide receiver? | SELECT college FROM table_name_59 WHERE round < 3 AND pick__number > 4 AND position = "wide receiver" | CREATE TABLE table_name_59 (college VARCHAR, position VARCHAR, round VARCHAR, pick__number VARCHAR) |
What was the date when the attendance was 63995 | SELECT date FROM table_14875671_1 WHERE attendance = 63995 | CREATE TABLE table_14875671_1 (date VARCHAR, attendance VARCHAR) |
what is the method when the record is 1-1? | SELECT method FROM table_name_10 WHERE record = "1-1" | CREATE TABLE table_name_10 (method VARCHAR, record VARCHAR) |
What is the saturated fat with a total fat of 100g and 11g of polyunsaturated fat? | SELECT saturated_fat FROM table_name_94 WHERE total_fat = "100g" AND polyunsaturated_fat = "11g" | CREATE TABLE table_name_94 (saturated_fat VARCHAR, total_fat VARCHAR, polyunsaturated_fat VARCHAR) |
What is the IUNC of district of Cayo and reserve of Actun Tunichil Muknal? | SELECT iucn FROM table_name_84 WHERE district = "cayo" AND reserve = "actun tunichil muknal" | CREATE TABLE table_name_84 (iucn VARCHAR, district VARCHAR, reserve VARCHAR) |
Which month and year held the Bolivia Special title? | SELECT month_ & _year FROM table_name_18 WHERE title = "bolivia special" | CREATE TABLE table_name_18 (month_ VARCHAR, _year VARCHAR, title VARCHAR) |
What is the total number of Silver, when Gold is less than 34, when Rank is "6", and when Total is greater than 10? | SELECT COUNT(silver) FROM table_name_81 WHERE gold < 34 AND rank = "6" AND total > 10 | CREATE TABLE table_name_81 (silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) |
What date was the match at mcg played? | SELECT date FROM table_name_98 WHERE venue = "mcg" | CREATE TABLE table_name_98 (date VARCHAR, venue VARCHAR) |
What is the postal code when the administrative capital in Bori? | SELECT MAX(postal_code) FROM table_28891101_3 WHERE administrative_capital = "Bori" | CREATE TABLE table_28891101_3 (postal_code INTEGER, administrative_capital VARCHAR) |
When 1.12 is the production code what is the original title? | SELECT original_title FROM table_20124413_1 WHERE prod_code = "1.12" | CREATE TABLE table_20124413_1 (original_title VARCHAR, prod_code VARCHAR) |
How many losses does Abercarn RFC have? | SELECT lost FROM table_name_90 WHERE club = "abercarn rfc" | CREATE TABLE table_name_90 (lost VARCHAR, club VARCHAR) |
What neon has an Argon of 4.203? | SELECT neon FROM table_name_89 WHERE argon = "4.203" | CREATE TABLE table_name_89 (neon VARCHAR, argon VARCHAR) |
Which venue led to a result of 13th and had an extra of Long Race? | SELECT venue FROM table_name_51 WHERE extra = "long race" AND result = "13th" | CREATE TABLE table_name_51 (venue VARCHAR, extra VARCHAR, result VARCHAR) |
What is the average Pick, when Name is "Lybrant Robinson", and when Overall is less than 139? | SELECT AVG(pick) FROM table_name_30 WHERE name = "lybrant robinson" AND overall < 139 | CREATE TABLE table_name_30 (pick INTEGER, name VARCHAR, overall VARCHAR) |
During what week was the July 10 game played? | SELECT week FROM table_21796261_4 WHERE date = "July 10" | CREATE TABLE table_21796261_4 (week VARCHAR, date VARCHAR) |
What Russian word translates to bucket? | SELECT russian FROM table_name_34 WHERE translation = "bucket" | CREATE TABLE table_name_34 (russian VARCHAR, translation VARCHAR) |
Who is the quarter back for a winning pct of .792 | SELECT quarterback FROM table_14389782_2 WHERE winning_pct = ".792" | CREATE TABLE table_14389782_2 (quarterback VARCHAR, winning_pct VARCHAR) |
What was the result for the years after 2001? | SELECT result FROM table_name_15 WHERE year > 2001 | CREATE TABLE table_name_15 (result VARCHAR, year INTEGER) |
What is the mens singles of 2008? | SELECT mens_singles FROM table_12104319_1 WHERE year = 2008 | CREATE TABLE table_12104319_1 (mens_singles VARCHAR, year VARCHAR) |
What is the record when George Hill (11) had the high rebounds? | SELECT record FROM table_name_58 WHERE high_rebounds = "george hill (11)" | CREATE TABLE table_name_58 (record VARCHAR, high_rebounds VARCHAR) |
Who won the ABA Championship in 1971? | SELECT MIN(championships) FROM table_name_94 WHERE years_won = "1971" | CREATE TABLE table_name_94 (championships INTEGER, years_won VARCHAR) |
Name the total number of publishers for flushed away | SELECT COUNT(publisher_s_) FROM table_14325653_2 WHERE video_game = "Flushed Away" | CREATE TABLE table_14325653_2 (publisher_s_ VARCHAR, video_game VARCHAR) |
What's the rank that has a total of less than 1? | SELECT SUM(rank) FROM table_name_19 WHERE total < 1 | CREATE TABLE table_name_19 (rank INTEGER, total INTEGER) |
Name the score for 10 april 2007 and opponent of selima sfar | SELECT score FROM table_name_43 WHERE date = "10 april 2007" AND opponent = "selima sfar" | CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR, opponent VARCHAR) |
What is the average Total, when the Name is Simon Gillett Category:Articles with hCards, and when the Other is greater than 3? | SELECT AVG(total) FROM table_name_60 WHERE name = "simon gillett category:articles with hcards" AND other > 3 | CREATE TABLE table_name_60 (total INTEGER, name VARCHAR, other VARCHAR) |
What is the airdate when the story is listed as hugh leonard? | SELECT airdate FROM table_15739098_2 WHERE story = "Hugh Leonard" | CREATE TABLE table_15739098_2 (airdate VARCHAR, story VARCHAR) |
What is Record, when Location is "Boston Garden", and when Date is "Fri. Nov. 9"? | SELECT record FROM table_name_24 WHERE location = "boston garden" AND date = "fri. nov. 9" | CREATE TABLE table_name_24 (record VARCHAR, location VARCHAR, date VARCHAR) |
what is the sum of spartak when played is 102 and draw is less than 19? | SELECT SUM(spartak) FROM table_name_54 WHERE played = 102 AND draw < 19 | CREATE TABLE table_name_54 (spartak INTEGER, played VARCHAR, draw VARCHAR) |
When classic hits 102.1 cjcy is the branding who is the owner? | SELECT owner FROM table_18536769_1 WHERE branding = "Classic Hits 102.1 CJCY" | CREATE TABLE table_18536769_1 (owner VARCHAR, branding VARCHAR) |
What is the transfer window of the player moving from barueri? | SELECT transfer_window FROM table_name_40 WHERE moving_from = "barueri" | CREATE TABLE table_name_40 (transfer_window VARCHAR, moving_from VARCHAR) |
Name the competition for stephanie cox on 2011-07-02 | SELECT competition FROM table_name_64 WHERE assist_pass = "stephanie cox" AND date = "2011-07-02" | CREATE TABLE table_name_64 (competition VARCHAR, assist_pass VARCHAR, date VARCHAR) |
What is the Score with a Team that is @ portland? | SELECT score FROM table_name_1 WHERE team = "@ portland" | CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR) |
What team was the opponent when February shows more than 2, with a game number less than 55? | SELECT opponent FROM table_name_92 WHERE february > 2 AND game < 55 | CREATE TABLE table_name_92 (opponent VARCHAR, february VARCHAR, game VARCHAR) |
From what town was Steve Zakuani? | SELECT home_town FROM table_name_7 WHERE player = "steve zakuani" | CREATE TABLE table_name_7 (home_town VARCHAR, player VARCHAR) |
What was the margin of victory when runner-up was K. J. Choi? | SELECT margin_of_victory FROM table_247955_2 WHERE runner_s__up = "K. J. Choi" | CREATE TABLE table_247955_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR) |
Which venue has h.paul 8/9 goals? | SELECT venue FROM table_name_35 WHERE goals = "h.paul 8/9" | CREATE TABLE table_name_35 (venue VARCHAR, goals VARCHAR) |
Who was the away team when the home team Manchester United played? | SELECT away_team FROM table_name_54 WHERE home_team = "manchester united" | CREATE TABLE table_name_54 (away_team VARCHAR, home_team VARCHAR) |
Which team did the Patriots play when there was a game attendance of 73,369? | SELECT opponent FROM table_name_48 WHERE attendance = "73,369" | CREATE TABLE table_name_48 (opponent VARCHAR, attendance VARCHAR) |
How many episodes in the season had 3.81 million US viewers? | SELECT COUNT(no_in_season) FROM table_24319661_3 WHERE us_viewers__million_ = "3.81" | CREATE TABLE table_24319661_3 (no_in_season VARCHAR, us_viewers__million_ VARCHAR) |
What's the highest Date listed that has U-boats destroyed (Pola) of 1? | SELECT MAX(date) FROM table_name_97 WHERE u_boats_destroyed__pola_ = "1" | CREATE TABLE table_name_97 (date INTEGER, u_boats_destroyed__pola_ VARCHAR) |
What is the score against the indians after game 2? | SELECT score FROM table_name_76 WHERE game > 2 AND opponent = "indians" | CREATE TABLE table_name_76 (score VARCHAR, game VARCHAR, opponent VARCHAR) |
What is the sum of the years when the winner was prof. priyambada mohanty hejmadi from orissa? | SELECT SUM(year) FROM table_name_95 WHERE state = "orissa" AND name = "prof. priyambada mohanty hejmadi" | CREATE TABLE table_name_95 (year INTEGER, state VARCHAR, name VARCHAR) |
What was the finishing place for 1953? | SELECT finish FROM table_name_95 WHERE year = "1953" | CREATE TABLE table_name_95 (finish VARCHAR, year VARCHAR) |
When was the final loss of the club last won in 2001 and has a total of 3 wins? | SELECT last_final_lost FROM table_name_84 WHERE wins = "3" AND last_win = "2001" | CREATE TABLE table_name_84 (last_final_lost VARCHAR, wins VARCHAR, last_win VARCHAR) |
What game number was the first game played at the Summit this season? | SELECT MIN(game) FROM table_name_25 WHERE location = "the summit" | CREATE TABLE table_name_25 (game INTEGER, location VARCHAR) |
Which club had a player born in 1983? | SELECT current_club FROM table_12962773_15 WHERE year_born = 1983 | CREATE TABLE table_12962773_15 (current_club VARCHAR, year_born VARCHAR) |
Which Cover Model was featured on 8-03? | SELECT cover_model FROM table_name_8 WHERE date = "8-03" | CREATE TABLE table_name_8 (cover_model VARCHAR, date VARCHAR) |
What is the number of silver medals when there are more than 1 gold, and more than 6 bronze? | SELECT MIN(silver) FROM table_name_90 WHERE gold > 1 AND bronze > 6 | CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, bronze VARCHAR) |
What was the surface type during the match with the score of 6–4, 7–6 (7-5)?? | SELECT surface FROM table_name_54 WHERE score = "6–4, 7–6 (7-5)" | CREATE TABLE table_name_54 (surface VARCHAR, score VARCHAR) |
what is the sample size when the date(s) administered is march 24, 2010? | SELECT sample_size FROM table_name_4 WHERE date_s__administered = "march 24, 2010" | CREATE TABLE table_name_4 (sample_size VARCHAR, date_s__administered VARCHAR) |
What is the score of the match with UTC as the runner-up and Saint-Gaudens Bears as the winners? | SELECT score FROM table_name_77 WHERE runner_up = "utc" AND winners = "saint-gaudens bears" | CREATE TABLE table_name_77 (score VARCHAR, runner_up VARCHAR, winners VARCHAR) |
Which Free polite has a Genitive 1 of *=ku? | SELECT free AS polite FROM table_name_13 WHERE genitive_1 = * = ku | CREATE TABLE table_name_13 (free VARCHAR, ku VARCHAR, genitive_1 VARCHAR) |
On which date is Taylor Field the location? | SELECT date FROM table_23612439_2 WHERE location = "Taylor Field" | CREATE TABLE table_23612439_2 (date VARCHAR, location VARCHAR) |
when was the premiere of the episode whose production code is 415? | SELECT original_us_air_date FROM table_27622417_1 WHERE prod_code = "415" | CREATE TABLE table_27622417_1 (original_us_air_date VARCHAR, prod_code VARCHAR) |
What is the highest SP+FS that has 131.02 Points, and a Rank larger than 15? | SELECT MAX(sp) + fs FROM table_name_84 WHERE points = 131.02 AND rank > 15 | CREATE TABLE table_name_84 (fs VARCHAR, sp INTEGER, points VARCHAR, rank VARCHAR) |
What is the period total number if the name is Geraldão? | SELECT COUNT(period) FROM table_24565004_8 WHERE name = "Geraldão" | CREATE TABLE table_24565004_8 (period VARCHAR, name VARCHAR) |
Can you tell me the Club thay has the Try BP of 0? | SELECT club FROM table_name_84 WHERE try_bp = "0" | CREATE TABLE table_name_84 (club VARCHAR, try_bp VARCHAR) |
What was the loss of the Mariners game when they had a record of 21-34? | SELECT loss FROM table_name_98 WHERE record = "21-34" | CREATE TABLE table_name_98 (loss VARCHAR, record VARCHAR) |
Which player had an opponent of Blackburn Rovers? | SELECT player FROM table_24765815_1 WHERE opponent = "Blackburn Rovers" | CREATE TABLE table_24765815_1 (player VARCHAR, opponent VARCHAR) |
what is the reversal symmetry when non-dictatorship is yes, consistency & participation is no, and clone independence is yes? | SELECT reversal_symmetry FROM table_name_1 WHERE non_dictatorship = "yes" AND consistency_ & _participation = "no" AND clone_independence = "yes" | CREATE TABLE table_name_1 (reversal_symmetry VARCHAR, clone_independence VARCHAR, non_dictatorship VARCHAR, consistency_ VARCHAR, _participation VARCHAR) |
What 2007 number when the million CZK shows operating revenues? | SELECT COUNT(2007) FROM table_name_47 WHERE million_czk = "operating revenues" | CREATE TABLE table_name_47 (million_czk VARCHAR) |
How many grids have a Constructor of talbot-lago - talbot, a Laps under 83, and a driver of johnny claes? | SELECT COUNT(grid) FROM table_name_20 WHERE constructor = "talbot-lago - talbot" AND laps < 83 AND driver = "johnny claes" | CREATE TABLE table_name_20 (grid VARCHAR, driver VARCHAR, constructor VARCHAR, laps VARCHAR) |
What is the League Cup value for 1991–present? | SELECT league AS Cup FROM table_name_13 WHERE years = "1991–present" | CREATE TABLE table_name_13 (league VARCHAR, years VARCHAR) |
What season had a winning profit of $15,000? | SELECT season FROM table_2311410_1 WHERE winning_profit___aud__ = "$15,000" | CREATE TABLE table_2311410_1 (season VARCHAR, winning_profit___aud__ VARCHAR) |
What is the maximum number of points scored against? | SELECT MAX(pts_agst) FROM table_21991074_1 | CREATE TABLE table_21991074_1 (pts_agst INTEGER) |
What are the sum of points in 1989 with 0 wins? | SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 1989 | CREATE TABLE table_name_85 (points INTEGER, wins VARCHAR, year VARCHAR) |
What is the mean number of languages for the monthly frequency when the publisher is the hearst corporation? | SELECT AVG(number_of_languages) FROM table_name_23 WHERE frequency = "monthly" AND publisher = "hearst corporation" | CREATE TABLE table_name_23 (number_of_languages INTEGER, frequency VARCHAR, publisher VARCHAR) |
What driver(s) had over 65 stag wins? | SELECT driver FROM table_23385853_19 WHERE stage_wins = 65 | CREATE TABLE table_23385853_19 (driver VARCHAR, stage_wins VARCHAR) |
What is the total number of wickets that have runs under 4600 and matches under 44? | SELECT SUM(wickets) FROM table_name_64 WHERE runs < 4600 AND matches < 44 | CREATE TABLE table_name_64 (wickets INTEGER, runs VARCHAR, matches VARCHAR) |
Which state has a king named xiang? | SELECT state FROM table_name_10 WHERE title = "king" AND name = "xiang" | CREATE TABLE table_name_10 (state VARCHAR, title VARCHAR, name VARCHAR) |
When the crowd was 8642 what was the away team's score? | SELECT away_team AS score FROM table_16388439_2 WHERE crowd = 8642 | CREATE TABLE table_16388439_2 (away_team VARCHAR, crowd VARCHAR) |
Name the home team when away team is kilmarnock | SELECT home_team FROM table_15173650_2 WHERE away_team = "Kilmarnock" | CREATE TABLE table_15173650_2 (home_team VARCHAR, away_team VARCHAR) |
What is the total number of episodes where hugh laurie was the 3rd performer? | SELECT COUNT(episode) FROM table_name_70 WHERE performer_3 = "hugh laurie" | CREATE TABLE table_name_70 (episode VARCHAR, performer_3 VARCHAR) |
Segment B of aerospace fuel lines is what netflix episode? | SELECT netflix FROM table_name_99 WHERE segment_b = "aerospace fuel lines" | CREATE TABLE table_name_99 (netflix VARCHAR, segment_b VARCHAR) |
Which Nationality has a Previous team of new york knicks, and more than 3 Years of NBA experience? | SELECT nationality FROM table_name_30 WHERE previous_team = "new york knicks" AND years_of_nba_experience_[a_] > 3 | CREATE TABLE table_name_30 (nationality VARCHAR, previous_team VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR) |
Which home team played against Geelong? | SELECT home_team FROM table_name_39 WHERE away_team = "geelong" | CREATE TABLE table_name_39 (home_team VARCHAR, away_team VARCHAR) |
What is the start of Offy engine and in 1972? | SELECT start FROM table_name_76 WHERE engine = "offy" AND year = 1972 | CREATE TABLE table_name_76 (start VARCHAR, engine VARCHAR, year VARCHAR) |
What is K236AM's lowest frequency in MHz? | SELECT MIN(frequency_mhz) FROM table_name_51 WHERE call_sign = "k236am" | CREATE TABLE table_name_51 (frequency_mhz INTEGER, call_sign VARCHAR) |
what team had a score of 2-1 | SELECT opponent FROM table_name_92 WHERE score = "2-1" | CREATE TABLE table_name_92 (opponent VARCHAR, score VARCHAR) |
What is the sum of the erp w of the k222al call sign? | SELECT SUM(erp_w) FROM table_name_5 WHERE call_sign = "k222al" | CREATE TABLE table_name_5 (erp_w INTEGER, call_sign VARCHAR) |
What is the smallest drawn when the points are less than 7 and the against greater than 31? | SELECT MIN(drawn) FROM table_name_79 WHERE points < 7 AND against > 31 | CREATE TABLE table_name_79 (drawn INTEGER, points VARCHAR, against VARCHAR) |
What is the transfer fee for Helguera? | SELECT transfer_fee FROM table_name_23 WHERE name = "helguera" | CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR) |
Find the team of the player of the highest age. | SELECT Team FROM player ORDER BY Age DESC LIMIT 1 | CREATE TABLE player (Team VARCHAR, Age VARCHAR) |
Name the manner of departure for 1 december 2009 | SELECT manner_of_departure FROM table_22848931_3 WHERE date_of_vacancy = "1 December 2009" | CREATE TABLE table_22848931_3 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR) |
Name the author for peri and april 2010 | SELECT author FROM table_1620397_2 WHERE featuring = "Peri" AND released = "April 2010" | CREATE TABLE table_1620397_2 (author VARCHAR, featuring VARCHAR, released VARCHAR) |
What is the Speed when the rank is smaller than 3, and time is 1:06.19.90? | SELECT speed FROM table_name_28 WHERE rank < 3 AND time = "1:06.19.90" | CREATE TABLE table_name_28 (speed VARCHAR, rank VARCHAR, time VARCHAR) |
In which week was the game played on October 12, 1975 and the crowd was larger than 44,043? | SELECT COUNT(week) FROM table_name_15 WHERE date = "october 12, 1975" AND attendance > 44 OFFSET 043 | CREATE TABLE table_name_15 (week VARCHAR, date VARCHAR, attendance VARCHAR) |
List the names of orchestras that have no performance. | SELECT Orchestra FROM orchestra WHERE NOT Orchestra_ID IN (SELECT Orchestra_ID FROM performance) | CREATE TABLE orchestra (Orchestra VARCHAR, Orchestra_ID VARCHAR); CREATE TABLE performance (Orchestra VARCHAR, Orchestra_ID VARCHAR) |
What is after intermediate algebra | SELECT senior__4th_year_ FROM table_13967239_2 WHERE sophomore__grade_8_ = "Intermediate Algebra" | CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, sophomore__grade_8_ VARCHAR) |
Name the Bore x stroke of 1929-32 | SELECT bore_x_stroke FROM table_name_83 WHERE year = "1929-32" | CREATE TABLE table_name_83 (bore_x_stroke VARCHAR, year VARCHAR) |
2005 of 3r, and a 2000 of lq, and a 2002 of 3r is in what 2004? | SELECT 2004 FROM table_name_7 WHERE 2005 = "3r" AND 2000 = "lq" AND 2002 = "3r" | CREATE TABLE table_name_7 (Id VARCHAR) |
what team played on july 9 | SELECT opponent FROM table_name_72 WHERE date = "july 9" | CREATE TABLE table_name_72 (opponent VARCHAR, date VARCHAR) |
When was the earliest first game with 11 played and 12 games lost? | SELECT MIN(first_game) FROM table_name_60 WHERE played > 11 AND lost = 12 | CREATE TABLE table_name_60 (first_game INTEGER, played VARCHAR, lost VARCHAR) |
Which Call sign has a Branding of cbc radio one? | SELECT call_sign FROM table_name_60 WHERE branding = "cbc radio one" | CREATE TABLE table_name_60 (call_sign VARCHAR, branding VARCHAR) |
Name the record for prudential center - 12,880 | SELECT record FROM table_27539272_4 WHERE location_attendance = "Prudential Center - 12,880" | CREATE TABLE table_27539272_4 (record VARCHAR, location_attendance VARCHAR) |
Which Date has a Remainder of 20%? | SELECT date FROM table_name_21 WHERE remainder = "20%" | CREATE TABLE table_name_21 (date VARCHAR, remainder VARCHAR) |
What is the result of the game when the attendance is 62,078? | SELECT result FROM table_name_6 WHERE attendance = "62,078" | CREATE TABLE table_name_6 (result VARCHAR, attendance VARCHAR) |
What kind of Silver has a Nation of norway and a Gold smaller than 3? | SELECT SUM(silver) FROM table_name_27 WHERE nation = "norway" AND gold < 3 | CREATE TABLE table_name_27 (silver INTEGER, nation VARCHAR, gold VARCHAR) |
What is I/O bus when socket is socket g1bga-1288? | SELECT i_o_bus FROM table_name_46 WHERE socket = "socket g1bga-1288" | CREATE TABLE table_name_46 (i_o_bus VARCHAR, socket VARCHAR) |
What is Vuelta a Ecuador's lowest UCI Rating? | SELECT MIN(uci_rating) FROM table_name_3 WHERE race_name = "vuelta a ecuador" | CREATE TABLE table_name_3 (uci_rating INTEGER, race_name VARCHAR) |
Subsets and Splits