answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT venue FROM table_name_38 WHERE host = "saint joseph's university"
What is the venue that Saint Joseph's University hosted at?
CREATE TABLE table_name_38 (venue VARCHAR, host VARCHAR)
SELECT muzzle_velocity FROM table_name_32 WHERE cartridge = ".38 long colt"
What is the muzzle velocity for the .38 long colt cartridge?
CREATE TABLE table_name_32 (muzzle_velocity VARCHAR, cartridge VARCHAR)
SELECT liberal FROM table_name_36 WHERE polling_firm = "corporate research associates" AND prog_cons = "32%" AND dates = "august 2007"
According to the August 2007 poll by the Corporate Research Associates that reported 32% Prog. Cons., what percentage aligned with the Liberal party?
CREATE TABLE table_name_36 (liberal VARCHAR, dates VARCHAR, polling_firm VARCHAR, prog_cons VARCHAR)
SELECT program FROM table_name_44 WHERE track_name = "south fork dirt riders"
What programs are there for the South Fork Dirt Riders track?
CREATE TABLE table_name_44 (program VARCHAR, track_name VARCHAR)
SELECT venue FROM table_name_80 WHERE competition = "pan american games"
Where were the Pan American Games held?
CREATE TABLE table_name_80 (venue VARCHAR, competition VARCHAR)
SELECT league FROM table_name_26 WHERE established < 1930 AND club = "rayo vallecano"
What is the league established before 1930 with the rayo vallecano club?
CREATE TABLE table_name_26 (league VARCHAR, established VARCHAR, club VARCHAR)
SELECT t1.id, t1.name, t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t1.id HAVING COUNT(*) > 1
find the id, name and age for visitors who visited some museums more than once.
CREATE TABLE visit (visitor_id VARCHAR); CREATE TABLE visitor (id VARCHAR, name VARCHAR, age VARCHAR)
SELECT MIN(played) FROM table_name_92 WHERE draw > 7
What is the lowest number of games played where they tied more than 7 of them?
CREATE TABLE table_name_92 (played INTEGER, draw INTEGER)
SELECT MAX(attendance) FROM table_name_76 WHERE home_team = "bashley"
The game with Bashley as the home team had what maximum attendance?
CREATE TABLE table_name_76 (attendance INTEGER, home_team VARCHAR)
SELECT stage FROM table_28853064_15 WHERE team_classification = "EPM-UNE" AND mountains_classification = "Oscar Solis" AND winner = "Jaime Vergara"
In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis?
CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR)
SELECT COUNT(year) FROM table_name_1 WHERE chassis = "toyota tf102"
which year has the toyota tf102 chassis?
CREATE TABLE table_name_1 (year VARCHAR, chassis VARCHAR)
SELECT round FROM table_name_1 WHERE college = "connecticut"
In what Round was a player from College of Connecticut drafted?
CREATE TABLE table_name_1 (round VARCHAR, college VARCHAR)
SELECT runner_s__up FROM table_name_97 WHERE winning_score = −19(71 - 63 - 63 - 64 = 261)
Who's the Runner(s)-up with a Winning score of −19 (71-63-63-64=261)?
CREATE TABLE table_name_97 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_74 WHERE opponent = "marinko matosevic"
Which tournament included an opponent of Marinko Matosevic?
CREATE TABLE table_name_74 (tournament VARCHAR, opponent VARCHAR)
SELECT COUNT(season) FROM table_20398823_1 WHERE team = "team Bruichladdich"
Name the number of season for team bruichladdich
CREATE TABLE table_20398823_1 (season VARCHAR, team VARCHAR)
SELECT MAX(runs_conceded) FROM table_15700367_4
Name the most runs conceded
CREATE TABLE table_15700367_4 (runs_conceded INTEGER)
SELECT AVG(laps) FROM table_name_85 WHERE time_retired = "+1 lap" AND driver = "mark blundell"
how many laps have a time/retired of +1 lap and mark blundell is the driver?
CREATE TABLE table_name_85 (laps INTEGER, time_retired VARCHAR, driver VARCHAR)
SELECT player FROM table_2897457_8 WHERE nhl_team = "Vancouver Canucks"
Who was drafted to the Vancouver Canucks?
CREATE TABLE table_2897457_8 (player VARCHAR, nhl_team VARCHAR)
SELECT COUNT(competition_finish) FROM table_name_43 WHERE total = 90 AND rank_by_average > 5
Name the total number of competition finish with total of 90 and rank by average more than 5
CREATE TABLE table_name_43 (competition_finish VARCHAR, total VARCHAR, rank_by_average VARCHAR)
SELECT T1.id FROM trip AS T1 JOIN station AS T2 ON T1.start_station_id = T2.id ORDER BY T2.dock_count DESC LIMIT 1
Which trip started from the station with the largest dock count? Give me the trip id.
CREATE TABLE trip (id VARCHAR, start_station_id VARCHAR); CREATE TABLE station (id VARCHAR, dock_count VARCHAR)
SELECT winning_driver FROM table_name_33 WHERE winning_constructor = "mercedes" AND name = "elgin trophy"
Which Winning driver has a Winning constructor of mercedes, and a Name of elgin trophy?
CREATE TABLE table_name_33 (winning_driver VARCHAR, winning_constructor VARCHAR, name VARCHAR)
SELECT MIN(slope_length) FROM table_17814458_1 WHERE type = "gondola"
Name the slope length for gondola
CREATE TABLE table_17814458_1 (slope_length INTEGER, type VARCHAR)
SELECT goals_scored FROM table_28848697_4 WHERE position = 17 AND tied = 5
What are goals scored when postition is 17 and tied is 5?
CREATE TABLE table_28848697_4 (goals_scored VARCHAR, position VARCHAR, tied VARCHAR)
SELECT margin FROM table_name_27 WHERE date = "19 july 2008 (round 19)"
What is the Margin, when Date is 19 July 2008 (Round 19)?
CREATE TABLE table_name_27 (margin VARCHAR, date VARCHAR)
SELECT away_team AS score FROM table_name_19 WHERE venue = "vfl park"
What is the away team score at vfl park?
CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR)
SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Michael Albasini"
If the winner is Michael Albasini, what is the mountains classification name?
CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)
SELECT Local AS mission FROM table_name_18 WHERE local_location = "kingstown"
What is the local mission that has kingstown as a local location?
CREATE TABLE table_name_18 (Local VARCHAR, local_location VARCHAR)
SELECT COUNT(attendance) FROM table_name_8 WHERE away = "real juventud"
What is the total number of Attendance(s), when Away is Real Juventud?
CREATE TABLE table_name_8 (attendance VARCHAR, away VARCHAR)
SELECT original_airdate FROM table_23392257_4 WHERE viewers__millions_ = "0.680"
What episode premier received 0.680 million viewers?
CREATE TABLE table_23392257_4 (original_airdate VARCHAR, viewers__millions_ VARCHAR)
SELECT sport FROM table_name_17 WHERE site = "iowa city" AND date = "february 14, 2009"
What is the sport played in Iowa City on February 14, 2009?
CREATE TABLE table_name_17 (sport VARCHAR, site VARCHAR, date VARCHAR)
SELECT player FROM table_name_22 WHERE round > 8 AND pick__number > 234 AND college = "louisville"
What is Player, when Round is greater than 8, when Pick # is greater than 234, and when College is "Louisville"?
CREATE TABLE table_name_22 (player VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR)
SELECT MAX(year) FROM table_name_12 WHERE series_title = "dragon laws ii: kidnapped"
The highest year for the series titled dragon laws ii: kidnapped is what?
CREATE TABLE table_name_12 (year INTEGER, series_title VARCHAR)
SELECT club_province FROM table_name_3 WHERE caps = 74 AND player = "girvan dempsey"
What is the club or province of Girvan Dempsey, who has 74 caps?
CREATE TABLE table_name_3 (club_province VARCHAR, caps VARCHAR, player VARCHAR)
SELECT T1.pName, T2.cName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes'
Find the name and college of students whose decisions are yes in the tryout.
CREATE TABLE tryout (cName VARCHAR, pID VARCHAR, decision VARCHAR); CREATE TABLE player (pName VARCHAR, pID VARCHAR)
SELECT score FROM table_11960610_10 WHERE location_attendance = "United Center 22,097"
What was the score of united center 22,097?
CREATE TABLE table_11960610_10 (score VARCHAR, location_attendance VARCHAR)
SELECT Name, birth_place FROM people EXCEPT SELECT T1.Name, T1.birth_place FROM people AS T1 JOIN body_builder AS T2 ON T1.people_id = T2.people_id
List the names and origins of people who are not body builders.
CREATE TABLE people (Name VARCHAR, birth_place VARCHAR, people_id VARCHAR); CREATE TABLE body_builder (people_id VARCHAR); CREATE TABLE people (Name VARCHAR, birth_place VARCHAR)
SELECT director FROM table_name_12 WHERE series = "mm" AND production_num < 6494 AND release_date = "1934-09-15"
Who was the director of the movie having a release date of 1934-09-15, an MM Series and a production number less than 6494?
CREATE TABLE table_name_12 (director VARCHAR, release_date VARCHAR, series VARCHAR, production_num VARCHAR)
SELECT proto_italo_western_1 FROM table_25401_15 WHERE english = "door"
What is every entry for Proto-Italo-Western 1 when door is English?
CREATE TABLE table_25401_15 (proto_italo_western_1 VARCHAR, english VARCHAR)
SELECT SUM(grid) FROM table_name_48 WHERE driver = "richard robarts" AND laps < 36
In what grid did Richard Robarts make 36 laps?
CREATE TABLE table_name_48 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE episode = 9
When was the first UK broadcast for episode 9?
CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, episode VARCHAR)
SELECT major_users FROM table_29474407_11 WHERE country_of_origin = "Australia"
Who are the major users from Australia?
CREATE TABLE table_29474407_11 (major_users VARCHAR, country_of_origin VARCHAR)
SELECT metres FROM table_name_21 WHERE feet > 850
How many metres tall is the building that is larger than 850 feet tall?
CREATE TABLE table_name_21 (metres VARCHAR, feet INTEGER)
SELECT player FROM table_name_11 WHERE to_par = "+3"
What Player has a +3 To par?
CREATE TABLE table_name_11 (player VARCHAR, to_par VARCHAR)
SELECT MAX(ties_played) FROM table_10294071_1 WHERE player = "Josip Palada Category:Articles with hCards"
what is the maximum ties played where player is josip palada category:articles with hcards
CREATE TABLE table_10294071_1 (ties_played INTEGER, player VARCHAR)
SELECT away_team AS score FROM table_name_56 WHERE time = "6:00 pm" AND away_team = "hawthorn"
What is the away team score for the match at 6:00 PM and an away team of Hawthorn?
CREATE TABLE table_name_56 (away_team VARCHAR, time VARCHAR)
SELECT date FROM table_15346009_1 WHERE score = "200 (-16)"
What day was the score 200 (-16)?
CREATE TABLE table_15346009_1 (date VARCHAR, score VARCHAR)
SELECT Date, Venue FROM debate
What are the date and venue of each debate?
CREATE TABLE debate (Date VARCHAR, Venue VARCHAR)
SELECT notes FROM table_name_8 WHERE country = "south africa"
What are the notes for South Africa?
CREATE TABLE table_name_8 (notes VARCHAR, country VARCHAR)
SELECT MIN(purse__) AS $__ FROM table_11622255_1 WHERE tournament = "Ko Olina Senior Invitational"
what is the minimum purse( $ ) where tournament is ko olina senior invitational
CREATE TABLE table_11622255_1 (purse__ INTEGER, tournament VARCHAR)
SELECT COUNT(nasl_years) FROM table_237757_9 WHERE player = "Peter Lorimer"
How many years did Peter Lorimer play?
CREATE TABLE table_237757_9 (nasl_years VARCHAR, player VARCHAR)
SELECT player FROM table_10960039_1 WHERE pick__number = 2
What player is pick #2?
CREATE TABLE table_10960039_1 (player VARCHAR, pick__number VARCHAR)
SELECT AVG(T2.Earnings) FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Height > 200
What is the average earnings of poker players with height higher than 200?
CREATE TABLE people (People_ID VARCHAR, Height INTEGER); CREATE TABLE poker_player (Earnings INTEGER, People_ID VARCHAR)
SELECT champion FROM table_name_25 WHERE year < 2012 AND runner_up__average_in_final_ = "steve beaton (97.16)"
who is the champion when the year is earlier than 2012, the runner-up (average in final) is steve beaton (97.16)?
CREATE TABLE table_name_25 (champion VARCHAR, year VARCHAR, runner_up__average_in_final_ VARCHAR)
SELECT team_1 FROM table_name_1 WHERE agg = "2-5"
Who is team 1 with an agg of 2-5?
CREATE TABLE table_name_1 (team_1 VARCHAR, agg VARCHAR)
SELECT country FROM table_name_45 WHERE player = "tom purtzer"
What country is Tom Purtzer from?
CREATE TABLE table_name_45 (country VARCHAR, player VARCHAR)
SELECT best_finish FROM table_10021158_3 WHERE scoring_rank = "117"
When the scoring rank was 117, what was the best finish?
CREATE TABLE table_10021158_3 (best_finish VARCHAR, scoring_rank VARCHAR)
SELECT winning_constructor FROM table_1137704_2 WHERE fastest_lap = "Riccardo Patrese" AND location = "Interlagos"
who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos
CREATE TABLE table_1137704_2 (winning_constructor VARCHAR, fastest_lap VARCHAR, location VARCHAR)
SELECT COUNT(first_elected) FROM table_1341586_43 WHERE district = "Tennessee 2"
Name number first elected for tennessee 2?
CREATE TABLE table_1341586_43 (first_elected VARCHAR, district VARCHAR)
SELECT builder FROM table_name_92 WHERE works_number = "323"
Who was the Builder for the locomotive that has a works number of 323?
CREATE TABLE table_name_92 (builder VARCHAR, works_number VARCHAR)
SELECT latest_version FROM table_name_29 WHERE architecture = "16-bit" AND release_date = "1985-11-20"
Which of the Latest version had a 16-bit Architecture and was released on Release date 1985-11-20?
CREATE TABLE table_name_29 (latest_version VARCHAR, architecture VARCHAR, release_date VARCHAR)
SELECT SUM(total) FROM table_name_41 WHERE bronze = 0 AND silver = 3
What is the total for the team with 0 bronze and 3 silver?
CREATE TABLE table_name_41 (total INTEGER, bronze VARCHAR, silver VARCHAR)
SELECT COUNT(*) FROM AIRPORTS
How many airports do we have?
CREATE TABLE AIRPORTS (Id VARCHAR)
SELECT superintendent FROM table_25037577_1 WHERE middle_school_principal = "Alan Degroote" AND gorham_principal = "Paul Lahue" AND year = "2006-2007"
Who were the superintendent(s) when the middle school principal was alan degroote, the gorham principal was paul lahue, and the year was 2006-2007?
CREATE TABLE table_25037577_1 (superintendent VARCHAR, year VARCHAR, middle_school_principal VARCHAR, gorham_principal VARCHAR)
SELECT game FROM table_21034801_1 WHERE opponent = "Kansas State"
What number was the game against Kansas State?
CREATE TABLE table_21034801_1 (game VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_39 WHERE opponent = "cedric marks"
What round was the game against Cedric Marks?
CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_51 WHERE to_par < 2
When To par was less than 2, what was the score?
CREATE TABLE table_name_51 (score VARCHAR, to_par INTEGER)
SELECT multi_1 FROM table_name_46 WHERE model_number = "athlon x2 be-2400"
What is the multi 1 for the Athlon x2 BE-2400?
CREATE TABLE table_name_46 (multi_1 VARCHAR, model_number VARCHAR)
SELECT t2.service_name FROM first_notification_of_loss AS t1 JOIN services AS t2 ON t1.service_id = t2.service_id GROUP BY t1.service_id HAVING COUNT(*) > 2
Find the name of services that have been used for more than 2 times in first notification of loss.
CREATE TABLE services (service_name VARCHAR, service_id VARCHAR); CREATE TABLE first_notification_of_loss (service_id VARCHAR)
SELECT goal_difference FROM table_name_82 WHERE drawn > 11 AND goals_against < 63 AND goals_for < 87 AND lost > 16
what is the goal difference when drawn is more than 11, goals against is less than 63, goals for is less than 87 and lost is more than 16?
CREATE TABLE table_name_82 (goal_difference VARCHAR, lost VARCHAR, goals_for VARCHAR, drawn VARCHAR, goals_against VARCHAR)
SELECT albany FROM table_name_18 WHERE buffalo = "oatka creek shale" AND syracuse = "cardiff dark gray shale"
What is Albany, when Buffalo is Oatka Creek Shale, and when Syracuse is Cardiff Dark Gray Shale?
CREATE TABLE table_name_18 (albany VARCHAR, buffalo VARCHAR, syracuse VARCHAR)
SELECT title FROM table_name_54 WHERE role = "chris morrell"
In what movie did John Wayne play the role of Chris Morrell?
CREATE TABLE table_name_54 (title VARCHAR, role VARCHAR)
SELECT series FROM table_name_53 WHERE release_date = "1939-07-15" AND production_num = "8863"
Which series had a release on 1939-07-15 with the 8863 production number?
CREATE TABLE table_name_53 (series VARCHAR, release_date VARCHAR, production_num VARCHAR)
SELECT MIN(edition) FROM table_name_13 WHERE winner = "arsenal" AND third = "celtic"
Tell me the lowest edition for winner of arsenal and third of celtic
CREATE TABLE table_name_13 (edition INTEGER, winner VARCHAR, third VARCHAR)
SELECT melbourne FROM table_name_67 WHERE gold_coast = "no"
What is The Melbourne with a No- Gold Coast
CREATE TABLE table_name_67 (melbourne VARCHAR, gold_coast VARCHAR)
SELECT venue FROM table_name_16 WHERE opposing_team = "natal"
Which venue had the opposing team Natal?
CREATE TABLE table_name_16 (venue VARCHAR, opposing_team VARCHAR)
SELECT SUM(T1.salary) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2010
What is the total salary paid by team Boston Red Stockings in 2010?
CREATE TABLE salary (salary INTEGER, team_id VARCHAR, year VARCHAR); CREATE TABLE team (team_id_br VARCHAR, name VARCHAR)
SELECT book_title FROM table_1420954_1 WHERE artist_s_ = "Timothy Truman"
timothy truman worked on what books
CREATE TABLE table_1420954_1 (book_title VARCHAR, artist_s_ VARCHAR)
SELECT school_club_team FROM table_11545282_7 WHERE no = 35
What school or club did number 35 play for?
CREATE TABLE table_11545282_7 (school_club_team VARCHAR, no VARCHAR)
SELECT previous_season_2007_2008 FROM table_19526911_1 WHERE website = "www.novavolley.narod.ru"
What are the previous season ranks of teams whose website is www.novavolley.narod.ru?
CREATE TABLE table_19526911_1 (previous_season_2007_2008 VARCHAR, website VARCHAR)
SELECT COUNT(teams_with_division_titles) FROM table_1952065_4 WHERE division_championships = 9
How many division title teams were in the division championships 9 times?
CREATE TABLE table_1952065_4 (teams_with_division_titles VARCHAR, division_championships VARCHAR)
SELECT points_classification FROM table_name_42 WHERE stage = "final"
What's the points classification when the stage was final?
CREATE TABLE table_name_42 (points_classification VARCHAR, stage VARCHAR)
SELECT division_iII FROM table_name_97 WHERE division_v = "bishop brady" AND division_iV = hanover
What Division III has Bishop Brady in Division V and Hanover in Division IV?
CREATE TABLE table_name_97 (division_iII VARCHAR, division_v VARCHAR, division_iV VARCHAR, hanover VARCHAR)
SELECT date FROM table_name_80 WHERE venue = "victoria park"
What was the date of the game played at Victoria Park?
CREATE TABLE table_name_80 (date VARCHAR, venue VARCHAR)
SELECT MIN(gnis_feature_id) FROM table_name_39 WHERE county = "sheridan"
What is the lowest GNIS Feature ID from County of sheridan?
CREATE TABLE table_name_39 (gnis_feature_id INTEGER, county VARCHAR)
SELECT theme FROM table_name_95 WHERE result = "eliminated"
Which Theme has a Result of eliminated?
CREATE TABLE table_name_95 (theme VARCHAR, result VARCHAR)
SELECT notable_for FROM table_name_23 WHERE connection_with_australia = "born in australia" AND name = "rick springfield"
What is the person born in Australia, rick springfield notable for?
CREATE TABLE table_name_23 (notable_for VARCHAR, connection_with_australia VARCHAR, name VARCHAR)
SELECT candidates FROM table_1342451_16 WHERE incumbent = "Henry Garland Dupré"
Who were the candidates when Henry Garland Dupré was incumbent?
CREATE TABLE table_1342451_16 (candidates VARCHAR, incumbent VARCHAR)
SELECT record FROM table_name_14 WHERE leading_scorer = "rudy gay (20)"
What is the record of the game with Rudy Gay (20) as the leading scorer?
CREATE TABLE table_name_14 (record VARCHAR, leading_scorer VARCHAR)
SELECT SUM(wins) FROM table_name_63 WHERE top_10 = 1
How many total wins are associated with events with 1 top-10?
CREATE TABLE table_name_63 (wins INTEGER, top_10 VARCHAR)
SELECT score FROM table_name_92 WHERE opponents_in_the_final = "john bromwich frank sedgman"
Which Score has Opponents in the final of john bromwich frank sedgman?
CREATE TABLE table_name_92 (score VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_72 WHERE attendance > 66 OFFSET 926
When hasn an Attendance larger than 66,926?
CREATE TABLE table_name_72 (date VARCHAR, attendance INTEGER)
SELECT high_points FROM table_name_22 WHERE opponent = "mid-michigan destroyers" AND date = "january 3"
What was the high points for opponent Mid-Michigan destroyers on January 3?
CREATE TABLE table_name_22 (high_points VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT stadium FROM table_name_27 WHERE clubs = "zooveti tbilisi"
What is the stadium of the zooveti tbilisi club?
CREATE TABLE table_name_27 (stadium VARCHAR, clubs VARCHAR)
SELECT points_against FROM table_name_70 WHERE points_diff = "+96"
What is points sgsinst when points diff is +96?
CREATE TABLE table_name_70 (points_against VARCHAR, points_diff VARCHAR)
SELECT name FROM table_name_34 WHERE date_from = "13 august 2008"
What is the name of the player that was loaned out on 13 August 2008 ?
CREATE TABLE table_name_34 (name VARCHAR, date_from VARCHAR)
SELECT years_for_rockets FROM table_11734041_18 WHERE no_s_ = "55"
Which years had a jersey number 55
CREATE TABLE table_11734041_18 (years_for_rockets VARCHAR, no_s_ VARCHAR)
SELECT AVG(_percentage_of_pop) FROM table_name_17 WHERE country__or_dependent_territory_ = "tunisia" AND average_relative_annual_growth___percentage_ < 1.03
What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03?
CREATE TABLE table_name_17 (_percentage_of_pop INTEGER, country__or_dependent_territory_ VARCHAR, average_relative_annual_growth___percentage_ VARCHAR)
SELECT MAX(draw) FROM table_name_45 WHERE goal_gain = 17 AND game > 14
How many draws did the game after game 14 with goal gain 17 have?
CREATE TABLE table_name_45 (draw INTEGER, goal_gain VARCHAR, game VARCHAR)
SELECT event FROM table_name_8 WHERE venue = "helsinki, finland"
What tournement was held in Helsinki, Finland in 2005?
CREATE TABLE table_name_8 (event VARCHAR, venue VARCHAR)
SELECT Rating FROM Restaurant WHERE ResName = "Subway"
What is the rating of the restaurant Subway?
CREATE TABLE Restaurant (Rating VARCHAR, ResName VARCHAR)