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_97 (away VARCHAR, round VARCHAR, club VARCHAR) ### Question: What is NK Rijeka's away score in Round 2? ### Answer: SELECT away FROM table_name_97 WHERE round < 2 AND club = "nk rijeka"
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_54 (location VARCHAR, opponent VARCHAR) ### Question: what is the location when the opponent is aleksandr pitchkounov? ### Answer: SELECT location FROM table_name_54 WHERE opponent = "aleksandr pitchkounov"
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 (Leading VARCHAR, score VARCHAR) ### Question: Who was the Leading Scorer in the Game with a Score of 96-87? ### Answer: SELECT Leading AS scorer FROM table_name_90 WHERE score = "96-87"
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 (location VARCHAR, event VARCHAR) ### Question: What is the location when the event was November reign? ### Answer: SELECT location FROM table_name_84 WHERE event = "november reign"
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_19753079_4 (result VARCHAR, first_elected VARCHAR) ### Question: Name the result for first elected being 1992 ### Answer: SELECT result FROM table_19753079_4 WHERE first_elected = 1992
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_47 (home VARCHAR, date VARCHAR) ### Question: Who was the home team on November 22? ### Answer: SELECT home FROM table_name_47 WHERE date = "november 22"
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 (tsongas__d_ VARCHAR, date VARCHAR) ### Question: I want the tsongas of may 22, 2007 ### Answer: SELECT tsongas__d_ FROM table_name_45 WHERE date = "may 22, 2007"
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 (surface VARCHAR, finalist VARCHAR) ### Question: What was the surface for finalist Justine Henin? ### Answer: SELECT surface FROM table_name_56 WHERE finalist = "justine henin"
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) ### Question: Name the 2010 for 2008 of 1r and tournament of us open ### Answer: SELECT 2010 FROM table_name_33 WHERE 2008 = "1r" AND 2011 = "1r" AND tournament = "us open"
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 (place INTEGER, losses VARCHAR, ties VARCHAR, points VARCHAR) ### Question: Name the sum of place with ties larger than 0 and point sof 7 qc and losses more than 2 ### Answer: SELECT SUM(place) FROM table_name_58 WHERE ties > 0 AND points = "7 qc" AND losses > 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 Circulation_History (Id VARCHAR); CREATE TABLE Employees (Id VARCHAR) ### Question: Which employee has showed up in most circulation history documents. List the employee's name and the number of drafts and copies. ### Answer: SELECT Employees.employee_name, COUNT(*) FROM Employees JOIN Circulation_History ON Circulation_History.employee_id = Employees.employee_id GROUP BY Circulation_History.document_id, Circulation_History.draft_number, Circulation_History.copy_number ORDER BY COUNT(*) DESC LIMIT 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_79 (equipment VARCHAR, points VARCHAR, position VARCHAR) ### Question: What is Equipment, when Points is less than 6, and when Position is 53? ### Answer: SELECT equipment FROM table_name_79 WHERE points < 6 AND position = 53
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 (bronze INTEGER, rank VARCHAR, silver VARCHAR) ### Question: What is the lest amount of bronzes that ranked 2 and has less silvers than 0? ### Answer: SELECT MIN(bronze) FROM table_name_79 WHERE rank = 2 AND silver < 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_15 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent for the game played on September 19, 1994? ### Answer: SELECT opponent FROM table_name_15 WHERE date = "september 19, 1994"
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 (iata VARCHAR, airport VARCHAR) ### Question: What kind of IATA that has a Airport of berlin schönefeld airport? ### Answer: SELECT iata FROM table_name_83 WHERE airport = "berlin schönefeld airport"
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_1342379_23 (district VARCHAR, candidates VARCHAR) ### Question: what's the district with candidates being john e. rankin (d) unopposed ### Answer: SELECT district FROM table_1342379_23 WHERE candidates = "John E. Rankin (D) Unopposed"
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 (snatch INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) ### Question: WHAT IS THE SNATCH WITH TOTAL KG SMALLER THAN 318, AND CLEAN JERK LARGER THAN 175? ### Answer: SELECT MIN(snatch) FROM table_name_45 WHERE total__kg_ < 318 AND clean_ & _jerk > 175
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 (pages INTEGER, translated_title VARCHAR) ### Question: I want the sum of pages for thistle among roses ### Answer: SELECT SUM(pages) FROM table_name_36 WHERE translated_title = "thistle among roses"
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 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1? ### Answer: SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 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_68 (goals_against VARCHAR, played INTEGER) ### Question: What is the total number of goals scored against clubs that have played more than 42 times? ### Answer: SELECT COUNT(goals_against) FROM table_name_68 WHERE played > 42
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_77 (game INTEGER, opponent VARCHAR) ### Question: How many games total were played against @ Boston Bruins this season? ### Answer: SELECT SUM(game) FROM table_name_77 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_56 (to_par VARCHAR, finish VARCHAR) ### Question: What is the To par of the player with a t14 Finish? ### Answer: SELECT to_par FROM table_name_56 WHERE finish = "t14"
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_85 (laps INTEGER, time_retired VARCHAR, driver VARCHAR) ### Question: how many laps have a time/retired of +1 lap and mark blundell is the driver? ### Answer: SELECT AVG(laps) FROM table_name_85 WHERE time_retired = "+1 lap" AND driver = "mark blundell"
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_34 (elected VARCHAR) ### Question: Who is the second member that was elected in 1555? ### Answer: SELECT 2 AS nd_member FROM table_name_34 WHERE elected = "1555"
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_19 (date_of_birth__age_ VARCHAR, player VARCHAR) ### Question: When was nese malifa born? ### Answer: SELECT date_of_birth__age_ FROM table_name_19 WHERE player = "nese malifa"
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_22875514_3 (assists INTEGER, points VARCHAR) ### Question: What is the most assists for points 129-3.9? ### Answer: SELECT MAX(assists) FROM table_22875514_3 WHERE points = "129-3.9"
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 (tickets_available_since VARCHAR, venue VARCHAR, date VARCHAR) ### Question: How many tickets were available at Halle Tony Garnier on June 15, 2009? ### Answer: SELECT tickets_available_since FROM table_name_75 WHERE venue = "halle tony garnier" AND date = "june 15, 2009"
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_16493961_1 (driver VARCHAR, date VARCHAR, team VARCHAR) ### Question: Name the driver for june 23 and team of penske racing ### Answer: SELECT driver FROM table_16493961_1 WHERE date = "June 23" AND team = "Penske 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_name_48 (medal VARCHAR, weight VARCHAR, boxer VARCHAR) ### Question: What medal did Michael Conlon, with a weight of fly, win? ### Answer: SELECT medal FROM table_name_48 WHERE weight = "fly" AND boxer = "michael conlon"
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_54 (Id VARCHAR) ### Question: What's the 1881 with 1961 in 1851? ### Answer: SELECT 1881 FROM table_name_54 WHERE 1851 = "1961"
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_14245_3 (population__1931__in_1 VARCHAR, capital VARCHAR) ### Question: Name the population when the capital is tarnopol ### Answer: SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE capital = "Tarnopol"
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 (result VARCHAR, artist VARCHAR) ### Question: Name the result for linn nygård ### Answer: SELECT result FROM table_name_63 WHERE artist = "linn nygård"
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_35 (position VARCHAR, mls_team VARCHAR, pick__number VARCHAR) ### Question: What position does the Colorado Rapids pick after 15 play? ### Answer: SELECT position FROM table_name_35 WHERE mls_team = "colorado rapids" AND pick__number > 15
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_77 (home VARCHAR, venue VARCHAR) ### Question: Who was the home team for the match at Stadion pod Vrmcem? ### Answer: SELECT home FROM table_name_77 WHERE venue = "stadion pod vrmcem"
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 (record VARCHAR, game VARCHAR, score VARCHAR) ### Question: What was the record for less than 78 games and a score of 114–109 (ot)? ### Answer: SELECT record FROM table_name_69 WHERE game < 78 AND score = "114–109 (ot)"
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 (status VARCHAR, score VARCHAR) ### Question: Which status accompanies the score 21.5? ### Answer: SELECT status FROM table_name_94 WHERE score = 21.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_83 (away_team VARCHAR) ### Question: What was Richmond's score when it was the away team? ### Answer: SELECT away_team AS score FROM table_name_83 WHERE away_team = "richmond"
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_134729_3 (format VARCHAR, call_sign VARCHAR) ### Question: What station has the call number K213cl ### Answer: SELECT format FROM table_134729_3 WHERE call_sign = "K213CL"
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_23 (date VARCHAR, visitor VARCHAR) ### Question: What is the date of the game with Detroit as the visitor team? ### Answer: SELECT date FROM table_name_23 WHERE visitor = "detroit"
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_12 (location VARCHAR, name VARCHAR) ### Question: What is the Location for the woodburn dragstrip? ### Answer: SELECT location FROM table_name_12 WHERE name = "woodburn dragstrip"
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_16226584_1 (mi_from_kingston VARCHAR, length_feet VARCHAR) ### Question: When the railroad length is 362 feet how many miles is it from kingston? ### Answer: SELECT mi_from_kingston FROM table_16226584_1 WHERE length_feet = 362
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 (silver INTEGER, nation VARCHAR, gold VARCHAR) ### Question: What is the sum of silver medals of the nation Cuba, which has less than 0 gold? ### Answer: SELECT SUM(silver) FROM table_name_7 WHERE nation = "cuba" AND gold < 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_9 (set_3 VARCHAR, set_1 VARCHAR) ### Question: Which Set 3 has a Set 1 of 25–20? ### Answer: SELECT set_3 FROM table_name_9 WHERE set_1 = "25–20"
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_40 (wins INTEGER, player VARCHAR) ### Question: How many average wins does bruce fleisher have? ### Answer: SELECT AVG(wins) FROM table_name_40 WHERE player = "bruce fleisher"
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 (club VARCHAR, league_division VARCHAR) ### Question: What club has a league/division of fourth division? ### Answer: SELECT club FROM table_name_95 WHERE league_division = "fourth division"
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_31 (qual_2 VARCHAR, team VARCHAR, qual_1 VARCHAR) ### Question: What is the second qualifying time for the dale coyne racing team with a first qualifying time of 1:00.081? ### Answer: SELECT qual_2 FROM table_name_31 WHERE team = "dale coyne racing" AND qual_1 = "1:00.081"
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_27 (res VARCHAR, opponent VARCHAR) ### Question: What was the result of the fight with Tony Halme? ### Answer: SELECT res FROM table_name_27 WHERE opponent = "tony halme"
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 (goal VARCHAR, competition VARCHAR, result VARCHAR) ### Question: What was Goal that where Competition of international friendly, and a Result of 2–1? ### Answer: SELECT goal FROM table_name_65 WHERE competition = "international friendly" AND result = "2–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_65 (match VARCHAR, team VARCHAR) ### Question: What is the Match for skra warszawa? ### Answer: SELECT match FROM table_name_65 WHERE team = "skra warszawa"
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_70 (college VARCHAR, overall VARCHAR, name VARCHAR) ### Question: What college has an overall less than 243, and tony green as the name? ### Answer: SELECT college FROM table_name_70 WHERE overall < 243 AND name = "tony green"
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 (against VARCHAR, points VARCHAR, drawn VARCHAR) ### Question: How many Againsts have Points larger than 31 and a Drawn larger than 6? ### Answer: SELECT COUNT(against) FROM table_name_96 WHERE points > 31 AND drawn > 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_18 (type VARCHAR, in_service VARCHAR, vessel VARCHAR) ### Question: What type of ship is a Kobben class vessel that has been in service longer than 2? ### Answer: SELECT type FROM table_name_18 WHERE in_service > 2 AND vessel = "kobben class"
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 (additional_notes VARCHAR, location VARCHAR) ### Question: What are the additional notes for Cotabato? ### Answer: SELECT additional_notes FROM table_name_79 WHERE location = "cotabato"
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 (total VARCHAR, set_3 VARCHAR, set_2 VARCHAR) ### Question: What is the Total when the Set 3 is 22–25, and a Set 2 is 25–20? ### Answer: SELECT total FROM table_name_58 WHERE set_3 = "22–25" AND set_2 = "25–20"
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 (name VARCHAR, position VARCHAR) ### Question: for the position of rb what is the name? ### Answer: SELECT name FROM table_name_67 WHERE position = "rb"
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_62 (leading_scorer VARCHAR, date VARCHAR) ### Question: Who was the leading scorer on November 2, 2007? ### Answer: SELECT leading_scorer FROM table_name_62 WHERE date = "november 2, 2007"
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_68 (game_site VARCHAR, date VARCHAR) ### Question: Date of september 25, 1983 is what game site? ### Answer: SELECT game_site FROM table_name_68 WHERE date = "september 25, 1983"
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 (other_party VARCHAR, democratic VARCHAR) ### Question: Who was the other party nominee that ran against Democratic Rick Boucher? ### Answer: SELECT other_party FROM table_name_98 WHERE democratic = "rick boucher"
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_25131572_2 (fox_int_channels_air_date VARCHAR, series__number VARCHAR) ### Question: How many times was episode 5 in the series aired on Fox int.? ### Answer: SELECT COUNT(fox_int_channels_air_date) FROM table_25131572_2 WHERE series__number = 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_25 (lead VARCHAR, left_bloc VARCHAR) ### Question: Name the lead with left bloc of 8.4% ### Answer: SELECT lead FROM table_name_25 WHERE left_bloc = "8.4%"
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_21 (sport VARCHAR, event VARCHAR) ### Question: Which Sport had an Event of men's 400 m hurdles? ### Answer: SELECT sport FROM table_name_21 WHERE event = "men's 400 m hurdles"
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 (outcome VARCHAR, partner VARCHAR, date VARCHAR) ### Question: What was the outcome on 11 October 2009, when his partner was Jordan Kerr? ### Answer: SELECT outcome FROM table_name_72 WHERE partner = "jordan kerr" AND date = "11 october 2009"
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 (set_2 VARCHAR, set_1 VARCHAR, score VARCHAR) ### Question: Which Set 2 has a Set 1 of 25–15, and a Score of 3–0? ### Answer: SELECT set_2 FROM table_name_41 WHERE set_1 = "25–15" AND score = "3–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_17 (region VARCHAR, year VARCHAR) ### Question: Which region had a year March 10, 1998? ### Answer: SELECT region FROM table_name_17 WHERE year = "march 10, 1998"
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 (winning_team VARCHAR, circuit VARCHAR) ### Question: Who was the winning team at Zandvoort? ### Answer: SELECT winning_team FROM table_name_6 WHERE circuit = "zandvoort"
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 postseason (YEAR VARCHAR, ties VARCHAR) ### Question: How many games in 1885 postseason resulted in ties (that is, the value of "ties" is '1')? ### Answer: SELECT COUNT(*) FROM postseason WHERE YEAR = 1885 AND ties = 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_11677100_17 (school VARCHAR, player VARCHAR) ### Question: How many schools did Bubba Starling attend? ### Answer: SELECT COUNT(school) FROM table_11677100_17 WHERE player = "Bubba Starling"
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 (year INTEGER, lok_sabha VARCHAR) ### Question: What is the lowest Year, when Lok Sabha is "4th Lok Sabha"? ### Answer: SELECT MIN(year) FROM table_name_53 WHERE lok_sabha = "4th lok sabha"
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_38 (kitmaker VARCHAR, team VARCHAR) ### Question: Who is the kitmaker for Fc Augsburg? ### Answer: SELECT kitmaker FROM table_name_38 WHERE team = "fc augsburg"
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_31 (position VARCHAR, pick INTEGER) ### Question: Which position has a pick greater than 28? ### Answer: SELECT position FROM table_name_31 WHERE pick > 28
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 (result VARCHAR, date VARCHAR) ### Question: What was the score of the Chiefs November 27, 1994 game? ### Answer: SELECT result FROM table_name_74 WHERE date = "november 27, 1994"
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 (goal_difference INTEGER, position VARCHAR, played VARCHAR) ### Question: What is the lowest Goal Difference, when Position is "7", and when Played is greater than 30? ### Answer: SELECT MIN(goal_difference) FROM table_name_1 WHERE position = 7 AND played > 30
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 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR) ### Question: What is the termination of mission date of the representative with a presentation of credentials date on July 4, 1898? ### Answer: SELECT termination_of_mission FROM table_name_58 WHERE presentation_of_credentials = "july 4, 1898"
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_73 (country VARCHAR, champion VARCHAR) ### Question: What country does jocelyne bourassa play for? ### Answer: SELECT country FROM table_name_73 WHERE champion = "jocelyne bourassa"
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_11793221_4 (commander VARCHAR, complement VARCHAR) ### Question: Name the commander of 167 off 2348 men ### Answer: SELECT commander FROM table_11793221_4 WHERE complement = "167 off 2348 men"
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_2 (joined VARCHAR, founded VARCHAR, current_conference VARCHAR) ### Question: What joined that was founded prior to year 1856 and whose current conference is the Big South (NCAA Division I)? ### Answer: SELECT joined FROM table_name_2 WHERE founded < 1856 AND current_conference = "big south (ncaa division i)"
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_1952065_4 (division_championships VARCHAR, teams_with_division_titles VARCHAR) ### Question: How many division championships did the Pittsburgh Steelers have? ### Answer: SELECT division_championships FROM table_1952065_4 WHERE teams_with_division_titles = "Pittsburgh Steelers"
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_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones ### Answer: SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = "alan jones"
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 (venue VARCHAR, result VARCHAR) ### Question: Where was the competition that took place that had a 5-1 result? ### Answer: SELECT venue FROM table_name_7 WHERE result = "5-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 Products (name VARCHAR, price VARCHAR) ### Question: Select the name and price of the cheapest product. ### Answer: SELECT name, price FROM Products ORDER BY price LIMIT 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_28365816_2 (tournament_venue__city_ VARCHAR, conference VARCHAR) ### Question: What tournament venue is listed during the Missouri Valley Conference? ### Answer: SELECT tournament_venue__city_ FROM table_28365816_2 WHERE conference = "Missouri Valley conference"
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_27501030_7 (decision VARCHAR, opponent VARCHAR) ### Question: What is the decision when the opponents are atlanta thrashers? ### Answer: SELECT decision FROM table_27501030_7 WHERE opponent = "Atlanta Thrashers"
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 (engine VARCHAR, team VARCHAR, drivers VARCHAR) ### Question: What engine does Chip Mead of Parts Washer Service use? ### Answer: SELECT engine FROM table_name_36 WHERE team = "parts washer service" AND drivers = "chip mead"
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_1342233_42 (district VARCHAR, incumbent VARCHAR) ### Question: What district was Harold Earthman the incumbent in? ### Answer: SELECT district FROM table_1342233_42 WHERE incumbent = "Harold Earthman"
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_23 (winner VARCHAR, tournament VARCHAR) ### Question: What is the winners name at the western open? ### Answer: SELECT winner FROM table_name_23 WHERE tournament = "western open"
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 (goals_conceded INTEGER, draw VARCHAR, played VARCHAR) ### Question: Name the Goals Conceded which has a Draw of 0 and a Played larger than 0? ### Answer: SELECT AVG(goals_conceded) FROM table_name_48 WHERE draw = 0 AND played > 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_16864968_7 (score VARCHAR, opponent VARCHAR) ### Question: What was the final score when the Maple Leafs played the Columbus Blue Jackets? ### Answer: SELECT score FROM table_16864968_7 WHERE opponent = "Columbus Blue Jackets"
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 (game VARCHAR, score VARCHAR, points VARCHAR) ### Question: How many Games have a Score of 5–4, and Points smaller than 49? ### Answer: SELECT COUNT(game) FROM table_name_96 WHERE score = "5–4" AND points < 49
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 (sspec_number VARCHAR, frequency VARCHAR) ### Question: What is sSpec Number, when Frequency is 1 GHZ? ### Answer: SELECT sspec_number FROM table_name_98 WHERE frequency = "1 ghz"
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_11622924_1 (purse__$__ VARCHAR, score VARCHAR) ### Question: How much was the prize in the tournament where the winning score was 289 (9)? ### Answer: SELECT purse__$__ FROM table_11622924_1 WHERE score = "289 (9)"
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_14006_1 (bleeding_time VARCHAR, condition VARCHAR) ### Question: what's the bleeding time with condition being factor v deficiency ### Answer: SELECT bleeding_time FROM table_14006_1 WHERE condition = "Factor V deficiency"
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 (population_1961 INTEGER, administrative_county VARCHAR, population_1891 VARCHAR) ### Question: What is the Population 1961 of West Sussex with a Population of 120,952 or less? ### Answer: SELECT SUM(population_1961) FROM table_name_22 WHERE administrative_county = "west sussex" AND population_1891 < 120 OFFSET 952
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_20855452_4 (points VARCHAR, player VARCHAR) ### Question: How many points did shahar pe'er score? ### Answer: SELECT points AS won FROM table_20855452_4 WHERE player = "Shahar Pe'er"
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_team VARCHAR, venue VARCHAR) ### Question: What was the home team score at VFL Park? ### Answer: SELECT home_team AS score FROM table_name_99 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_name_64 (celebrity VARCHAR, exited VARCHAR) ### Question: Who exited on Day 12? ### Answer: SELECT celebrity FROM table_name_64 WHERE exited = "day 12"
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_42 (type VARCHAR, year VARCHAR, title VARCHAR) ### Question: What is the type earlier than 1968, and a Title of stretchin' out? ### Answer: SELECT type FROM table_name_42 WHERE year < 1968 AND title = "stretchin' out"
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 (result VARCHAR, week__number VARCHAR) ### Question: What was the result during the week # of top 8? ### Answer: SELECT result FROM table_name_26 WHERE week__number = "top 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_2803662_3 (type VARCHAR, town VARCHAR) ### Question: When stuttgart is the town what is the type? ### Answer: SELECT type FROM table_2803662_3 WHERE town = "Stuttgart"
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_1305623_20 (gold_medals INTEGER, ensemble VARCHAR) ### Question: What is the highest number of gold medals Naugatuck HS won? ### Answer: SELECT MAX(gold_medals) FROM table_1305623_20 WHERE ensemble = "Naugatuck HS"
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 (race VARCHAR, nation VARCHAR, time VARCHAR) ### Question: What is the name of the race in Kenya with a time of 30:27? ### Answer: SELECT race FROM table_name_96 WHERE nation = "kenya" AND time = "30:27"