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_42 (year INTEGER, notes VARCHAR, venue VARCHAR)
### Question:
What's the year of the event that took place most recently in Antwerp, Belgium with team competition notes?
### Answer:
SELECT MAX(year) FROM table_name_42 WHERE notes = "team competition" AND venue = "antwerp, belgium" |
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_1341930_33 (district VARCHAR, incumbent VARCHAR)
### Question:
what's the district with incumbent being lawrence h. fountain
### Answer:
SELECT district FROM table_1341930_33 WHERE incumbent = "Lawrence H. Fountain" |
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 (points_for INTEGER, record VARCHAR, points_against VARCHAR)
### Question:
What is the highest Points when the record was 12–2, and the Points Against are larger than 6?
### Answer:
SELECT MAX(points_for) FROM table_name_25 WHERE record = "12–2" AND points_against > 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_3002894_4 (nupowr_183 VARCHAR, nupowr_117 VARCHAR)
### Question:
When 0,4, or 8 mb is the nupowr 117 what is the nupowr 183?
### Answer:
SELECT nupowr_183 FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB" |
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 (chassis VARCHAR, points VARCHAR, engine VARCHAR)
### Question:
Name the chassis of 147 points and engine of ford cosworth dfx
### Answer:
SELECT chassis FROM table_name_43 WHERE points = 147 AND engine = "ford cosworth dfx" |
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 (first_elected VARCHAR, result VARCHAR, district VARCHAR)
### Question:
Who was first elected as the result of a retired republican gain in the district of ohio 21?
### Answer:
SELECT first_elected FROM table_name_45 WHERE result = "retired republican gain" AND district = "ohio 21" |
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_22879323_8 (high_assists VARCHAR, date VARCHAR)
### Question:
Who did the high assists in the game played on February 9?
### Answer:
SELECT high_assists FROM table_22879323_8 WHERE date = "February 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_20726262_2 (originalairdate VARCHAR, production_code VARCHAR)
### Question:
What was the original air date for the episode with production code 1wab06?
### Answer:
SELECT originalairdate FROM table_20726262_2 WHERE production_code = "1WAB06" |
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_261222_1 (city___municipality VARCHAR, area__km_2__ VARCHAR)
### Question:
How many city/municipalties have an area (km2) of 506.64?
### Answer:
SELECT COUNT(city___municipality) FROM table_261222_1 WHERE area__km_2__ = "506.64" |
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_59 (Leading VARCHAR, opponent VARCHAR, record VARCHAR)
### Question:
Which Leading Scorer has an Opponent of @ seattle, and a Record of 14-16?
### Answer:
SELECT Leading AS scorer FROM table_name_59 WHERE opponent = "@ seattle" AND record = "14-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_19870086_24 (rank VARCHAR, player VARCHAR)
### Question:
what is the rank of adam gilchrist
### Answer:
SELECT COUNT(rank) FROM table_19870086_24 WHERE player = "Adam Gilchrist" |
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 (Id VARCHAR)
### Question:
Name the 2011 with 2006 of 2r and 2008 of 2r
### Answer:
SELECT 2011 FROM table_name_22 WHERE 2006 = "2r" AND 2008 = "2r" |
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 (country VARCHAR, player VARCHAR)
### Question:
Name the country vijay singh is from
### Answer:
SELECT country FROM table_name_16 WHERE player = "vijay singh" |
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 (melbourne VARCHAR, perth VARCHAR, sydney VARCHAR, gold_coast VARCHAR)
### Question:
Which Melbourne has Sydney yes, Gold Coast yes, and Perth yes?
### Answer:
SELECT melbourne FROM table_name_71 WHERE sydney = "yes" AND gold_coast = "yes" AND perth = "yes" |
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 Accounts (customer_id VARCHAR)
### Question:
How many accounts does each customer have? List the number and customer id.
### Answer:
SELECT COUNT(*), customer_id FROM Accounts GROUP BY customer_id |
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 (aggregate VARCHAR, club VARCHAR)
### Question:
The Crvena Zvezda club has what aggregate?
### Answer:
SELECT aggregate FROM table_name_58 WHERE club = "crvena zvezda" |
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 (venue VARCHAR, home_team VARCHAR)
### Question:
Where did North Melbourne play as the home team?
### Answer:
SELECT venue FROM table_name_37 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_171250_2 (status VARCHAR, official_name VARCHAR)
### Question:
What are that status(es) of saint-jacques?
### Answer:
SELECT status FROM table_171250_2 WHERE official_name = "Saint-Jacques" |
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_23981882_1 (title VARCHAR, no_in_season VARCHAR)
### Question:
What is the episode title for number 7 in the season?
### Answer:
SELECT title FROM table_23981882_1 WHERE no_in_season = 7 |
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_4 (gfl_premierships VARCHAR, home_ground VARCHAR)
### Question:
What's the GFL Premiership when the home ground was Leopold Memorial Park?
### Answer:
SELECT gfl_premierships FROM table_name_4 WHERE home_ground = "leopold memorial 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_8 (score VARCHAR, time VARCHAR)
### Question:
What was the score for the team with a time of 2:44?
### Answer:
SELECT score FROM table_name_8 WHERE time = "2:44" |
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_60 (first_appearance VARCHAR, year VARCHAR, name VARCHAR)
### Question:
What first appeared in 1966 in the comic X-2-Y?
### Answer:
SELECT first_appearance FROM table_name_60 WHERE year = 1966 AND name = "x-2-y" |
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 (result VARCHAR, score VARCHAR)
### Question:
What result had a score of 2-1?
### Answer:
SELECT result FROM table_name_73 WHERE score = "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_29997112_3 (meaning VARCHAR, transliteration VARCHAR)
### Question:
What are the meanings of the flag whose name transliterates to dvojka?
### Answer:
SELECT meaning FROM table_29997112_3 WHERE transliteration = "dvojka" |
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 (top_10 INTEGER, top_25 VARCHAR, cuts_made VARCHAR)
### Question:
What is the average number of top-10s for the major with 2 top-25s and fewer than 10 cuts made?
### Answer:
SELECT AVG(top_10) FROM table_name_31 WHERE top_25 = 2 AND cuts_made < 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_59 (event VARCHAR, year VARCHAR)
### Question:
What is Event, when Year is 2008?
### Answer:
SELECT event FROM table_name_59 WHERE year = 2008 |
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 (season VARCHAR, caps VARCHAR, club VARCHAR)
### Question:
Which season has Caps lower than 36 for the Club of NAC Breda?
### Answer:
SELECT season FROM table_name_35 WHERE caps < 36 AND club = "nac breda" |
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_15647838_3 (_number INTEGER, location VARCHAR, opponent VARCHAR)
### Question:
What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?
### Answer:
SELECT MIN(_number) FROM table_15647838_3 WHERE location = "Atlanta, GA" AND opponent = "Georgia Bulldogs" |
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 (report VARCHAR, winning_driver VARCHAR, winning_constructor VARCHAR)
### Question:
Name the report for per-viktor widengren and alfa romeo
### Answer:
SELECT report FROM table_name_48 WHERE winning_driver = "per-viktor widengren" AND winning_constructor = "alfa romeo" |
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 (club VARCHAR, tries_for VARCHAR)
### Question:
What club has tries for in the category tries for?
### Answer:
SELECT club FROM table_name_64 WHERE tries_for = "tries for" |
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 (nat VARCHAR, name VARCHAR)
### Question:
What is Nat., when Name is "Fàbregas ( Captain )"?
### Answer:
SELECT nat FROM table_name_73 WHERE name = "fàbregas ( captain )" |
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 (area__km²_ INTEGER, deed_number VARCHAR, population VARCHAR)
### Question:
What is the largest Area (km²) for Deed number of 21352022 with a Population of more than 184?
### Answer:
SELECT MAX(area__km²_) FROM table_name_29 WHERE deed_number = "21352022" AND population > 184 |
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 Assets (asset_model VARCHAR)
### Question:
What are all the distinct asset models?
### Answer:
SELECT DISTINCT asset_model FROM Assets |
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_2385460_1 (stations VARCHAR, travel_time VARCHAR)
### Question:
Name the number of stations for 15 minutes travel time
### Answer:
SELECT COUNT(stations) FROM table_2385460_1 WHERE travel_time = "15 minutes" |
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 (position VARCHAR, college VARCHAR, years_exp VARCHAR, weight VARCHAR, number VARCHAR)
### Question:
What is Position, when Weight is greater than 200, when Number is less than 44, when Years Exp is 9, and when College is "University of New Mexico"?
### Answer:
SELECT position FROM table_name_68 WHERE weight > 200 AND number < 44 AND years_exp = "9" AND college = "university of new 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_name_62 (total INTEGER, silver VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)
### Question:
What's the total amount of USSR that has more than 0 gold, less than 85 silver and more than 6 bronze?
### Answer:
SELECT MIN(total) FROM table_name_62 WHERE gold > 0 AND bronze > 6 AND nation = "ussr" AND silver < 85 |
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_14835826_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
### Question:
How many series had 18.77 million viewers?
### Answer:
SELECT COUNT(series__number) FROM table_14835826_1 WHERE us_viewers__millions_ = "18.77" |
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_28 (seasons VARCHAR, entries VARCHAR, poles VARCHAR)
### Question:
Which Seasons have Entries larger than 52, and Poles of 33?
### Answer:
SELECT seasons FROM table_name_28 WHERE entries > 52 AND poles = 33 |
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_27771406_1 (catches INTEGER, player VARCHAR)
### Question:
How many catches did Clifford McWatt have?
### Answer:
SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt" |
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_2781227_10 (position VARCHAR, player VARCHAR)
### Question:
which part on the team does rick schuhwerk play
### Answer:
SELECT position FROM table_2781227_10 WHERE player = "Rick Schuhwerk" |
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_46 (game INTEGER, score VARCHAR, points VARCHAR)
### Question:
Which Game is the lowest one that has a Score of 2–3 ot, and Points larger than 76?
### Answer:
SELECT MIN(game) FROM table_name_46 WHERE score = "2–3 ot" AND points > 76 |
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_60 (november INTEGER, record VARCHAR)
### Question:
What is the latest day in November of the game with a 15-5-2 record?
### Answer:
SELECT MAX(november) FROM table_name_60 WHERE record = "15-5-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_32 (opponent VARCHAR, method VARCHAR)
### Question:
Who was the opponent when there was a TKO method?
### Answer:
SELECT opponent FROM table_name_32 WHERE method = "tko" |
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 (us_customary VARCHAR, unit VARCHAR)
### Question:
How large in US customary terms is the unit called butylka (vodochnaya)?
### Answer:
SELECT us_customary FROM table_name_33 WHERE unit = "butylka (vodochnaya)" |
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_14 (home_team VARCHAR, attendance VARCHAR)
### Question:
Which Home Team has an Attendance of 1,859?
### Answer:
SELECT home_team FROM table_name_14 WHERE attendance = "1,859" |
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_51 (high_estimate INTEGER, low_estimate VARCHAR, type VARCHAR, location VARCHAR)
### Question:
With a type of mass suicide located in France and a low estimate greater than 16, the sum of the high estimate numbers listed is what number?
### Answer:
SELECT SUM(high_estimate) FROM table_name_51 WHERE type = "mass suicide" AND location = "france" AND low_estimate > 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_59 (concacaf INTEGER, superliga VARCHAR, merconorte VARCHAR, player VARCHAR)
### Question:
Name the average concacaf for merconorte larger than 0 and player of jared borgetti
### Answer:
SELECT AVG(concacaf) FROM table_name_59 WHERE merconorte > 0 AND player = "jared borgetti" AND superliga > 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_71 (rank VARCHAR, fastest_time__s_ VARCHAR, nation VARCHAR)
### Question:
What rank did the United States swimmer come in who posted 11.26 seconds in the 100-meter youth female division?
### Answer:
SELECT COUNT(rank) FROM table_name_71 WHERE fastest_time__s_ = "11.26" AND nation = "united states" |
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 (score VARCHAR, site_stadium VARCHAR)
### Question:
What was the score for the game played at Sarge Frye Field?
### Answer:
SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field" |
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 (champion VARCHAR, result VARCHAR, venue VARCHAR, attendance VARCHAR)
### Question:
Who was the champion at berlin when the result was 2-0 with 100,000 fans in attendance?
### Answer:
SELECT champion FROM table_name_65 WHERE venue = "berlin" AND attendance = "100,000" AND result = "2-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_23050383_1 (kei VARCHAR, economic_incentive_regime VARCHAR)
### Question:
How many KEI catagories are listed when the economic incentive regime is 2.56?
### Answer:
SELECT COUNT(kei) FROM table_23050383_1 WHERE economic_incentive_regime = "2.56" |
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_27441210_12 (weeks_at__number1 INTEGER, artist VARCHAR)
### Question:
How many weeks was K.Maro at #1?
### Answer:
SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE artist = "K.Maro" |
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_2508633_8 (position VARCHAR, nfl_team VARCHAR)
### Question:
If the NFL team is the Minnesota Vikings, what is the position?
### Answer:
SELECT position FROM table_2508633_8 WHERE nfl_team = "Minnesota Vikings" |
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 (gender VARCHAR, university_students_and_adults__18yrs VARCHAR, _ VARCHAR)
### Question:
Which gender is associated with University students and adults of 25mm?
### Answer:
SELECT gender FROM table_name_19 WHERE university_students_and_adults__18yrs + _ = "25mm" |
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 (attendance VARCHAR, record VARCHAR)
### Question:
with a record of 63-76 what was the attendance?
### Answer:
SELECT attendance FROM table_name_44 WHERE record = "63-76" |
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 (name VARCHAR, qual_2 VARCHAR)
### Question:
What is Name when Qual 2 is 1:15.582?
### Answer:
SELECT name FROM table_name_36 WHERE qual_2 = "1:15.582" |
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 (date VARCHAR, tournament VARCHAR)
### Question:
When was the Lagos tournament?
### Answer:
SELECT date FROM table_name_84 WHERE tournament = "lagos" |
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 (total INTEGER, bronze VARCHAR, gold VARCHAR)
### Question:
How many totals have a Bronze of 0, and a Gold smaller than 0?
### Answer:
SELECT SUM(total) FROM table_name_22 WHERE bronze = 0 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_7 (stories INTEGER, height VARCHAR)
### Question:
What is the highest number of stories in homes with a height of 42 m.?
### Answer:
SELECT MAX(stories) FROM table_name_7 WHERE height = "42 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 table_name_2 (date VARCHAR, partner VARCHAR, score VARCHAR)
### Question:
What date had Alexander Krasnorutskiy as a partner with a score of 6–3, 4–6, 6–2?
### Answer:
SELECT date FROM table_name_2 WHERE partner = "alexander krasnorutskiy" AND score = "6–3, 4–6, 6–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_40 (Id VARCHAR)
### Question:
What 2009 has 3r as the 1999, and w as 2002?
### Answer:
SELECT 2009 FROM table_name_40 WHERE 1999 = "3r" AND 2002 = "w" |
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_1059743_1 (play_off VARCHAR, points VARCHAR)
### Question:
How many games had a score value of 813.5 in post-season play?
### Answer:
SELECT COUNT(play_off) FROM table_1059743_1 WHERE points = "813.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_21536557_2 (day VARCHAR, stage VARCHAR)
### Question:
Which days have a stage of ss11?
### Answer:
SELECT day FROM table_21536557_2 WHERE stage = "SS11" |
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 (netflix VARCHAR, segment_a VARCHAR)
### Question:
Segment A of heather gems is what netflix episode?
### Answer:
SELECT netflix FROM table_name_97 WHERE segment_a = "heather gems" |
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_60 (home VARCHAR, visitor VARCHAR, date VARCHAR)
### Question:
Who was the home team when the vistor team was the Montreal Canadiens on February 12?
### Answer:
SELECT home FROM table_name_60 WHERE visitor = "montreal canadiens" AND date = "february 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_1 (athlete VARCHAR, round_3 VARCHAR, event VARCHAR)
### Question:
Which athlete in the 76 kg class, did not advance at the end of Round 3.
### Answer:
SELECT athlete FROM table_name_1 WHERE round_3 = "did not advance" AND event = "76 kg" |
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 (goals_against INTEGER, lost INTEGER)
### Question:
What is the fewest goals against for teams with more than 27 losses?
### Answer:
SELECT MIN(goals_against) FROM table_name_97 WHERE lost > 27 |
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_22385461_1 (spacewalkers VARCHAR, spacecraft VARCHAR)
### Question:
Who walked in space from STS-101 Eva 1?
### Answer:
SELECT spacewalkers FROM table_22385461_1 WHERE spacecraft = "STS-101 EVA 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_32 (top_5 INTEGER, tournament VARCHAR, top_25 VARCHAR)
### Question:
What is the highest Top-5 when the Tournament is the open championship, with a Top-25 less than 9?
### Answer:
SELECT MAX(top_5) FROM table_name_32 WHERE tournament = "the open championship" AND top_25 < 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_63 (bush_number INTEGER, bush_percentage VARCHAR)
### Question:
What is the lowest Bush#, when Bush% is "65.4%"?
### Answer:
SELECT MIN(bush_number) FROM table_name_63 WHERE bush_percentage = "65.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_52 (call_sign VARCHAR, network VARCHAR, digital_psip VARCHAR)
### Question:
What is the Call sign of the Omni television network with a Digitial PSIP of 14.1?
### Answer:
SELECT call_sign FROM table_name_52 WHERE network = "omni television" AND digital_psip = 14.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_14118521_1 (duration VARCHAR, mission VARCHAR)
### Question:
what's the duration with mission being sts-87
### Answer:
SELECT duration FROM table_14118521_1 WHERE mission = "STS-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_10528691_4 (maximum_memory VARCHAR, discontinued VARCHAR)
### Question:
What is the maximum memory for the model discontinued in November 2001?
### Answer:
SELECT maximum_memory FROM table_10528691_4 WHERE discontinued = "November 2001" |
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_14 (attendance VARCHAR, opponent VARCHAR)
### Question:
What attendance has detroit lions as the opponent?
### Answer:
SELECT attendance FROM table_name_14 WHERE opponent = "detroit lions" |
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 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR)
### Question:
What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?
### Answer:
SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = "vancouver, bc" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01 |
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_92 (amount__millions_ VARCHAR, payee VARCHAR)
### Question:
How much money, in millions, is paid to Infotalent?
### Answer:
SELECT amount__millions_ FROM table_name_92 WHERE payee = "infotalent" |
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_81 (player VARCHAR, score VARCHAR)
### Question:
Which player has a score of 71-69-71-67=278?
### Answer:
SELECT player FROM table_name_81 WHERE score = 71 - 69 - 71 - 67 = 278 |
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_2668199_2 (candidates VARCHAR, party VARCHAR, result VARCHAR, first_elected VARCHAR)
### Question:
Who were all the candidates when the results were re-elected, first elected was 1832 and the party was jacksonian?
### Answer:
SELECT candidates FROM table_2668199_2 WHERE result = "Re-elected" AND first_elected = "1832" AND party = "Jacksonian" |
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 (pick__number INTEGER, overall VARCHAR, round VARCHAR)
### Question:
Which Pick # is the highest one that has an Overall of 184, and a Round larger than 6?
### Answer:
SELECT MAX(pick__number) FROM table_name_25 WHERE overall = 184 AND round > 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_75 (to_par VARCHAR, place VARCHAR, player VARCHAR)
### Question:
When Bunky Henry placed t8, what was his To par?
### Answer:
SELECT to_par FROM table_name_75 WHERE place = "t8" AND player = "bunky henry" |
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_14260687_3 (other VARCHAR, total VARCHAR)
### Question:
How man "other" millions of smartphones were shipped when 181.1 million total were shipped?
### Answer:
SELECT COUNT(other) FROM table_14260687_3 WHERE total = "181.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_24 (score_in_the_final VARCHAR, date VARCHAR)
### Question:
What was the final score on March 22, 1993?
### Answer:
SELECT score_in_the_final FROM table_name_24 WHERE date = "march 22, 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_53 (class VARCHAR, year INTEGER)
### Question:
For a year that is later than 2002 what is the class position?
### Answer:
SELECT class AS pos FROM table_name_53 WHERE year > 2002 |
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_2886617_9 (player VARCHAR, nhl_team VARCHAR)
### Question:
Who was picked for the draft by St. Louis Blues?
### Answer:
SELECT player FROM table_2886617_9 WHERE nhl_team = "St. Louis Blues" |
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_178389_1 (church_name VARCHAR, location_of_the_church VARCHAR)
### Question:
What is the church name for the church located in Kyrkjebø?
### Answer:
SELECT church_name FROM table_178389_1 WHERE location_of_the_church = "Kyrkjebø" |
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_2857352_3 (digital_channel VARCHAR, virtual_channel VARCHAR)
### Question:
What digital channel corresponds to virtual channel 5.2?
### Answer:
SELECT digital_channel FROM table_2857352_3 WHERE virtual_channel = "5.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_66 (golf VARCHAR, school VARCHAR)
### Question:
Does Green Bay have a golf team?
### Answer:
SELECT golf FROM table_name_66 WHERE school = "green bay" |
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_13114949_3 (qualifying_rank INTEGER)
### Question:
what is the lowest qualifying rank?
### Answer:
SELECT MIN(qualifying_rank) FROM table_13114949_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_5 (surface VARCHAR, outcome VARCHAR, year VARCHAR)
### Question:
What was the surface played on when they were a runner-up in 2007?
### Answer:
SELECT surface FROM table_name_5 WHERE outcome = "runner-up" AND year = 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_26 (stadium VARCHAR, visiting_team VARCHAR, date VARCHAR)
### Question:
Where was the game on September 12 played when the Dallas Cowboys was the visiting team?
### Answer:
SELECT stadium FROM table_name_26 WHERE visiting_team = "dallas cowboys" AND date = "september 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_96 (position VARCHAR, round VARCHAR, overall VARCHAR)
### Question:
Which position had fewer rounds than 3, and an overall of less than 48?
### Answer:
SELECT position FROM table_name_96 WHERE round < 3 AND overall < 48 |
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 (year INTEGER, theatre VARCHAR)
### Question:
Tell me the lowest year for shubert theatre
### Answer:
SELECT MIN(year) FROM table_name_72 WHERE theatre = "shubert theatre" |
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_29743928_3 (assists INTEGER, country VARCHAR)
### Question:
How many is the high assist total for players from panama?
### Answer:
SELECT MAX(assists) FROM table_29743928_3 WHERE country = "Panama" |
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 (week VARCHAR, attendance VARCHAR)
### Question:
How many weeks had an attendance at 69,149?
### Answer:
SELECT COUNT(week) FROM table_name_12 WHERE attendance = "69,149" |
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_1137702_3 (grand_prix VARCHAR, winning_constructor VARCHAR, pole_position VARCHAR)
### Question:
How many Grand Prix were the winning constructor Benetton - Ford and the pole position was Michael Schumacher?
### Answer:
SELECT COUNT(grand_prix) FROM table_1137702_3 WHERE winning_constructor = "Benetton - Ford" AND pole_position = "Michael Schumacher" |
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_14752049_6 (country VARCHAR, change__2011_to_2012_ VARCHAR)
### Question:
When the change (2011 to 2012) is +13.4% what is the country?
### Answer:
SELECT country FROM table_14752049_6 WHERE change__2011_to_2012_ = "+13.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_57 (team VARCHAR, school VARCHAR)
### Question:
What team name belongs to Seaford?
### Answer:
SELECT team FROM table_name_57 WHERE school = "seaford" |
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 (name VARCHAR, roll VARCHAR, years VARCHAR, decile VARCHAR)
### Question:
Which name has Years of 1–8, a Decile of 9, and a Roll smaller than 141?
### Answer:
SELECT name FROM table_name_20 WHERE years = "1–8" AND decile = 9 AND roll < 141 |
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 (series_ep VARCHAR, netflix VARCHAR)
### Question:
Which Series Ep has a Netflix of s08e18?
### Answer:
SELECT series_ep FROM table_name_83 WHERE netflix = "s08e18" |
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 (crowd INTEGER, away_team VARCHAR)
### Question:
What is the smallest crowd size for away team Fitzroy?
### Answer:
SELECT MIN(crowd) FROM table_name_40 WHERE away_team = "fitzroy" |
Subsets and Splits