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