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_18274425_1 (written_by VARCHAR, production_code VARCHAR) ### Question: Who were the authors of episode having production code 3t7573? ### Answer: SELECT written_by FROM table_18274425_1 WHERE production_code = "3T7573"
Below is an context that describes a sql 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 (nationality VARCHAR, pick VARCHAR) ### Question: Which nationality's pick was 415? ### Answer: SELECT nationality FROM table_name_21 WHERE pick = "415"
Below is an context that describes a sql 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 (round VARCHAR, match VARCHAR) ### Question: Name the round for 2nd elimination final ### Answer: SELECT round FROM table_name_36 WHERE match = "2nd elimination final"
Below is an context that describes a sql 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 (competition VARCHAR, venue VARCHAR) ### Question: Name the competition for khartoum ### Answer: SELECT competition FROM table_name_54 WHERE venue = "khartoum"
Below is an context that describes a sql 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 (fatalities INTEGER, aircraft_type VARCHAR) ### Question: How many fatalities shows for the lockheed l-1049g? ### Answer: SELECT SUM(fatalities) FROM table_name_62 WHERE aircraft_type = "lockheed l-1049g"
Below is an context that describes a sql 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 (result VARCHAR, attendance VARCHAR) ### Question: What is the Result of the game with 72,949 in attendance? ### Answer: SELECT result FROM table_name_41 WHERE attendance = "72,949"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_50 (date VARCHAR, winner VARCHAR) ### Question: What is the date amer sulaiman won? ### Answer: SELECT date FROM table_name_50 WHERE winner = "amer sulaiman"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_49 (laps INTEGER, driver VARCHAR, points VARCHAR, car__number VARCHAR) ### Question: What is the lowest number of laps for ryan newman with over 96 points, a cur number under 24, ### Answer: SELECT MIN(laps) FROM table_name_49 WHERE points > 96 AND car__number < 24 AND driver = "ryan newman"
Below is an context that describes a sql 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 (date VARCHAR, tournament VARCHAR) ### Question: When did the Tournament of the Tour Championship take place? ### Answer: SELECT date FROM table_name_10 WHERE tournament = "the tour championship"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_11 (rank INTEGER, earnings___$__ INTEGER) ### Question: What is the lowest rank for a player earning $71,979? ### Answer: SELECT MIN(rank) FROM table_name_11 WHERE earnings___$__ < 71 OFFSET 979
Below is an context that describes a sql 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 (district VARCHAR, estd VARCHAR) ### Question: Which district was established in 1942? ### Answer: SELECT district FROM table_name_82 WHERE estd = 1942
Below is an context that describes a sql 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 (europe VARCHAR, head_coach VARCHAR, regional_competitions VARCHAR) ### Question: WHAT IS THE ERUPE WITH HEAD COACH vainauskas , sakalauskas AND WITH NEBL FINALIST? ### Answer: SELECT europe FROM table_name_68 WHERE head_coach = "vainauskas , sakalauskas" AND regional_competitions = "nebl finalist"
Below is an context that describes a sql 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 (year INTEGER, outcome VARCHAR, championship VARCHAR) ### Question: How many years have runner-up as the outcome, and indian wells as the championship? ### Answer: SELECT SUM(year) FROM table_name_83 WHERE outcome = "runner-up" AND championship = "indian wells"
Below is an context that describes a sql 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 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR) ### Question: What is the goal difference sum that has goals against smaller than 33, draws larger than 13? ### Answer: SELECT SUM(goal_difference) FROM table_name_27 WHERE goals_against < 33 AND draws > 13
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE city (Name VARCHAR, White VARCHAR) ### Question: List the names of the city with the top 5 white percentages. ### Answer: SELECT Name FROM city ORDER BY White DESC LIMIT 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_97 (winner VARCHAR, fifth VARCHAR) ### Question: WHAT IS THE WINNER WITH A FIFTH OF JOSS STONE? ### Answer: SELECT winner FROM table_name_97 WHERE fifth = "joss stone"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE LOCATIONS (Location_Name VARCHAR) ### Question: Which location names contain the word "film"? ### Answer: SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE "%film%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_93 (chassis VARCHAR, driver VARCHAR, rounds VARCHAR, tyre VARCHAR) ### Question: What is the chassis for Bruce Mclaren with all rounds and a g tyre? ### Answer: SELECT chassis FROM table_name_93 WHERE rounds = "all" AND tyre = "g" AND driver = "bruce mclaren"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17360840_4 (attendance VARCHAR, opponent VARCHAR) ### Question: How many attended on mathches against atlanta thrashers ### Answer: SELECT COUNT(attendance) FROM table_17360840_4 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_79 (original_title VARCHAR, director VARCHAR) ### Question: Name the original title directed by sudhendu roy ### Answer: SELECT original_title FROM table_name_79 WHERE director = "sudhendu roy"
Below is an context that describes a sql 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 (rank INTEGER, games VARCHAR, reb_avg VARCHAR, total_rebounds VARCHAR) ### Question: Which lowest rank(player) has a rebound average larger than 9, out of 920 rebounds, and who played more than 79 games? ### Answer: SELECT MIN(rank) FROM table_name_10 WHERE reb_avg > 9 AND total_rebounds = 920 AND games > 79
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14748457_1 (borough VARCHAR, station_users_2008_9 VARCHAR) ### Question: what is the name of the borough where station uses is 28702? ### Answer: SELECT borough FROM table_14748457_1 WHERE station_users_2008_9 = "28702"
Below is an context that describes a sql 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 (density INTEGER, population_2011_census VARCHAR) ### Question: What is the lowest density of a town with a 13,708 2011 population census ? ### Answer: SELECT MIN(density) FROM table_name_74 WHERE population_2011_census = 13 OFFSET 708
Below is an context that describes a sql 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 (surface VARCHAR, opponent VARCHAR) ### Question: Which surface has an Opponent of fernando verdasco? ### Answer: SELECT surface FROM table_name_41 WHERE opponent = "fernando verdasco"
Below is an context that describes a sql 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 (label VARCHAR, region VARCHAR) ### Question: Which label was in the United Kingdom region? ### Answer: SELECT label FROM table_name_17 WHERE region = "united kingdom"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_49 (date VARCHAR, venue VARCHAR, player VARCHAR) ### Question: What date did Josh Taumalolo play at Nuku'alofa? ### Answer: SELECT date FROM table_name_49 WHERE venue = "nuku'alofa" AND player = "josh taumalolo"
Below is an context that describes a sql 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 (city VARCHAR, venue VARCHAR) ### Question: Where is the Mackey Arena located? ### Answer: SELECT city FROM table_name_87 WHERE venue = "mackey arena"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17085981_2 (date_of_appointment VARCHAR, replaced_by VARCHAR) ### Question: How many appointment dates were recorded when Jürgen Kohler was the replaced by? ### Answer: SELECT COUNT(date_of_appointment) FROM table_17085981_2 WHERE replaced_by = "Jürgen Kohler"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28367242_1 (corporate_name VARCHAR, incorporation_date__city_ VARCHAR) ### Question: What is the name of the corporation that incorporated on october 15, 1955? ### Answer: SELECT corporate_name FROM table_28367242_1 WHERE incorporation_date__city_ = "October 15, 1955"
Below is an context that describes a sql 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 (country VARCHAR, player VARCHAR) ### Question: What country is Retief Goosen from? ### Answer: SELECT country FROM table_name_18 WHERE player = "retief goosen"
Below is an context that describes a sql 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 (rookie VARCHAR, goalkeeper VARCHAR) ### Question: Who is the rookie goalkeeper Mike Gabel? ### Answer: SELECT rookie FROM table_name_70 WHERE goalkeeper = "mike gabel"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13570_1 (stain VARCHAR, common_use VARCHAR) ### Question: What stain is used commonly for elastic fibers? ### Answer: SELECT stain FROM table_13570_1 WHERE common_use = "Elastic fibers"
Below is an context that describes a sql 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 (bronze INTEGER, silver VARCHAR, gold VARCHAR) ### Question: What is the sum of bronzes having silvers over 5 and golds under 20? ### Answer: SELECT SUM(bronze) FROM table_name_43 WHERE silver > 5 AND gold < 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_85 (visitor VARCHAR, date VARCHAR) ### Question: What team was visiting on February 15? ### Answer: SELECT visitor FROM table_name_85 WHERE date = "february 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_58 (score VARCHAR, date VARCHAR) ### Question: Which score has a Date of august 17? ### Answer: SELECT score FROM table_name_58 WHERE date = "august 17"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_29 (record VARCHAR, february VARCHAR) ### Question: What is the team's record on februrary 23? ### Answer: SELECT record FROM table_name_29 WHERE february = 23
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2226343_1 (laps VARCHAR, average_speed__mph_ VARCHAR) ### Question: How many laps have an average speed of 141.911? ### Answer: SELECT laps FROM table_2226343_1 WHERE average_speed__mph_ = "141.911"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2649597_1 (finish VARCHAR, start VARCHAR) ### Question: Where did he finish when he started at 21.6? ### Answer: SELECT COUNT(finish) FROM table_2649597_1 WHERE start = "21.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_80 (attendance INTEGER, away_fans VARCHAR, opponent VARCHAR) ### Question: What was the lowest attendance at a game when there were fewer than 151 away fans and an opponent of Bury? ### Answer: SELECT MIN(attendance) FROM table_name_80 WHERE away_fans < 151 AND opponent = "bury"
Below is an context that describes a sql 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 (runner_up_skip VARCHAR, event VARCHAR) ### Question: Who was the runner-up during the Mac Ice Classic? ### Answer: SELECT runner_up_skip FROM table_name_51 WHERE event = "mac ice classic"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_30121082_1 (civil_parish VARCHAR, townland VARCHAR) ### Question: What are the civil parishes of the Loughmarsh townland? ### Answer: SELECT civil_parish FROM table_30121082_1 WHERE townland = "Loughmarsh"
Below is an context that describes a sql 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 (ties INTEGER, team VARCHAR, games_played VARCHAR) ### Question: What is the average ties when the team is montreal victorias and the games played is more than 8? ### Answer: SELECT AVG(ties) FROM table_name_73 WHERE team = "montreal victorias" AND games_played > 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_name_62 (republican_ticket VARCHAR, democratic_ticket VARCHAR) ### Question: Who's the Republican ticket with a Democratic ticket of flora d. johnson? ### Answer: SELECT republican_ticket FROM table_name_62 WHERE democratic_ticket = "flora d. johnson"
Below is an context that describes a sql 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 (owner VARCHAR, frequency VARCHAR) ### Question: Who is the owner of the radio frequency of 0 101.5 fm? ### Answer: SELECT owner FROM table_name_90 WHERE frequency = "0 101.5 fm"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1167698_1 (third_place VARCHAR, runner_up VARCHAR) ### Question: Who won third place with the runner up being dynamo moscow? ### Answer: SELECT third_place FROM table_1167698_1 WHERE runner_up = "Dynamo Moscow"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13110459_2 (viewers__m_ VARCHAR, overall VARCHAR) ### Question: how many viewers (m) with overall being 91/101 ### Answer: SELECT COUNT(viewers__m_) FROM table_13110459_2 WHERE overall = "91/101"
Below is an context that describes a sql 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 (game VARCHAR, team VARCHAR) ### Question: What game was Minnesota the team? ### Answer: SELECT COUNT(game) FROM table_name_70 WHERE team = "minnesota"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (multiplier VARCHAR, front_side_bus VARCHAR, frequency VARCHAR) ### Question: Which Multiplier has a Front Side Bus of 200 mhz, and a Frequency of 1200 mhz? ### Answer: SELECT multiplier FROM table_name_98 WHERE front_side_bus = "200 mhz" AND frequency = "1200 mhz"
Below is an context that describes a sql 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 (partner VARCHAR, score_in_the_final VARCHAR) ### Question: what partner made the scores 6–4, 6–1? ### Answer: SELECT partner FROM table_name_19 WHERE score_in_the_final = "6–4, 6–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_70 (competition VARCHAR, notes VARCHAR) ### Question: Tell me the competition for half marathon ### Answer: SELECT competition FROM table_name_70 WHERE notes = "half marathon"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14009909_1 (counties_represented VARCHAR, district VARCHAR) ### Question: What are the counties represented in District 12.1 12a? ### Answer: SELECT counties_represented FROM table_14009909_1 WHERE district = "12.1 12A"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14319023_2 (boys_singles VARCHAR, mixed_doubles VARCHAR) ### Question: When mixed doubles is danny bawa chrisnanta debby susanto what is the boys singles? ### Answer: SELECT boys_singles FROM table_14319023_2 WHERE mixed_doubles = "Danny Bawa Chrisnanta Debby Susanto"
Below is an context that describes a sql 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 (date VARCHAR, time VARCHAR, set_4 VARCHAR) ### Question: What is the Date with a Time of 17:37, and the Set 4 is 25–15? ### Answer: SELECT date FROM table_name_38 WHERE time = "17:37" AND set_4 = "25–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_26638600_3 (lites_2_race_two_winning_team VARCHAR, lites_1_race_one_winning_team VARCHAR) ### Question: Who was the lights 2 race two winning team when the lites 1 race one winning team was #13 Inspire Motorsports? ### Answer: SELECT lites_2_race_two_winning_team FROM table_26638600_3 WHERE lites_1_race_one_winning_team = "#13 Inspire Motorsports"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28601467_1 (winner VARCHAR, result VARCHAR, runner_up VARCHAR) ### Question: What are all the winning records when the result is Scotland won on points table and the Runner-Up result is [[|]] 4 points? ### Answer: SELECT winner FROM table_28601467_1 WHERE result = "Scotland won on points table" AND runner_up = "[[|]] 4 points"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18303274_1 (circuit VARCHAR, fastest_lap VARCHAR) ### Question: Luis Salom had the fastest lap on which circuits? ### Answer: SELECT circuit FROM table_18303274_1 WHERE fastest_lap = "Luis Salom"
Below is an context that describes a sql 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 (weight VARCHAR, name VARCHAR) ### Question: Name the Weight which has a Name of balázs hárai category:articles with hcards? ### Answer: SELECT weight FROM table_name_10 WHERE name = "balázs hárai category:articles with hcards"
Below is an context that describes a sql 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 (year INTEGER, name VARCHAR) ### Question: What is the oldest year listed with the 1500 Louisiana Street name? ### Answer: SELECT MIN(year) FROM table_name_87 WHERE name = "1500 louisiana street"
Below is an context that describes a sql 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 (result VARCHAR, extra VARCHAR, year VARCHAR) ### Question: what is the result when extra is 4 x 100 m relay and the year is later than 1971? ### Answer: SELECT result FROM table_name_15 WHERE extra = "4 x 100 m relay" AND year > 1971
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_175980_2 (season VARCHAR, ranking VARCHAR) ### Question: What seasons had a ranking of #47? ### Answer: SELECT season FROM table_175980_2 WHERE ranking = "#47"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11577996_1 (year VARCHAR) ### Question: What school took 3rd place in 2007? ### Answer: SELECT 3 AS rd_place FROM table_11577996_1 WHERE 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_84 (company VARCHAR, number VARCHAR, price VARCHAR) ### Question: What company is numbered larger than 5 and priced at $389M? ### Answer: SELECT company FROM table_name_84 WHERE number > 5 AND price = "$389m"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_49 (date_s__administered VARCHAR, joe_sestak__d_ VARCHAR, margin_of_error VARCHAR) ### Question: WHAT DATE DID JOE SESTAK HAVE 46% WITH ± 3.0% MARGIN OF ERROR? ### Answer: SELECT date_s__administered FROM table_name_49 WHERE joe_sestak__d_ = "46%" AND margin_of_error = "± 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_22050544_4 (prize VARCHAR, event__number VARCHAR) ### Question: What was the prize pool for the event number 27H? ### Answer: SELECT prize AS Pool FROM table_22050544_4 WHERE event__number = "27H"
Below is an context that describes a sql 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 (attendance VARCHAR, opponent VARCHAR) ### Question: What was the Attendance in the game against the New Orleans Saints? ### Answer: SELECT COUNT(attendance) FROM table_name_29 WHERE opponent = "new orleans saints"
Below is an context that describes a sql 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 (attendance VARCHAR, date VARCHAR) ### Question: What was the Attendance on November 7, 1999? ### Answer: SELECT attendance FROM table_name_86 WHERE date = "november 7, 1999"
Below is an context that describes a sql 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 (recipient VARCHAR, date VARCHAR) ### Question: What movie won with a date of 12/11/03 ### Answer: SELECT recipient FROM table_name_78 WHERE date = "12/11/03"
Below is an context that describes a sql 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 (fielding_team VARCHAR, wicket VARCHAR) ### Question: Which fielding team had 1st wicket? ### Answer: SELECT fielding_team FROM table_name_61 WHERE wicket = "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_79 (episode_number INTEGER, air_date VARCHAR) ### Question: What is the lowest of Episode Number that has a Air Date on 20 july 2007? ### Answer: SELECT MIN(episode_number) FROM table_name_79 WHERE air_date = "20 july 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_14070062_3 (tries_against VARCHAR, points_against VARCHAR) ### Question: What's the tries against count of the team with 396 points against? ### Answer: SELECT COUNT(tries_against) FROM table_14070062_3 WHERE points_against = "396"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342256_40 (candidates VARCHAR, district VARCHAR) ### Question: What is the candidate for south carolina 3? ### Answer: SELECT candidates FROM table_1342256_40 WHERE district = "South Carolina 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_79 (grid VARCHAR, driver VARCHAR) ### Question: What was the grid of Jenson Button? ### Answer: SELECT grid FROM table_name_79 WHERE driver = "jenson button"
Below is an context that describes a sql 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 (rank INTEGER, rider VARCHAR) ### Question: What was Andrew Neill's rank? ### Answer: SELECT SUM(rank) FROM table_name_57 WHERE rider = "andrew neill"
Below is an context that describes a sql 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 (week VARCHAR, record VARCHAR) ### Question: What is the total number for the week with a record of 0-11? ### Answer: SELECT COUNT(week) FROM table_name_87 WHERE record = "0-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_30120560_1 (area__acres__ VARCHAR, townland VARCHAR) ### Question: what is the number of areas where the townland is brittas? ### Answer: SELECT COUNT(area__acres__) FROM table_30120560_1 WHERE townland = "Brittas"
Below is an context that describes a sql 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 (opponent VARCHAR, zone VARCHAR) ### Question: Who was the Europe/Africa group i's opponent? ### Answer: SELECT opponent FROM table_name_61 WHERE zone = "europe/africa group 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_name_50 (points_for VARCHAR, points_against VARCHAR) ### Question: With a club that has 400 Points against, what are the points? ### Answer: SELECT points_for FROM table_name_50 WHERE points_against = "400"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR) ### Question: If the stage is 9, what is the team classification name? ### Answer: SELECT team_classification FROM table_22941863_19 WHERE stage = 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_8 (overall INTEGER, college VARCHAR, round VARCHAR) ### Question: What is the highest overall pick from the College of Southern Mississippi that was selected before round 6? ### Answer: SELECT MAX(overall) FROM table_name_8 WHERE college = "southern mississippi" 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_68 (venue VARCHAR, club VARCHAR) ### Question: Which venue hosted the Dixie Derby Girls? ### Answer: SELECT venue FROM table_name_68 WHERE club = "dixie derby girls"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19523142_5 (group_8 VARCHAR, group_12 VARCHAR) ### Question: Who played in group 8 when Persinab Nabire played in Group 12? ### Answer: SELECT group_8 FROM table_19523142_5 WHERE group_12 = "Persinab Nabire"
Below is an context that describes a sql 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 (frequency_mhz VARCHAR, city_of_license VARCHAR) ### Question: What is the Frequency MHz of Trinidad, Colorado? ### Answer: SELECT frequency_mhz FROM table_name_6 WHERE city_of_license = "trinidad, colorado"
Below is an context that describes a sql 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 (icao VARCHAR, city VARCHAR) ### Question: Which ICAO's city is Manchester? ### Answer: SELECT icao FROM table_name_96 WHERE city = "manchester"
Below is an context that describes a sql 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 (finish VARCHAR, laps VARCHAR, qual VARCHAR) ### Question: What is the finish when there was more than 192 laps and a qual of 135.736? ### Answer: SELECT finish FROM table_name_2 WHERE laps > 192 AND qual = "135.736"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_76 (percent_of_slovenes_1991 VARCHAR, village__slovenian_ VARCHAR) ### Question: What was Rut's Slovenes percentage in 1991? ### Answer: SELECT percent_of_slovenes_1991 FROM table_name_76 WHERE village__slovenian_ = "rut"
Below is an context that describes a sql 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 (cash_on_hand VARCHAR, after_debt VARCHAR) ### Question: What is the amount of cash on hand that has an after debt of $327,094 ### Answer: SELECT cash_on_hand FROM table_name_60 WHERE after_debt = "$327,094"
Below is an context that describes a sql 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 (actor VARCHAR, character VARCHAR, soap_opera VARCHAR, duration VARCHAR) ### Question: What actor has goede tijden, slechte tijden, as the soap opera, 11 years as the duration, with rosa gonzalez as the character? ### Answer: SELECT actor FROM table_name_91 WHERE soap_opera = "goede tijden, slechte tijden" AND duration = "11 years" AND character = "rosa gonzalez"
Below is an context that describes a sql 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 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) ### Question: What is the bronze with more than 2 gold and less than 14 total and 4 silver? ### Answer: SELECT AVG(bronze) FROM table_name_86 WHERE gold > 2 AND total < 14 AND silver = 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_41 (pos VARCHAR, name VARCHAR) ### Question: What is Elise Norwood's Pos.? ### Answer: SELECT pos FROM table_name_41 WHERE name = "elise norwood"
Below is an context that describes a sql 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 (singapore_gross VARCHAR, producer VARCHAR) ### Question: What is the Singapore Gross with a Producer that is 2000? ### Answer: SELECT singapore_gross FROM table_name_72 WHERE producer = "2000"
Below is an context that describes a sql 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 (year INTEGER, venue VARCHAR) ### Question: What year is the event in athens, greece? ### Answer: SELECT MAX(year) FROM table_name_19 WHERE venue = "athens, greece"
Below is an context that describes a sql 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, format VARCHAR) ### Question: Which date is in stereo lp format? ### Answer: SELECT date FROM table_name_97 WHERE format = "stereo lp"
Below is an context that describes a sql 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 (points VARCHAR, year VARCHAR, engine VARCHAR) ### Question: How many points for the cosworth v8 engine after 1985? ### Answer: SELECT points FROM table_name_23 WHERE year > 1985 AND engine = "cosworth v8"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19398910_4 (class VARCHAR, bout_6 VARCHAR) ### Question: when Sanchez ( esp ) w 5-0 were the bout 6, which were the class? ### Answer: SELECT class FROM table_19398910_4 WHERE bout_6 = "Sanchez ( ESP ) W 5-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_72 (crowd INTEGER, home_team VARCHAR) ### Question: Which average Crowd has a Home team of south melbourne? ### Answer: SELECT AVG(crowd) FROM table_name_72 WHERE home_team = "south 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_15778392_1 (theme VARCHAR, week__number VARCHAR) ### Question: WHERE THE WEEK NUMBER WAS TOP 8, WHAT WAS THE THEME? ### Answer: SELECT theme FROM table_15778392_1 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_name_41 (role VARCHAR, origin VARCHAR) ### Question: What is the role of the aircraft that originates from the European Union? ### Answer: SELECT role FROM table_name_41 WHERE origin = "european union"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16441561_5 (position VARCHAR, player VARCHAR) ### Question: What position did Gene Stahl play ### Answer: SELECT position FROM table_16441561_5 WHERE player = "Gene Stahl"
Below is an context that describes a sql 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 (number_of_electorates__2009_ INTEGER, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) ### Question: What is the number of electorates (2009) for the Indore district, when reserved for (SC / ST /None) is none, and constituency number is 208? ### Answer: SELECT SUM(number_of_electorates__2009_) FROM table_name_21 WHERE district = "indore" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "208"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23390604_1 (mahmoud_ahmadinejad VARCHAR, mir_hossein_mousavi VARCHAR) ### Question: List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes. ### Answer: SELECT mahmoud_ahmadinejad FROM table_23390604_1 WHERE mir_hossein_mousavi = 218481