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_24 (nation VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: When the total is larger than 1,and the bronze is less than 3, and silver larger than 2, and a gold larger than 2, what is the nation? ### Answer: SELECT nation FROM table_name_24 WHERE total > 1 AND bronze < 3 AND silver > 2 AND gold > 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_21 (release_date VARCHAR, production_num VARCHAR, characters VARCHAR) ### Question: When was the film released that a less than 5038 production number and was of the character Bosko? ### Answer: SELECT release_date FROM table_name_21 WHERE production_num < 5038 AND characters = "bosko"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE roller_coaster (Status VARCHAR) ### Question: Please show the most common status of roller coasters. ### Answer: SELECT Status FROM roller_coaster GROUP BY Status 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_67 (away_team VARCHAR, home_team VARCHAR) ### Question: When the Home team of essendon is playing what is the Away team score? ### Answer: SELECT away_team AS score FROM table_name_67 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_84 (crowd INTEGER, venue VARCHAR) ### Question: What is the lowest crowd seen by the mcg Venue? ### Answer: SELECT MIN(crowd) FROM table_name_84 WHERE venue = "mcg"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14460937_1 (afc_cup VARCHAR, points__total_500_ VARCHAR) ### Question: How many times has the points total for the afc cup competion been 289? ### Answer: SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE points__total_500_ = 289
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13998897_1 (height_m___ft__ VARCHAR, notes VARCHAR) ### Question: how many height m ( ft ) with notes being via wccv; formerly w236aj ### Answer: SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE notes = "via WCCV; formerly W236AJ"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26168687_3 (narrated_by VARCHAR, vessel_operator VARCHAR) ### Question: Who narrated when the vessel operator is de beers? ### Answer: SELECT narrated_by FROM table_26168687_3 WHERE vessel_operator = "De Beers"
Below is an context that describes a 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 (winners VARCHAR, not_winning_editions VARCHAR) ### Question: Who is Winners that has editions of 1992, 2003 as Not Winning ### Answer: SELECT winners FROM table_name_77 WHERE not_winning_editions = "1992, 2003"
Below is an context that describes a 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 (Final VARCHAR, week_1 VARCHAR, week_3 VARCHAR) ### Question: What was the week 12 standing for the housemate that nominated Deepak P Rahul in week 1 and Amit Carol in week 3? ### Answer: SELECT Final AS week_12 FROM table_name_8 WHERE week_1 = "deepak p rahul" AND week_3 = "amit carol"
Below is an context that describes a 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 (venue VARCHAR, result VARCHAR) ### Question: Name the venue for eng by 6 wkts ### Answer: SELECT venue FROM table_name_46 WHERE result = "eng by 6 wkts"
Below is an context that describes a 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 (decision VARCHAR, date VARCHAR) ### Question: What was the decision on october 5? ### Answer: SELECT decision FROM table_name_44 WHERE date = "october 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_80 (year_ended VARCHAR, passenger_load_factor___percentage_ VARCHAR, revenue__€m_ VARCHAR) ### Question: Which Year Ended has a Passenger Load Factor (%) larger than 72.8, and a Revenue (€m) smaller than 906.8? ### Answer: SELECT year_ended FROM table_name_80 WHERE passenger_load_factor___percentage_ > 72.8 AND revenue__€m_ < 906.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_1341897_45 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result of the election in which Walter E. Rogers was the incumbent? ### Answer: SELECT result FROM table_1341897_45 WHERE incumbent = "Walter E. Rogers"
Below is an context that describes a 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 (college_junior_club_team VARCHAR, pick VARCHAR) ### Question: Which school players have a number of 255 ### Answer: SELECT college_junior_club_team FROM table_2781227_10 WHERE pick = 255
Below is an context that describes a 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, opponent VARCHAR) ### Question: What is the Date with an Opponent that is indiana state college? ### Answer: SELECT date FROM table_name_71 WHERE opponent = "indiana state college"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_30120556_1 (area__acres__ INTEGER, townland VARCHAR) ### Question: What is the fewest area in Derrynanool townland? ### Answer: SELECT MIN(area__acres__) FROM table_30120556_1 WHERE townland = "Derrynanool"
Below is an context that describes a 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 (bronze VARCHAR, silver VARCHAR, total VARCHAR) ### Question: What is Bronze, when Silver is less than 89, and when Total is "4"? ### Answer: SELECT bronze FROM table_name_6 WHERE silver < 89 AND total = 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_87 (date VARCHAR, h___a VARCHAR) ### Question: When did the game in whalley range take place? ### Answer: SELECT date FROM table_name_87 WHERE h___a = "whalley range"
Below is an context that describes a 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 (kana VARCHAR, korean_name VARCHAR) ### Question: What is the Kana of the Province with a Korean name of Chungcheong-Namdo? ### Answer: SELECT kana FROM table_name_2 WHERE korean_name = "chungcheong-namdo"
Below is an context that describes a 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 (record VARCHAR, date VARCHAR) ### Question: WHAT IS THE RECORD FOR DATE NOVEMBER 14? ### Answer: SELECT record FROM table_name_44 WHERE date = "november 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_23279434_1 (season__number VARCHAR, production_code VARCHAR) ### Question: Which season used production code "am10"? ### Answer: SELECT COUNT(season__number) FROM table_23279434_1 WHERE production_code = "AM10"
Below is an context that describes a 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 (season VARCHAR, pos VARCHAR, pld VARCHAR, div VARCHAR) ### Question: What season has 36 pld, a bbl div, and 6th position? ### Answer: SELECT season FROM table_name_87 WHERE pld = "36" AND div = "bbl" AND pos = "6th"
Below is an context that describes a 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 (score VARCHAR, game VARCHAR) ### Question: What is the score of game 25? ### Answer: SELECT score FROM table_name_37 WHERE game = 25
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE journal_committee (Editor_ID VARCHAR, Journal_ID VARCHAR); CREATE TABLE editor (Name VARCHAR, age VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal (Theme VARCHAR, Journal_ID VARCHAR) ### Question: Show the names and ages of editors and the theme of journals for which they serve on committees, in ascending alphabetical order of theme. ### Answer: SELECT T2.Name, T2.age, T3.Theme FROM journal_committee AS T1 JOIN editor AS T2 ON T1.Editor_ID = T2.Editor_ID JOIN journal AS T3 ON T1.Journal_ID = T3.Journal_ID ORDER BY T3.Theme
Below is an context that describes a 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 (points INTEGER, engine VARCHAR, year VARCHAR) ### Question: What is the smallest number of points with an Engine of climax v8, and a Year of 1966? ### Answer: SELECT MIN(points) FROM table_name_87 WHERE engine = "climax v8" AND year = 1966
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26681728_1 (location VARCHAR, score_final VARCHAR) ### Question: Where did the event with a final score of 15.050 occur? ### Answer: SELECT location FROM table_26681728_1 WHERE score_final = "15.050"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13981938_1 (wine_style VARCHAR, village VARCHAR) ### Question: what's the wine style with village being puligny-montrachet [d ] ### Answer: SELECT wine_style FROM table_13981938_1 WHERE village = "Puligny-Montrachet [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 Songs (SongId VARCHAR, songid VARCHAR, title VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR); CREATE TABLE Band (id VARCHAR, lastname VARCHAR); CREATE TABLE Instruments (instrument VARCHAR, songid VARCHAR, bandmateid VARCHAR) ### Question: What instrument did the musician with last name "Heilo" use in the song "Badlands"? ### Answer: SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Badlands"
Below is an context that describes a 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 (week_of VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR) ### Question: What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko? ### Answer: SELECT week_of FROM table_name_2 WHERE semi_finalists = "anke huber chanda rubin" AND runner_up = "meredith mcgrath larisa savchenko"
Below is an context that describes a 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 (race VARCHAR, date VARCHAR) ### Question: what is the race on 23 october? ### Answer: SELECT race FROM table_name_81 WHERE date = "23 october"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22815568_12 (unemployment_rate VARCHAR, county VARCHAR) ### Question: Name the unemployment rate for botetourt ### Answer: SELECT unemployment_rate FROM table_22815568_12 WHERE county = "Botetourt"
Below is an context that describes a 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 (march INTEGER, record VARCHAR) ### Question: When was the earliest game date in March where the match ended with a record of 25-29-10? ### Answer: SELECT MIN(march) FROM table_name_32 WHERE record = "25-29-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_65 (wins INTEGER, byes INTEGER) ### Question: Which Wins has a Byes larger than 0? ### Answer: SELECT MAX(wins) FROM table_name_65 WHERE byes > 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_87 (Id VARCHAR) ### Question: Tell me the 2008 for when 2001 of wta premier 5 tournaments ### Answer: SELECT 2008 FROM table_name_87 WHERE 2001 = "wta premier 5 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_33 (player VARCHAR, place VARCHAR) ### Question: Who are the players that placed t2? ### Answer: SELECT player FROM table_name_33 WHERE place = "t2"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27946889_2 (represent_province VARCHAR, hometown VARCHAR) ### Question: What is the represent province for the contestant whose hometown is Woerden? ### Answer: SELECT represent_province FROM table_27946889_2 WHERE hometown = "Woerden"
Below is an context that describes a 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 (record VARCHAR, h_a_n VARCHAR, date VARCHAR) ### Question: What is Record, when H/A/N is "A", and when Date is "February 1"? ### Answer: SELECT record FROM table_name_2 WHERE h_a_n = "a" AND date = "february 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_61 (malayalam VARCHAR, മലയാളം VARCHAR) ### Question: WHAT IS THE MALAYAM WITH മലയാളം of വെള്ളി? ### Answer: SELECT malayalam FROM table_name_61 WHERE മലയാളം = "വെള്ളി"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE actor (first_name VARCHAR, last_name VARCHAR) ### Question: What is the most popular full name of the actors? ### Answer: SELECT first_name, last_name FROM actor GROUP BY first_name, last_name 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_67 (melbourne VARCHAR, gold_coast VARCHAR) ### Question: What is The Melbourne with a No- Gold Coast ### Answer: SELECT melbourne FROM table_name_67 WHERE gold_coast = "no"
Below is an context that describes a 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 (score VARCHAR, game VARCHAR) ### Question: What was the final score of Game #4? ### Answer: SELECT score FROM table_name_14 WHERE game = 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_97 (date VARCHAR, event VARCHAR) ### Question: What date was the 1500 m freestyle competition? ### Answer: SELECT date FROM table_name_97 WHERE event = "1500 m freestyle"
Below is an context that describes a 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 (losses VARCHAR, geelong_fl VARCHAR, wins VARCHAR) ### Question: How many Losses have a Geelong FL of newtown & chilwell, and more than 11 wins? ### Answer: SELECT COUNT(losses) FROM table_name_23 WHERE geelong_fl = "newtown & chilwell" AND wins > 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_name_81 (year INTEGER, name VARCHAR) ### Question: What year was Leon Blevins picked? ### Answer: SELECT SUM(year) FROM table_name_81 WHERE name = "leon blevins"
Below is an context that describes a 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_39 (venue VARCHAR, league VARCHAR) ### Question: What are the venues that host WNBA games? ### Answer: SELECT venue FROM table_name_39 WHERE league = "wnba"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21550870_1 (production_code VARCHAR, written_by VARCHAR) ### Question: Name the total number of production code for episode by steve cohen & andrew dettman ### Answer: SELECT COUNT(production_code) FROM table_21550870_1 WHERE written_by = "Steve Cohen & Andrew Dettman"
Below is an context that describes a 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 (runs__balls_ VARCHAR, wicket VARCHAR, opponent VARCHAR) ### Question: Name the runs balls for wicket of 3rd for australia opponent ### Answer: SELECT runs__balls_ FROM table_name_9 WHERE wicket = "3rd" AND opponent = "australia"
Below is an context that describes a 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, crowd INTEGER) ### Question: Which Venue has a crowd larger than 25,000? ### Answer: SELECT away_team FROM table_name_83 WHERE crowd > 25 OFFSET 000
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13636_1 (name VARCHAR, first_operational VARCHAR) ### Question: what's the name with first operational being march 1945 ### Answer: SELECT name FROM table_13636_1 WHERE first_operational = "March 1945"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR) ### Question: What is the series # when the director is john showalter? ### Answer: SELECT series__number FROM table_29747178_2 WHERE directed_by = "John Showalter"
Below is an context that describes a 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 (score VARCHAR, team_2 VARCHAR) ### Question: What was the Score of the match with USL Dunkerque (d2) as Team 2? ### Answer: SELECT score FROM table_name_87 WHERE team_2 = "usl dunkerque (d2)"
Below is an context that describes a 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 (score VARCHAR, opponents VARCHAR) ### Question: What was the score for the opponent lukáš dlouhý leander paes? ### Answer: SELECT score FROM table_name_75 WHERE opponents = "lukáš dlouhý leander paes"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16105186_2 (mid_atlantic_south__washington VARCHAR, _dc_ VARCHAR, midwest__des_moines_ VARCHAR) ### Question: What was the emission rating in Mid-Atlantic South for the vehicle that was rated 300 g/mi (186 g/km) in the Midwest? ### Answer: SELECT mid_atlantic_south__washington, _dc_ FROM table_16105186_2 WHERE midwest__des_moines_ = "300 g/mi (186 g/km)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11608735_3 (other_local_sources VARCHAR, state_ VARCHAR, _federal VARCHAR) ### Question: What is the number of local sources for state and federal 12,929,489 ### Answer: SELECT other_local_sources FROM table_11608735_3 WHERE state_ & _federal = "12,929,489"
Below is an context that describes a 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 (player VARCHAR, points INTEGER) ### Question: Who is the player who had more than 1,052 points? ### Answer: SELECT player FROM table_name_87 WHERE points > 1 OFFSET 052
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19342760_1 (cause_of_destruction VARCHAR, name VARCHAR) ### Question: What caused the collapse of the Mausoleum at Halicarnassus? ### Answer: SELECT cause_of_destruction FROM table_19342760_1 WHERE name = "Mausoleum at Halicarnassus"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20181270_3 (landesliga_süd VARCHAR, bayernliga VARCHAR) ### Question: Name the landesliga sud for sg quelle fürth ### Answer: SELECT landesliga_süd FROM table_20181270_3 WHERE bayernliga = "SG Quelle Fürth"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1353096_2 (channel_tv___dt__ VARCHAR, city_of_license_market VARCHAR) ### Question: What TV channel had a license from Boston? ### Answer: SELECT channel_tv___dt__ FROM table_1353096_2 WHERE city_of_license_market = "Boston"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20065425_1 (title VARCHAR, termination_of_mission VARCHAR) ### Question: How many different titles does the representative whose mission was terminated on August 5, 1984 have? ### Answer: SELECT COUNT(title) FROM table_20065425_1 WHERE termination_of_mission = "August 5, 1984"
Below is an context that describes a 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_39 (channel VARCHAR, financed_by VARCHAR) ### Question: What was the channel that was financed by commercials? ### Answer: SELECT channel FROM table_name_39 WHERE financed_by = "commercials"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12792876_4 (losing_bonus VARCHAR, points VARCHAR) ### Question: Name the losing bonus of 96 points ### Answer: SELECT losing_bonus FROM table_12792876_4 WHERE points = "96"
Below is an context that describes a 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_43 (district VARCHAR, incumbent VARCHAR) ### Question: What district is eugene worley from? ### Answer: SELECT district FROM table_1342233_43 WHERE incumbent = "Eugene Worley"
Below is an context that describes a 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_91 (tries_against INTEGER, points_against VARCHAR, tries_for VARCHAR) ### Question: What Tries against that have a Points against of 95 and Tries for larger than 20? ### Answer: SELECT SUM(tries_against) FROM table_name_91 WHERE points_against = 95 AND tries_for > 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_82 (total_seats INTEGER, seats VARCHAR, share_of_votes VARCHAR) ### Question: with a share of 44.2% and 77 seats, what is the greatest seat total? ### Answer: SELECT MAX(total_seats) FROM table_name_82 WHERE seats = 77 AND share_of_votes = "44.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_78 (software VARCHAR, cost___usd__ VARCHAR, latest_stable_date__version_ VARCHAR) ### Question: What is the free sotware with the latest stable date version of 1.1? ### Answer: SELECT software FROM table_name_78 WHERE cost___usd__ = "free" AND latest_stable_date__version_ = "1.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_3 (year VARCHAR, outcome VARCHAR, opponent VARCHAR) ### Question: What year was the match were xavier malisse was the runner-up against lleyton hewitt? ### Answer: SELECT year FROM table_name_3 WHERE outcome = "runner-up" AND opponent = "lleyton hewitt"
Below is an context that describes a 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 (mintage INTEGER, artist VARCHAR) ### Question: What is the sum of Artist Steve Hepburn's Mintage? ### Answer: SELECT SUM(mintage) FROM table_name_75 WHERE artist = "steve hepburn"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15624586_2 (indigenous_mining_production_2006 VARCHAR, _percentage_of_world_demand VARCHAR) ### Question: Which country mines 24.0% of the world demand of uranium? ### Answer: SELECT indigenous_mining_production_2006 FROM table_15624586_2 WHERE _percentage_of_world_demand = "24.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_92 (week VARCHAR, kickoff___et__ VARCHAR, result VARCHAR) ### Question: What is the Week when the kick off was at 4:05 pm, and the result was w 31–14? ### Answer: SELECT week FROM table_name_92 WHERE kickoff___et__ = "4:05 pm" AND result = "w 31–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_19526911_1 (previous_season_2007_2008 VARCHAR, website VARCHAR) ### Question: What are the previous season ranks of teams whose website is www.novavolley.narod.ru? ### Answer: SELECT previous_season_2007_2008 FROM table_19526911_1 WHERE website = "www.novavolley.narod.ru"
Below is an context that describes a 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 (of_5 VARCHAR, country VARCHAR) ### Question: Which OF-5 is in Ghana? ### Answer: SELECT of_5 FROM table_name_48 WHERE country = "ghana"
Below is an context that describes a 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, venue VARCHAR, year VARCHAR, score VARCHAR) ### Question: Which Country has a Year larger than 1978, and a Score of 295, and a Venue of lindrick golf club? ### Answer: SELECT country FROM table_name_16 WHERE year > 1978 AND score = "295" AND venue = "lindrick golf club"
Below is an context that describes a 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 (home VARCHAR, visitor VARCHAR, date VARCHAR) ### Question: What was the home team that played Vancouver on April 29? ### Answer: SELECT home FROM table_name_62 WHERE visitor = "vancouver" AND date = "april 29"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22265716_1 (director VARCHAR, original_title VARCHAR) ### Question: Who directed the film with the original title of три летња дана? ### Answer: SELECT director FROM table_22265716_1 WHERE original_title = "Три летња дана"
Below is an context that describes a 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 (record VARCHAR, nationality VARCHAR, games VARCHAR) ### Question: What is the Record of the 2012 Hamilton Games from Bahamas? ### Answer: SELECT record FROM table_name_72 WHERE nationality = "bahamas" AND games = "2012 hamilton"
Below is an context that describes a 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 (attendance INTEGER, home VARCHAR, round VARCHAR) ### Question: Which Attendance has a Home of djurgårdens if, and a Round of 53? ### Answer: SELECT MAX(attendance) FROM table_name_54 WHERE home = "djurgårdens if" AND round = 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_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR) ### Question: Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3–3)? ### Answer: SELECT MAX(attendance) FROM table_name_74 WHERE arena = "arrowhead pond of anaheim" AND loss = "giguere (3–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_35 (vietnamese VARCHAR, chinese VARCHAR) ### Question: Which VIETNAMESE has a CHINESE of 婆須密 / póxūmì? ### Answer: SELECT vietnamese FROM table_name_35 WHERE chinese = "婆須密 / póxū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_21692771_1 (maturity VARCHAR, isin VARCHAR) ### Question: What is the maturity date of the ISIN labeled DE000A0BVBN3? ### Answer: SELECT maturity FROM table_21692771_1 WHERE isin = "DE000A0BVBN3"
Below is an context that describes a 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 (location VARCHAR, opponent VARCHAR) ### Question: Where was the game against the buffalo sabres? ### Answer: SELECT location FROM table_name_27 WHERE opponent = "buffalo sabres"
Below is an context that describes a 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 (total INTEGER, bronze VARCHAR, rank VARCHAR) ### Question: What is the lowest Total containing a Bronze of 0 and Rank smaller than 2? ### Answer: SELECT MIN(total) FROM table_name_92 WHERE bronze = 0 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_60 (l2_cache VARCHAR, model_number VARCHAR) ### Question: What is L2 Cache, when Model Number is Atom Z625? ### Answer: SELECT l2_cache FROM table_name_60 WHERE model_number = "atom z625"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_262508_1 (nickname VARCHAR, institution VARCHAR) ### Question: What is the nickname of the institution from Concordia University, Nebraska? ### Answer: SELECT nickname FROM table_262508_1 WHERE institution = "Concordia University, Nebraska"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13857700_1 (mixed_doubles VARCHAR, year VARCHAR) ### Question: who is the the mixed doubles with year being 1972 ### Answer: SELECT mixed_doubles FROM table_13857700_1 WHERE year = 1972
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_30012404_4 (canadian_air_date VARCHAR, us_air_date VARCHAR) ### Question: What is the canadian air date when the US air date is 24 august 2012? ### Answer: SELECT canadian_air_date FROM table_30012404_4 WHERE us_air_date = "24 August 2012"
Below is an context that describes a 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 (rank VARCHAR, team VARCHAR) ### Question: Name the rank for tottenham hotspur ### Answer: SELECT rank FROM table_name_7 WHERE team = "tottenham hotspur"
Below is an context that describes a 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 (total INTEGER, year_s__won INTEGER) ### Question: What is Highest Total, when Year(s) Won is before 1959? ### Answer: SELECT MAX(total) FROM table_name_99 WHERE year_s__won < 1959
Below is an context that describes a 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 (year VARCHAR, team VARCHAR, rank VARCHAR) ### Question: How many years did Team Newman/Haas Racing receive a 1st place ranking? ### Answer: SELECT COUNT(year) FROM table_name_86 WHERE team = "newman/haas racing" AND rank = "1st"
Below is an context that describes a 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 (scientific_pitch VARCHAR, helmholtz_pitch VARCHAR) ### Question: What is the scientific pitch when the Helmholtz pitch is D? ### Answer: SELECT scientific_pitch FROM table_name_33 WHERE helmholtz_pitch = "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_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR) ### Question: What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0? ### Answer: SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 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_25691838_8 (episode__number INTEGER, original_airdate VARCHAR) ### Question: What was the minimum number of the episode that first aired August 11? ### Answer: SELECT MIN(episode__number) FROM table_25691838_8 WHERE original_airdate = "August 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 LOTS (lot_details VARCHAR, investor_id VARCHAR) ### Question: Return the lot details and investor ids. ### Answer: SELECT lot_details, investor_id FROM LOTS
Below is an context that describes a 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 (top_5 INTEGER, events INTEGER) ### Question: With events less than 0, what is the fewest Top-5? ### Answer: SELECT MIN(top_5) FROM table_name_12 WHERE events < 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_32 (game INTEGER, november VARCHAR) ### Question: Which Game has a November of 22? ### Answer: SELECT SUM(game) FROM table_name_32 WHERE 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_24 (grid VARCHAR, time_retired VARCHAR) ### Question: Which grid has a time/retired of +27.347? ### Answer: SELECT COUNT(grid) FROM table_name_24 WHERE time_retired = "+27.347"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1147701_5 (model_name VARCHAR, engine_code VARCHAR) ### Question: What is the model of the enginge d5252 t? ### Answer: SELECT model_name FROM table_1147701_5 WHERE engine_code = "D5252 T"
Below is an context that describes a 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 (second VARCHAR, nation VARCHAR) ### Question: Which Second has a Nation of latvia? ### Answer: SELECT second FROM table_name_16 WHERE nation = "latvia"
Below is an context that describes a 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 (adam INTEGER, jade VARCHAR, peter VARCHAR) ### Question: What's Adam's score when Jade's score is greater than 5 and Peter's score is less than 0? ### Answer: SELECT AVG(adam) FROM table_name_40 WHERE jade > 5 AND peter < 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_82 (player VARCHAR, round VARCHAR, pick VARCHAR) ### Question: Which Player has a Round of 9, and a Pick of 263? ### Answer: SELECT player FROM table_name_82 WHERE round = "9" AND pick = 263