answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT position FROM table_name_81 WHERE college_junior_club_team = "hull olympiques (qmjhl)"
CREATE TABLE table_name_81 (position VARCHAR, college_junior_club_team VARCHAR)
Can you tell me the Position that has the College/Junior/Club Team of hull olympiques (qmjhl)?
SELECT player FROM table_name_86 WHERE round < 6 AND college_junior_club_team = "hull olympiques (qmjhl)"
CREATE TABLE table_name_86 (player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR)
Can you tell me the Player that has the Round smaller than 6, and the College/Junior/Club Team of hull olympiques (qmjhl)?
SELECT name FROM table_name_84 WHERE position = "center"
CREATE TABLE table_name_84 (name VARCHAR, position VARCHAR)
What is the Name of the Center?
SELECT position FROM table_name_48 WHERE college_hall_of_fame = "no"
CREATE TABLE table_name_48 (position VARCHAR, college_hall_of_fame VARCHAR)
What Position has no College Hall of Fame?
SELECT school FROM table_name_96 WHERE unanimous = "no no no"
CREATE TABLE table_name_96 (school VARCHAR, unanimous VARCHAR)
What School has no no no Unanimously?
SELECT school FROM table_name_43 WHERE position = "quarterback"
CREATE TABLE table_name_43 (school VARCHAR, position VARCHAR)
What is the School of the quarterback?
SELECT school FROM table_name_97 WHERE position = "center"
CREATE TABLE table_name_97 (school VARCHAR, position VARCHAR)
What School is the Center from?
SELECT unanimous FROM table_name_93 WHERE school = "minnesota southern california"
CREATE TABLE table_name_93 (unanimous VARCHAR, school VARCHAR)
What is the Unanimous of the Minnesota Southern California School?
SELECT cache FROM table_name_59 WHERE capacity = "600 gb"
CREATE TABLE table_name_59 (cache VARCHAR, capacity VARCHAR)
What is the Cache with a Capacity that is 600 gb?
SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = "estevan bruins (wchl)" AND round = 3
CREATE TABLE table_name_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR)
Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3?
SELECT nationality FROM table_name_86 WHERE player = "larry wright"
CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR)
Which Nationality has a Player of larry wright?
SELECT score FROM table_name_49 WHERE date = "august 25"
CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)
What score has august 25 as the date?
SELECT COUNT(episode) FROM table_name_78 WHERE performer_1 = "jim sweeney" AND performer_2 = "steve steen"
CREATE TABLE table_name_78 (episode VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer?
SELECT SUM(episode) FROM table_name_37 WHERE performer_4 = "chip esten" AND performer_2 = "christopher smith"
CREATE TABLE table_name_37 (episode INTEGER, performer_4 VARCHAR, performer_2 VARCHAR)
What is the sum of the episode numbers where chip esten is the 4th performer and christopher smith was the 2nd performer?
SELECT SUM(episode) FROM table_name_96 WHERE performer_4 = "chip esten" AND performer_1 = "jim meskimen"
CREATE TABLE table_name_96 (episode INTEGER, performer_4 VARCHAR, performer_1 VARCHAR)
What is the sum of the episodes where chip esten was the 4th performer and jim meskimen was the 1st performer?
SELECT performer_3 FROM table_name_19 WHERE performer_2 = "christopher smith"
CREATE TABLE table_name_19 (performer_3 VARCHAR, performer_2 VARCHAR)
Who was the 3rd performer when christopher smith was the 2nd performer?
SELECT record FROM table_name_58 WHERE time = "4:50"
CREATE TABLE table_name_58 (record VARCHAR, time VARCHAR)
Which Record has a Time of 4:50?
SELECT event FROM table_name_56 WHERE res = "loss" AND record = "12–2"
CREATE TABLE table_name_56 (event VARCHAR, res VARCHAR, record VARCHAR)
Which Event has a Resolution of loss, and a Record of 12–2?
SELECT AVG(drawn) FROM table_name_58 WHERE difference = "14"
CREATE TABLE table_name_58 (drawn INTEGER, difference VARCHAR)
Which Drawn has a Difference of 14?
SELECT played FROM table_name_4 WHERE lost > 2 AND team = "amΓ©rica"
CREATE TABLE table_name_4 (played VARCHAR, lost VARCHAR, team VARCHAR)
Which Played has a Lost larger than 2, and a Team of amΓ©rica?
SELECT SUM(touchdowns) FROM table_name_31 WHERE field_goals = 0 AND player = "joe maddock" AND points < 5
CREATE TABLE table_name_31 (touchdowns INTEGER, points VARCHAR, field_goals VARCHAR, player VARCHAR)
What's the number of touchdowns that there are 0 field goals, less than 5 points, and had Joe Maddock playing?
SELECT class FROM table_name_90 WHERE call_sign = "w269ax"
CREATE TABLE table_name_90 (class VARCHAR, call_sign VARCHAR)
what is the class of w269ax
SELECT match_report FROM table_name_12 WHERE date = "20 august"
CREATE TABLE table_name_12 (match_report VARCHAR, date VARCHAR)
What is the match report of the match on 20 August?
SELECT origin FROM table_name_71 WHERE launch = 2010
CREATE TABLE table_name_71 (origin VARCHAR, launch VARCHAR)
What is the origin for the launch taking place in 2010?
SELECT origin FROM table_name_82 WHERE owner = "hunan broadcasting system (hbs)"
CREATE TABLE table_name_82 (origin VARCHAR, owner VARCHAR)
What is the origin for the item with an owner of Hunan Broadcasting System (HBS)?
SELECT position FROM table_name_40 WHERE college = "trinity"
CREATE TABLE table_name_40 (position VARCHAR, college VARCHAR)
If the college is Trinity, what position is listed?
SELECT COUNT(pick__number) FROM table_name_67 WHERE college = "usc"
CREATE TABLE table_name_67 (pick__number VARCHAR, college VARCHAR)
How many picks did the College of USC wind up getting?
SELECT round FROM table_name_41 WHERE pick__number = 323
CREATE TABLE table_name_41 (round VARCHAR, pick__number VARCHAR)
For Pick #323, which round is it?
SELECT score FROM table_name_97 WHERE venue = "amblecote"
CREATE TABLE table_name_97 (score VARCHAR, venue VARCHAR)
What score has amblecote as the venue?
SELECT city FROM table_name_16 WHERE venue = "riverside ground" AND year < 1998
CREATE TABLE table_name_16 (city VARCHAR, venue VARCHAR, year VARCHAR)
What city has riverside ground as the venue, with a year prior to 1998?
SELECT MIN(year) FROM table_name_49 WHERE city = "chester-le-street" AND score = "345 runs"
CREATE TABLE table_name_49 (year INTEGER, city VARCHAR, score VARCHAR)
What is the lowest year that has chester-le-street as the city, with 345 runs as the score?
SELECT year FROM table_name_38 WHERE score = "385 runs"
CREATE TABLE table_name_38 (year VARCHAR, score VARCHAR)
What year has 385 runs as the score?
SELECT score FROM table_name_82 WHERE year = 1998
CREATE TABLE table_name_82 (score VARCHAR, year VARCHAR)
What score has 1998 as the year?
SELECT MIN(2 AS nd__m_) FROM table_name_5 WHERE name = "gregor schlierenzauer"
CREATE TABLE table_name_5 (name VARCHAR)
What is the 2nd (m) value for Gregor Schlierenzauer?
SELECT date FROM table_name_58 WHERE score = "199 (–17)"
CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)
What is the Date of the tournament with a score of 199 (–17)?
SELECT AVG(1 AS st_prize___) AS $__ FROM table_name_95 WHERE winner = "paul azinger (9)"
CREATE TABLE table_name_95 (winner VARCHAR)
What was the amount of the 1st prize when paul azinger (9) was the winner?
SELECT winner FROM table_name_73 WHERE tournament = "the tour championship"
CREATE TABLE table_name_73 (winner VARCHAR, tournament VARCHAR)
What is the name of the winner of the tour championship 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)
What is the Date of the at&t pebble beach national pro-am Tournament?
SELECT site FROM table_name_38 WHERE sport = "w swimming"
CREATE TABLE table_name_38 (site VARCHAR, sport VARCHAR)
Which Site has a Sport of w swimming?
SELECT series FROM table_name_53 WHERE date = "september 15, 2007"
CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)
Which Series are on september 15, 2007?
SELECT position FROM table_name_5 WHERE nationality = "usa" AND team = "Γ­r" AND season = "2010-11"
CREATE TABLE table_name_5 (position VARCHAR, season VARCHAR, nationality VARCHAR, team VARCHAR)
What position did the 2010-11 USA Γ­r player have?
SELECT position FROM table_name_15 WHERE team = "kr"
CREATE TABLE table_name_15 (position VARCHAR, team VARCHAR)
What position did the kr team player play?
SELECT team FROM table_name_57 WHERE position = "guard / forward" AND player = "steinar kaldal"
CREATE TABLE table_name_57 (team VARCHAR, position VARCHAR, player VARCHAR)
What team has Steinar Kaldal, a guard / forward?
SELECT team FROM table_name_68 WHERE season = "2003-04"
CREATE TABLE table_name_68 (team VARCHAR, season VARCHAR)
What team did the 2003-04 winner play for?
SELECT region FROM table_name_23 WHERE label = "eyeball" AND catalogue = "7200222"
CREATE TABLE table_name_23 (region VARCHAR, label VARCHAR, catalogue VARCHAR)
Which region has and eyeball label and catalogue 7200222?
SELECT catalogue FROM table_name_31 WHERE region = "japan"
CREATE TABLE table_name_31 (catalogue VARCHAR, region VARCHAR)
Which catalogue is from Japan?
SELECT format FROM table_name_84 WHERE region = "united states" AND date = "july 23, 2002"
CREATE TABLE table_name_84 (format VARCHAR, region VARCHAR, date VARCHAR)
What is the format for the United States dated July 23, 2002?
SELECT label FROM table_name_77 WHERE catalogue = "7200222"
CREATE TABLE table_name_77 (label VARCHAR, catalogue VARCHAR)
What is the label for catalogue 7200222?
SELECT surname FROM table_name_38 WHERE first = "marc"
CREATE TABLE table_name_38 (surname VARCHAR, first VARCHAR)
What is Marc's Surname?
SELECT MAX(uni_number) FROM table_name_32 WHERE first = "todd"
CREATE TABLE table_name_32 (uni_number INTEGER, first VARCHAR)
What is the highest uni# of the person with the first name Todd?
SELECT position FROM table_name_2 WHERE uni_number = 14
CREATE TABLE table_name_2 (position VARCHAR, uni_number VARCHAR)
Which position does #14 play?
SELECT bats FROM table_name_9 WHERE position = "lhp" AND first = "lachlan"
CREATE TABLE table_name_9 (bats VARCHAR, position VARCHAR, first VARCHAR)
Which does the lhp player with the first name lachlan bat?
SELECT COUNT(attendance) FROM table_name_14 WHERE date = "december 11, 1954"
CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)
How many were in Attendance on December 11, 1954?
SELECT result FROM table_name_62 WHERE week = 3
CREATE TABLE table_name_62 (result VARCHAR, week VARCHAR)
What was the Result on Week 3?
SELECT week FROM table_name_66 WHERE opponent = "detroit lions"
CREATE TABLE table_name_66 (week VARCHAR, opponent VARCHAR)
On what Week was the Detroit Lions the Opponent?
SELECT record FROM table_name_44 WHERE game = 14
CREATE TABLE table_name_44 (record VARCHAR, game VARCHAR)
What was the rangers' record on Game 14?
SELECT MAX(game) FROM table_name_44 WHERE record = "11-11-1" AND november > 29
CREATE TABLE table_name_44 (game INTEGER, record VARCHAR, november VARCHAR)
What is the highest game number when the rangers had a record of 11-11-1 and the date was after November 29?
SELECT position FROM table_name_83 WHERE name = "francis harris"
CREATE TABLE table_name_83 (position VARCHAR, name VARCHAR)
What's Francis Harris' position?
SELECT place FROM table_name_99 WHERE area__km_2__ > 34.42
CREATE TABLE table_name_99 (place VARCHAR, area__km_2__ INTEGER)
Which place has more area (km 2) than 34.42?
SELECT MIN(4 AS _hoops), _2_clubs FROM table_name_66 WHERE total = 38.25
CREATE TABLE table_name_66 (_2_clubs VARCHAR, total VARCHAR)
What is the lowest 4 hoops, 2 clubs of the nation with a total of 38.25?
SELECT COUNT(total) FROM table_name_32 WHERE nation = "greece" AND place > 8
CREATE TABLE table_name_32 (total VARCHAR, nation VARCHAR, place VARCHAR)
What is the total of Greece, which is placed below 8?
SELECT MAX(4 AS _hoops), _2_clubs FROM table_name_14 WHERE nation = "belarus" AND total < 38.25
CREATE TABLE table_name_14 (_2_clubs VARCHAR, nation VARCHAR, total VARCHAR)
What is the highest 4 hoops, 2 clubs of Belarus, which has a total less than 38.25?
SELECT nationality FROM table_name_33 WHERE name = "janne happonen"
CREATE TABLE table_name_33 (nationality VARCHAR, name VARCHAR)
Which Nationality has a Name of janne happonen?
SELECT nationality FROM table_name_71 WHERE rank > 3 AND name = "tom hilde"
CREATE TABLE table_name_71 (nationality VARCHAR, rank VARCHAR, name VARCHAR)
Which Nationality has a Rank larger than 3, and a Name of tom hilde?
SELECT name FROM table_name_99 WHERE nationality = "nor" AND points = 136
CREATE TABLE table_name_99 (name VARCHAR, nationality VARCHAR, points VARCHAR)
Which Name has a Nationality of nor, and Points of 136?
SELECT AVG(rank) FROM table_name_56 WHERE name = "wolfgang schwarz" AND places > 13
CREATE TABLE table_name_56 (rank INTEGER, name VARCHAR, places VARCHAR)
What was the average rank of Wolfgang Schwarz with greater than 13 places?
SELECT nation FROM table_name_35 WHERE points = 1399.3
CREATE TABLE table_name_35 (nation VARCHAR, points VARCHAR)
What nation had 1399.3 points?
SELECT MIN(round) FROM table_name_12 WHERE time = "1:09"
CREATE TABLE table_name_12 (round INTEGER, time VARCHAR)
What is the lowest round number for the fight that had a time of 1:09?
SELECT SUM(overall) FROM table_name_13 WHERE pick__number < 20 AND round < 6
CREATE TABLE table_name_13 (overall INTEGER, pick__number VARCHAR, round VARCHAR)
How much Overall has a Pick # smaller than 20, and a Round smaller than 6?
SELECT AVG(round) FROM table_name_43 WHERE pick__number > 20 AND college = "virginia" AND overall > 127
CREATE TABLE table_name_43 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)
Which average Round has a Pick # larger than 20, and a College of virginia, and an Overall larger than 127?
SELECT COUNT(pick__number) FROM table_name_47 WHERE name = "chad owens"
CREATE TABLE table_name_47 (pick__number VARCHAR, name VARCHAR)
How many picks does chad owens have?
SELECT MIN(april) FROM table_name_90 WHERE opponent = "new york rangers" AND game < 82
CREATE TABLE table_name_90 (april INTEGER, opponent VARCHAR, game VARCHAR)
What is the lowest value in April with New York Rangers as opponent for a game less than 82?
SELECT MAX(april) FROM table_name_99 WHERE record = "35–37–11" AND points > 81
CREATE TABLE table_name_99 (april INTEGER, record VARCHAR, points VARCHAR)
What is the highest value in April with a record of 35–37–11 and more than 81 points?
SELECT winner FROM table_name_40 WHERE score = "274 (–14)" AND location = "tennessee"
CREATE TABLE table_name_40 (winner VARCHAR, score VARCHAR, location VARCHAR)
What is the name of the winner when the Score was 274 (–14) in tennessee?
SELECT winner FROM table_name_23 WHERE tournament = "western open"
CREATE TABLE table_name_23 (winner VARCHAR, tournament VARCHAR)
What is the winners name at the western open?
SELECT score FROM table_name_23 WHERE tournament = "danny thomas memphis classic"
CREATE TABLE table_name_23 (score VARCHAR, tournament VARCHAR)
What is the score of the Tournament named danny thomas memphis classic?
SELECT winner FROM table_name_71 WHERE location = "north carolina" AND tournament = "greater greensboro open"
CREATE TABLE table_name_71 (winner VARCHAR, location VARCHAR, tournament VARCHAR)
What is the name of the Winner in north carolina at the greater greensboro open?
SELECT location FROM table_name_94 WHERE tournament = "byron nelson golf classic"
CREATE TABLE table_name_94 (location VARCHAR, tournament VARCHAR)
What is the Location of the byron nelson golf classic?
SELECT position FROM table_name_59 WHERE player = "tiffany garofano (2)"
CREATE TABLE table_name_59 (position VARCHAR, player VARCHAR)
What is the position of player Tiffany Garofano (2)?
SELECT week FROM table_name_19 WHERE school = "ball state"
CREATE TABLE table_name_19 (week VARCHAR, school VARCHAR)
What is the week with a school that is ball state?
SELECT COUNT(Last) AS runners_up FROM table_name_42 WHERE last_win = "1999" AND runners_up > 1
CREATE TABLE table_name_42 (Last VARCHAR, last_win VARCHAR, runners_up VARCHAR)
What number last Runners-up where there when the Last win was 1999 and the Runners-up was bigger than 1?
SELECT SUM(Last) AS runners_up FROM table_name_63 WHERE club = "dempo sc"
CREATE TABLE table_name_63 (Last INTEGER, club VARCHAR)
What is the number of Last Runners-up that has the club name of dempo sc?
SELECT position FROM table_name_97 WHERE round > 6 AND player = "neil pilon"
CREATE TABLE table_name_97 (position VARCHAR, round VARCHAR, player VARCHAR)
Which Position has a Round larger than 6, and a Player of neil pilon?
SELECT nationality FROM table_name_51 WHERE player = "rudy poeschek"
CREATE TABLE table_name_51 (nationality VARCHAR, player VARCHAR)
Which Nationality has a Player of rudy poeschek?
SELECT position FROM table_name_94 WHERE player = "steve nemeth"
CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)
Which Position has a Player of steve nemeth?
SELECT position FROM table_name_81 WHERE nationality = "canada" AND player = "pat janostin"
CREATE TABLE table_name_81 (position VARCHAR, nationality VARCHAR, player VARCHAR)
Which Position has a Nationality of canada, and a Player of pat janostin?
SELECT score FROM table_name_65 WHERE date = "april 23, 2007"
CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
What was the score of the match on April 23, 2007?
SELECT date FROM table_name_18 WHERE game_site = "shea stadium" AND week = 5
CREATE TABLE table_name_18 (date VARCHAR, game_site VARCHAR, week VARCHAR)
Which Date has a Game site of shea stadium, and a Week of 5?
SELECT MAX(attendance) FROM table_name_27 WHERE week < 9 AND result = "l 24–23"
CREATE TABLE table_name_27 (attendance INTEGER, week VARCHAR, result VARCHAR)
Which Attendance is the highest one that has a Week smaller than 9, and a Result of l 24–23?
SELECT AVG(week) FROM table_name_65 WHERE opponent = "baltimore colts" AND attendance < 55 OFFSET 137
CREATE TABLE table_name_65 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
Which Week has an Opponent of baltimore colts, and an Attendance smaller than 55,137?
SELECT AVG(game) FROM table_name_6 WHERE points = 53 AND opponent = "@ minnesota north stars" AND december > 30
CREATE TABLE table_name_6 (game INTEGER, december VARCHAR, points VARCHAR, opponent VARCHAR)
Which Game has Points of 53, and an Opponent of @ minnesota north stars, and a December larger than 30?
SELECT AVG(december) FROM table_name_59 WHERE record = "21–6–5"
CREATE TABLE table_name_59 (december INTEGER, record VARCHAR)
Which December has a Record of 21–6–5?
SELECT MAX(points) FROM table_name_86 WHERE opponent = "@ pittsburgh penguins"
CREATE TABLE table_name_86 (points INTEGER, opponent VARCHAR)
Which Points have an Opponent of @ pittsburgh penguins?
SELECT year_startup FROM table_name_51 WHERE project_name = "taq taq ph 2"
CREATE TABLE table_name_51 (year_startup VARCHAR, project_name VARCHAR)
What year was the startup for the Project Named of taq taq ph 2?
SELECT operator FROM table_name_89 WHERE peak = "90" AND year_startup = "2010" AND project_name = "aosp expansion 1 (jackpine ph 1a)"
CREATE TABLE table_name_89 (operator VARCHAR, project_name VARCHAR, peak VARCHAR, year_startup VARCHAR)
What is the operator for peak 90, in startup year 2010 for the project named Aosp expansion 1 (jackpine ph 1a)?
SELECT country FROM table_name_56 WHERE peak = "20" AND project_name = "jarn yabhour; ramhan"
CREATE TABLE table_name_56 (country VARCHAR, peak VARCHAR, project_name VARCHAR)
What country has peak 20 and a project named jarn yabhour; ramhan?
SELECT COUNT(attendance) FROM table_name_90 WHERE opponent = "swindon wildcats"
CREATE TABLE table_name_90 (attendance VARCHAR, opponent VARCHAR)
How much Attendance has an Opponent of swindon wildcats?
SELECT MIN(attendance) FROM table_name_64 WHERE venue = "away" AND date = 19
CREATE TABLE table_name_64 (attendance INTEGER, venue VARCHAR, date VARCHAR)
Which Attendance is the lowest one that has a Venue of away, and a Date of 19?
SELECT venue FROM table_name_65 WHERE result = "won 5-4"
CREATE TABLE table_name_65 (venue VARCHAR, result VARCHAR)
Which Venue has a Result of won 5-4?
SELECT country FROM table_name_89 WHERE town = "dubai"
CREATE TABLE table_name_89 (country VARCHAR, town VARCHAR)
what country has dubai