text
stringlengths
293
1.24k
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_10 (type VARCHAR, nat VARCHAR) ### Question: What is the type of POR? ### Answer: SELECT type FROM table_name_10 WHERE nat = "por"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_94 (popular_votes INTEGER, candidate VARCHAR) ### Question: How many votes did candice sjostrom receive? ### Answer: SELECT AVG(popular_votes) FROM table_name_94 WHERE candidate = "candice sjostrom"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_16 (born_died VARCHAR, country VARCHAR) ### Question: What is the Born-Died date for the Representative of Italy? ### Answer: SELECT born_died FROM table_name_16 WHERE country = "italy"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_78 (year VARCHAR, day_of_week VARCHAR, rank VARCHAR) ### Question: What is the year of the movie with an opening day on Friday with a rank 10? ### Answer: SELECT COUNT(year) FROM table_name_78 WHERE day_of_week = "friday" AND rank = 10
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_37 (date VARCHAR, catalog VARCHAR) ### Question: Which date had the catalog designation of ha-m 2230? ### Answer: SELECT date FROM table_name_37 WHERE catalog = "ha-m 2230"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_29487895_2 (series_premiere VARCHAR, source_s_ VARCHAR) ### Question: What is the premiere date of the american disney xd tron uprising site? ### Answer: SELECT series_premiere FROM table_29487895_2 WHERE source_s_ = "American Disney XD Tron Uprising Site"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342149_24 (result VARCHAR, first_elected VARCHAR) ### Question: Name the result for first elected of 1920 ### Answer: SELECT result FROM table_1342149_24 WHERE first_elected = 1920
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25244412_2 (total_electricity__gw VARCHAR, _percentage_renewable VARCHAR) ### Question: How many data was given the total electricity in GW-h if % renewable is 92.3%? ### Answer: SELECT COUNT(total_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE _percentage_renewable = "92.3%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_69 (laps INTEGER, grid VARCHAR) ### Question: What is the average number of laps for grid 8? ### Answer: SELECT AVG(laps) FROM table_name_69 WHERE grid = 8
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2159547_3 (vacator VARCHAR, successor VARCHAR) ### Question: How many people vacated to successor Dave E. Satterfield, Jr. (d)? ### Answer: SELECT COUNT(vacator) FROM table_2159547_3 WHERE successor = "Dave E. Satterfield, Jr. (D)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_20 (pick__number INTEGER, position VARCHAR, college VARCHAR) ### Question: Can you tell me the sum of Pick # that has the Position of sb, and the College of minnesota? ### Answer: SELECT SUM(pick__number) FROM table_name_20 WHERE position = "sb" AND college = "minnesota"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_97 (tie_no VARCHAR, away_team VARCHAR) ### Question: What was the tie no when Wrexham was the away team? ### Answer: SELECT tie_no FROM table_name_97 WHERE away_team = "wrexham"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_29 (goal_difference VARCHAR, points_1 VARCHAR, goals_against VARCHAR, goals_for VARCHAR) ### Question: What is the goal difference where the goals against is less than 54, goals for is greater than 51 and points 1 is 63? ### Answer: SELECT goal_difference FROM table_name_29 WHERE goals_against < 54 AND goals_for > 51 AND points_1 = "63"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (country VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What is Country, when To par is "+1", and when Score is "72-71-70-72=285"? ### Answer: SELECT country FROM table_name_98 WHERE to_par = "+1" AND score = 72 - 71 - 70 - 72 = 285
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (fourth VARCHAR, second VARCHAR) ### Question: Who is fourth when Anders Martinson USA is second? ### Answer: SELECT fourth FROM table_name_98 WHERE second = "anders martinson usa"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2446333_2 (date VARCHAR, sprint_winner VARCHAR) ### Question: Name the date for sprint winner mexico ### Answer: SELECT date FROM table_2446333_2 WHERE sprint_winner = "Mexico"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23287683_1 (title VARCHAR, series__number VARCHAR) ### Question: How many episodes had a series number of 95? ### Answer: SELECT COUNT(title) FROM table_23287683_1 WHERE series__number = 95
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_22 (year INTEGER, pts INTEGER) ### Question: What is the latesr year that has more points than 0? ### Answer: SELECT MAX(year) FROM table_name_22 WHERE pts > 0
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_84 (arena VARCHAR, points VARCHAR) ### Question: What is the Arena when there were 65 points? ### Answer: SELECT arena FROM table_name_84 WHERE points = "65"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11207040_5 (lowest INTEGER, stadium VARCHAR) ### Question: What is the lowest attandance recorded at Cappielow? ### Answer: SELECT MIN(lowest) FROM table_11207040_5 WHERE stadium = "Cappielow"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_1 (week VARCHAR, date VARCHAR) ### Question: Which week starts on December 28, 1997? ### Answer: SELECT week FROM table_name_1 WHERE date = "december 28, 1997"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_58 (attendance VARCHAR, loss VARCHAR) ### Question: What was the attendance that had a loss of Ponson (1-5)? ### Answer: SELECT attendance FROM table_name_58 WHERE loss = "ponson (1-5)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_89 (team_1 INTEGER, agg VARCHAR) ### Question: What's the lowest team 1 number that had asolo fonte (veneto b) as the Agg.? ### Answer: SELECT MIN(team_1) FROM table_name_89 WHERE agg = "asolo fonte (veneto b)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_255812_1 (city___municipality VARCHAR, mayor VARCHAR) ### Question: What are all the metropolis / municipality where mayor is helen c. De castro ### Answer: SELECT city___municipality FROM table_255812_1 WHERE mayor = "Helen C. De Castro"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_43 (stories VARCHAR, rank VARCHAR) ### Question: Which stories have a rank of 14? ### Answer: SELECT stories FROM table_name_43 WHERE rank = "14"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_11 (date VARCHAR, raiders_points VARCHAR) ### Question: What day did the Raiders score 17? ### Answer: SELECT date FROM table_name_11 WHERE raiders_points = 17
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_90 (february INTEGER, opponent VARCHAR) ### Question: What is the earliest day that had a game against the Boston Bruins? ### Answer: SELECT MIN(february) FROM table_name_90 WHERE opponent = "boston bruins"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_6 (score VARCHAR, away_team VARCHAR) ### Question: What is the score for the away team, Ipswich Town? ### Answer: SELECT score FROM table_name_6 WHERE away_team = "ipswich town"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25926120_3 (awardee_s_ VARCHAR, name_of_award VARCHAR) ### Question: Who won best actor? ### Answer: SELECT awardee_s_ FROM table_25926120_3 WHERE name_of_award = "Best Actor"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Documents_with_expenses (document_id VARCHAR, document_type_code VARCHAR); CREATE TABLE Documents (document_id VARCHAR, document_type_code VARCHAR) ### Question: Show ids for all documents in type CV without expense budgets. ### Answer: SELECT document_id FROM Documents WHERE document_type_code = "CV" EXCEPT SELECT document_id FROM Documents_with_expenses
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_83 (date VARCHAR, athlete VARCHAR, event VARCHAR) ### Question: What day did Chris Maddocks compete in the 35000 m? ### Answer: SELECT date FROM table_name_83 WHERE athlete = "chris maddocks" AND event = "35000 m"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Staff (first_name VARCHAR, last_name VARCHAR, staff_address_id VARCHAR); CREATE TABLE Addresses (address_id VARCHAR, city VARCHAR) ### Question: Find out the first name and last name of staff lived in city Damianfort. ### Answer: SELECT T2.first_name, T2.last_name FROM Addresses AS T1 JOIN Staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T1.city = "Damianfort"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24765815_2 (score VARCHAR, player VARCHAR) ### Question: What was the score for the game in which Samir Nasri played? ### Answer: SELECT score FROM table_24765815_2 WHERE player = "Samir Nasri"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26240481_1 (fbs_opponent VARCHAR, result VARCHAR) ### Question: Who played FBS where the result was L, 62-3? ### Answer: SELECT fbs_opponent FROM table_26240481_1 WHERE result = "L, 62-3"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_49 (money___ VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR) ### Question: What is the total amount of money that has a t2 place, is from the United States for player Leo Diegel? ### Answer: SELECT COUNT(money___) AS $__ FROM table_name_49 WHERE place = "t2" AND country = "united states" AND player = "leo diegel"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15796054_3 (week__number VARCHAR, theme VARCHAR) ### Question: Name the week number for andrew lloyd webber ### Answer: SELECT week__number FROM table_15796054_3 WHERE theme = "Andrew Lloyd Webber"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_96 (team VARCHAR, high_rebounds VARCHAR) ### Question: Name the team which has high rebounds of smith (10) ### Answer: SELECT team FROM table_name_96 WHERE high_rebounds = "smith (10)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_45 (ends_won INTEGER, blank_ends VARCHAR, stolen_ends VARCHAR, locale VARCHAR) ### Question: In italy, when the stolen ends were 10 and blank ends were under 14, what's the lowest ends won? ### Answer: SELECT MIN(ends_won) FROM table_name_45 WHERE stolen_ends = 10 AND locale = "italy" AND blank_ends < 14
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13770460_3 (COUnT VARCHAR, ends VARCHAR) ### Question: How many numbers are ending in 1 year? ### Answer: SELECT COUnT AS n FROM table_13770460_3 WHERE ends = "1 year"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE WINE (Name VARCHAR) ### Question: List the names of all distinct wines in alphabetical order. ### Answer: SELECT DISTINCT Name FROM WINE ORDER BY Name
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_50 (rowers VARCHAR, country VARCHAR) ### Question: Who were the rowers for Great britain? ### Answer: SELECT rowers FROM table_name_50 WHERE country = "great britain"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27753492_2 (womens_doubles VARCHAR, tour VARCHAR) ### Question: Who is the womens doubles on the tour french super series? ### Answer: SELECT womens_doubles FROM table_27753492_2 WHERE tour = "French Super Series"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_99 (home VARCHAR, attendance VARCHAR) ### Question: Which home has an attendance of 507? ### Answer: SELECT home FROM table_name_99 WHERE attendance = 507
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20928649_1 (date VARCHAR, game VARCHAR) ### Question: What was the date of game 6? ### Answer: SELECT date FROM table_20928649_1 WHERE game = 6
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20042805_2 (hadeda_ibis VARCHAR, knobbilled_duck VARCHAR) ### Question: What is the Hadeda Ibis when the Knobbilled Duck is Pied Crow? ### Answer: SELECT hadeda_ibis FROM table_20042805_2 WHERE knobbilled_duck = "Pied Crow"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_84 (year VARCHAR, machine VARCHAR, points VARCHAR) ### Question: In what Year did the RG500 Machine have more than 17 Points? ### Answer: SELECT COUNT(year) FROM table_name_84 WHERE machine = "rg500" AND points > 17
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR) ### Question: Where was d: ~50nm, l: ~600nm geometry researched? ### Answer: SELECT researched_at FROM table_30057479_1 WHERE geometry = "D: ~50nm, L: ~600nm"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_79 (authority VARCHAR, roll VARCHAR, area VARCHAR) ### Question: What's the authority when the roll is less than 234 for the massey east area? ### Answer: SELECT authority FROM table_name_79 WHERE roll < 234 AND area = "massey east"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_72 (events INTEGER, top_10 VARCHAR, cuts_made VARCHAR, top_25 VARCHAR) ### Question: what is the highest events when the cuts made is less than 34, the top-25 is less than 5 and the top-10 is more than 1? ### Answer: SELECT MAX(events) FROM table_name_72 WHERE cuts_made < 34 AND top_25 < 5 AND top_10 > 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_44 (away_team VARCHAR, home_team VARCHAR) ### Question: WHAT IS THE AWAY TEAM WHEN HOME IS LEEDS UNITED? ### Answer: SELECT away_team FROM table_name_44 WHERE home_team = "leeds united"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22496374_1 (height VARCHAR, high_school VARCHAR) ### Question: How many height entries are there for players from bayside high school? ### Answer: SELECT COUNT(height) FROM table_22496374_1 WHERE high_school = "Bayside"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (nationality VARCHAR, round INTEGER) ### Question: Which Nationality has a Round smaller than 3? ### Answer: SELECT nationality FROM table_name_98 WHERE round < 3
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_78 (nationality VARCHAR, team_from VARCHAR) ### Question: Name the Nationality of södertälje sk? ### Answer: SELECT nationality FROM table_name_78 WHERE team_from = "södertälje sk"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE products (code VARCHAR, name VARCHAR, price INTEGER) ### Question: Select the code of the product that is cheapest in each product category. ### Answer: SELECT code, name, MIN(price) FROM products GROUP BY name
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_74 (name VARCHAR, nickname VARCHAR) ### Question: What is the Name listed for the Nickname of Storm? ### Answer: SELECT name FROM table_name_74 WHERE nickname = "storm"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_89 (location_attendance VARCHAR, score VARCHAR) ### Question: What is the location and attendance of the game when the score is 125-100? ### Answer: SELECT location_attendance FROM table_name_89 WHERE score = "125-100"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10812938_4 (college VARCHAR, cfl_team VARCHAR) ### Question: Which college is aligned to the Saskatchewan Roughriders? ### Answer: SELECT college FROM table_10812938_4 WHERE cfl_team = "Saskatchewan Roughriders"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_7 (draft INTEGER, round VARCHAR, nationality VARCHAR, player VARCHAR) ### Question: What is the lowest Draft, when Nationality is "Canada", when Player is "Shane Doan Category:Articles with hCards", and when Round is less than 1? ### Answer: SELECT MIN(draft) FROM table_name_7 WHERE nationality = "canada" AND player = "shane doan category:articles with hcards" AND round < 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1008653_9 (country___endonym__ VARCHAR, capital___endonym__ VARCHAR) ### Question: How many countries (endonym) has the capital (endonym) of Jakarta? ### Answer: SELECT COUNT(country___endonym__) FROM table_1008653_9 WHERE capital___endonym__ = "Jakarta"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11658094_1 (institution VARCHAR, joined VARCHAR) ### Question: Which institutions joined in 1993 ### Answer: SELECT institution FROM table_11658094_1 WHERE joined = "1993"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_86 (date VARCHAR, tie_no VARCHAR) ### Question: Which Date has a Tie no of 11? ### Answer: SELECT date FROM table_name_86 WHERE tie_no = "11"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27021001_1 (incumbent VARCHAR, result VARCHAR) ### Question: How many incumbents were the result of sanford bishop (d) 57% joseph mccormick (r) 43%? ### Answer: SELECT COUNT(incumbent) FROM table_27021001_1 WHERE result = "Sanford Bishop (D) 57% Joseph McCormick (R) 43%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_64 (tournament VARCHAR, runner_s__up VARCHAR) ### Question: In which tournament was Gil Morgan the runner-up? ### Answer: SELECT tournament FROM table_name_64 WHERE runner_s__up = "gil morgan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_88 (Id VARCHAR) ### Question: What is 1994 Grand Slam Tournament if 1993 is also grand slam tournaments? ### Answer: SELECT 1994 FROM table_name_88 WHERE 1993 = "grand slam tournaments"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_67 (intercontinental_cup_1998 VARCHAR, copa_mercosur_1998 VARCHAR) ### Question: what is the runner-up for the intercontinental cup ### Answer: SELECT intercontinental_cup_1998 FROM table_name_67 WHERE copa_mercosur_1998 = "runner-up"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_9 (result VARCHAR, episode VARCHAR, original_artist VARCHAR) ### Question: What result did Janis Ian have in the episode of top 3? ### Answer: SELECT result FROM table_name_9 WHERE episode = "top 3" AND original_artist = "janis ian"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_36 (state VARCHAR, association_agreement VARCHAR) ### Question: Which state has a 2010-05-01 (saa) association agreement? ### Answer: SELECT state FROM table_name_36 WHERE association_agreement = "2010-05-01 (saa)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_26 (area__km²_ INTEGER, total__km²_ VARCHAR, province VARCHAR, comune VARCHAR) ### Question: What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2? ### Answer: SELECT MIN(area__km²_) FROM table_name_26 WHERE province = "napoli" AND comune = "piano di sorrento" AND total__km²_ < 121.14
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_95 (top_25 VARCHAR, top_10 VARCHAR, cuts_made VARCHAR) ### Question: What is the total number of top-25 that has a top-10 smaller than 4 with 0 cuts? ### Answer: SELECT COUNT(top_25) FROM table_name_95 WHERE top_10 < 4 AND cuts_made > 0
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_56 (result VARCHAR, opponent VARCHAR) ### Question: What was the result when the opponent was Arsenal? ### Answer: SELECT result FROM table_name_56 WHERE opponent = "arsenal"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Financial_transactions (transaction_id VARCHAR, transaction_amount INTEGER) ### Question: Show ids for all transactions whose amounts are greater than the average. ### Answer: SELECT transaction_id FROM Financial_transactions WHERE transaction_amount > (SELECT AVG(transaction_amount) FROM Financial_transactions)
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_87 (number_of_bearers_2008 INTEGER, surname VARCHAR) ### Question: What is Highest Number of Bearers 2008, when Surname is Jacobsen? ### Answer: SELECT MAX(number_of_bearers_2008) FROM table_name_87 WHERE surname = "jacobsen"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_69 (city VARCHAR, first_season_of_current_spell_in_segunda_división INTEGER) ### Question: Which city has a First season of current spell in Segunda División smaller than 2013? ### Answer: SELECT city FROM table_name_69 WHERE first_season_of_current_spell_in_segunda_división < 2013
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_71 (date VARCHAR, attendance VARCHAR) ### Question: Which Date has an Attendance of 54,626? ### Answer: SELECT date FROM table_name_71 WHERE attendance = "54,626"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_72 (fumb_td INTEGER, int_td VARCHAR, fumb_f VARCHAR) ### Question: Which Fumb TD has an Int TD of 1, and a Fumb F. smaller than 1? ### Answer: SELECT MIN(fumb_td) FROM table_name_72 WHERE int_td = 1 AND fumb_f < 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2511876_1 (playoffs VARCHAR, open_cup VARCHAR) ### Question: Name the number of playoffs for 3rd round ### Answer: SELECT COUNT(playoffs) FROM table_2511876_1 WHERE open_cup = "3rd Round"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_3 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR) ### Question: what is the chassis when the entrant is mild seven renault f1 team and the driver is jarno trulli? ### Answer: SELECT chassis FROM table_name_3 WHERE entrant = "mild seven renault f1 team" AND driver = "jarno trulli"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_65 (date VARCHAR, save VARCHAR) ### Question: What was the date when the game had a save by Aguilera (5)? ### Answer: SELECT date FROM table_name_65 WHERE save = "aguilera (5)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_63 (region VARCHAR, catalog VARCHAR) ### Question: In what Region is Catalog number 885 380-1? ### Answer: SELECT region FROM table_name_63 WHERE catalog = "885 380-1"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_75 (crowd INTEGER, venue VARCHAR) ### Question: What was the largest crowd at vfl park? ### Answer: SELECT MAX(crowd) FROM table_name_75 WHERE venue = "vfl park"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2417390_4 (vacator VARCHAR, district VARCHAR) ### Question: Who was the vacator for the district of Nebraska at-large? ### Answer: SELECT vacator FROM table_2417390_4 WHERE district = "Nebraska At-large"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_6 (tournament VARCHAR, score VARCHAR) ### Question: What Tournament has a Score of 5–7, 2–6? ### Answer: SELECT tournament FROM table_name_6 WHERE score = "5–7, 2–6"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (episodes VARCHAR, first_airdate VARCHAR) ### Question: How many episodes were in the season that first aired on September 22, 1989? ### Answer: SELECT episodes FROM table_name_98 WHERE first_airdate = "september 22, 1989"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR) ### Question: What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade? ### Answer: SELECT tournament FROM table_name_33 WHERE partner = "nicole thijssen" AND opponent_in_the_final = "nina bratchikova & frederica piedade"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_20 (rd__number INTEGER, pl_gp VARCHAR, reg_gp VARCHAR) ### Question: What is the largest Rd# for a PI GP greater than 0 and a Reg GP less than 62? ### Answer: SELECT MAX(rd__number) FROM table_name_20 WHERE pl_gp > 0 AND reg_gp < 62
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_53 (tournament VARCHAR) ### Question: Which 2007 has a 2008 of 1r, and a Tournament of wimbledon? ### Answer: SELECT 2007 FROM table_name_53 WHERE 2008 = "1r" AND tournament = "wimbledon"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_48 (position VARCHAR, college VARCHAR, round VARCHAR, pick__number VARCHAR) ### Question: Round larger than 6, and a Pick # smaller than 25, and a College of southern Illinois has what position? ### Answer: SELECT position FROM table_name_48 WHERE round > 6 AND pick__number < 25 AND college = "southern illinois"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_22 (events INTEGER, earnings VARCHAR, average VARCHAR) ### Question: Which Events has Earnings of $113,259, and an Average larger than 229.5? ### Answer: SELECT MAX(events) FROM table_name_22 WHERE earnings = "$113,259" AND average > 229.5
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR) ### Question: How many years did the school have a mathetmatics score of 98.02? ### Answer: SELECT COUNT(science) FROM table_2534578_1 WHERE mathematics = "98.02"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_48 (race VARCHAR, course VARCHAR, jockey VARCHAR, margin VARCHAR) ### Question: what is the race when the jockey is frankie dettori, the margin is more than 3 and the course is yarmouth? ### Answer: SELECT race FROM table_name_48 WHERE jockey = "frankie dettori" AND margin > 3 AND course = "yarmouth"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_82 (chassis VARCHAR, team VARCHAR, engine VARCHAR, drivers VARCHAR) ### Question: What chassis belongs with the Cosworth Engine driven by Scott Pruett on the Dick Simon Racing team? ### Answer: SELECT chassis FROM table_name_82 WHERE engine = "cosworth" AND drivers = "scott pruett" AND team = "dick simon racing"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27722408_2 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had the most rebounds and how many did they have on October 16? ### Answer: SELECT high_rebounds FROM table_27722408_2 WHERE date = "October 16"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_41 (total INTEGER, matches VARCHAR, rank VARCHAR) ### Question: What is the total when matches is less than 3, and rank is smaller than 2? ### Answer: SELECT MIN(total) FROM table_name_41 WHERE matches < 3 AND rank < 2
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_17 (nationality VARCHAR, ship VARCHAR) ### Question: What is the Nationality of the Aracataca Ship? ### Answer: SELECT nationality FROM table_name_17 WHERE ship = "aracataca"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_99 (constructor VARCHAR, time_retired VARCHAR) ### Question: What is the constructor for time/retired of handling? ### Answer: SELECT constructor FROM table_name_99 WHERE time_retired = "handling"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR) ### Question: What day is essendon the home team? ### Answer: SELECT date FROM table_name_69 WHERE home_team = "essendon"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_75 (party VARCHAR, residence VARCHAR) ### Question: What political party does the person from San Diego belong to? ### Answer: SELECT party FROM table_name_75 WHERE residence = "san diego"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_55 (frequency_mhz INTEGER, erp_w INTEGER) ### Question: What is the frequency MHz of the ERP W's greater than 250? ### Answer: SELECT AVG(frequency_mhz) FROM table_name_55 WHERE erp_w > 250
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_49 (date VARCHAR, home_team VARCHAR) ### Question: When the Home team was north melbourne what was the Date of the game? ### Answer: SELECT date FROM table_name_49 WHERE home_team = "north melbourne"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR, points VARCHAR, october VARCHAR) ### Question: Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals? ### Answer: SELECT SUM(game) FROM table_name_5 WHERE points < 10 AND october > 12 AND opponent = "@ washington capitals"