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_43 (score VARCHAR, record VARCHAR) ### Question: What is the score of the team with the 14-9 record? ### Answer: SELECT score FROM table_name_43 WHERE record = "14-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_4 (opponent VARCHAR, round VARCHAR, event VARCHAR) ### Question: Who was the opponent in the 1 round fight in the Ultimate Fighter 2 Finale? ### Answer: SELECT opponent FROM table_name_4 WHERE round = "1" AND event = "the ultimate fighter 2 finale"
Below is an context that describes a sql 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 (finalists VARCHAR, tournament VARCHAR) ### Question: What is Finalists, when Tournament is Miami? ### Answer: SELECT finalists FROM table_name_79 WHERE tournament = "miami"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14649522_1 (college VARCHAR, position VARCHAR, pick__number VARCHAR) ### Question: Which college was the wide receiver whose pick was less than 130.0 picked from? ### Answer: SELECT college FROM table_14649522_1 WHERE position = "Wide Receiver" AND pick__number < 130.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_91 (score VARCHAR, date VARCHAR) ### Question: Tell me the score on 1978-12-16 ### Answer: SELECT score FROM table_name_91 WHERE date = "1978-12-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_30058355_3 (mon_22_aug VARCHAR, wed_24_aug VARCHAR) ### Question: What is every entry on Monday August 22 when the entry for Wednesday August 24 is 22' 50.05 99.141mph? ### Answer: SELECT mon_22_aug FROM table_30058355_3 WHERE wed_24_aug = "22' 50.05 99.141mph"
Below is an context that describes 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_id VARCHAR, asset_details VARCHAR, asset_make VARCHAR, asset_model VARCHAR) ### Question: List the asset id, details, make and model for every asset. ### Answer: SELECT asset_id, asset_details, asset_make, 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_name_63 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR) ### Question: What is the Top-25 with a Top-10 of 8, and an Events of 45? ### Answer: SELECT AVG(top_25) FROM table_name_63 WHERE top_10 = 8 AND events = 45
Below is an context that describes a sql 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 (draws VARCHAR, name VARCHAR) ### Question: what is the number of draws for ali said gouled? ### Answer: SELECT COUNT(draws) FROM table_name_12 WHERE name = "ali said gouled"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24425976_7 (original_air_date VARCHAR, series VARCHAR) ### Question: What date did episode 115 in the series originally air? ### Answer: SELECT original_air_date FROM table_24425976_7 WHERE series = 115
Below is an context that describes a sql 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 (decile VARCHAR, area VARCHAR, authority VARCHAR) ### Question: Which decile has an Area of welcome bay, and an Authority of state? ### Answer: SELECT decile FROM table_name_62 WHERE area = "welcome bay" AND authority = "state"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE user_profiles (name VARCHAR, partitionid VARCHAR, uid VARCHAR); CREATE TABLE tweets (uid VARCHAR) ### Question: Find the name and partition id for users who tweeted less than twice. ### Answer: SELECT T1.name, T1.partitionid FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING COUNT(*) < 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_1013129_11 (nhl_team VARCHAR, college_junior_club_team VARCHAR) ### Question: What teams do the players from TPS (Finland) play for? ### Answer: SELECT nhl_team FROM table_1013129_11 WHERE college_junior_club_team = "TPS (Finland)"
Below is an context that describes a sql 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 (country VARCHAR, player VARCHAR) ### Question: What country is Jack Nicklaus from? ### Answer: SELECT country FROM table_name_17 WHERE player = "jack nicklaus"
Below is an context that describes a sql 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, date VARCHAR) ### Question: How many people attended the game on September 19, 1976? ### Answer: SELECT COUNT(attendance) FROM table_name_29 WHERE date = "september 19, 1976"
Below is an context that describes a sql 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 (score VARCHAR, venue VARCHAR) ### Question: Venue of thessaloniki (without participation) had what score? ### Answer: SELECT score FROM table_name_99 WHERE venue = "thessaloniki (without participation)"
Below is an context that describes a sql 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 (money___$__ VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: How much money does the player with a to par less than 4 and a score of 74-72-68-73=287 have? ### Answer: SELECT money___$__ FROM table_name_75 WHERE to_par < 4 AND score = 74 - 72 - 68 - 73 = 287
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR) ### Question: What facility opening in 1954? ### Answer: SELECT facility FROM table_25346763_1 WHERE year_opened = "1954"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE railway (Builder VARCHAR) ### Question: List the builders of railways in ascending alphabetical order. ### Answer: SELECT Builder FROM railway ORDER BY Builder
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_29163303_4 (championship VARCHAR, score VARCHAR) ### Question: How many championships were there where the score was 4–6, 7–6 (7–5) , [5–10]? ### Answer: SELECT COUNT(championship) FROM table_29163303_4 WHERE score = "4–6, 7–6 (7–5) , [5–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_15 (captain VARCHAR, club VARCHAR) ### Question: Who is the captain of Middlesbrough? ### Answer: SELECT captain FROM table_name_15 WHERE club = "middlesbrough"
Below is an context that describes a sql 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 (surface VARCHAR, score_in_the_final VARCHAR) ### Question: Which surface has a score in the final of 4–6, 3–6? ### Answer: SELECT surface FROM table_name_77 WHERE score_in_the_final = "4–6, 3–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_56 (rebounds VARCHAR, name VARCHAR) ### Question: What is the total number of rebounds values for Ann Wauters? ### Answer: SELECT COUNT(rebounds) FROM table_name_56 WHERE name = "ann wauters"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342249_35 (incumbent VARCHAR, district VARCHAR) ### Question: What is the incumbent for ohio 12? ### Answer: SELECT incumbent FROM table_1342249_35 WHERE district = "Ohio 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_25711913_14 (field_goals__4_points_ VARCHAR, touchdowns__5_points_ VARCHAR) ### Question: How many field goals were scored by the player that got 7 touchdowns? ### Answer: SELECT field_goals__4_points_ FROM table_25711913_14 WHERE touchdowns__5_points_ = 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_1342359_39 (result VARCHAR, incumbent VARCHAR) ### Question: What is the result for thomas s. mcmillan? ### Answer: SELECT result FROM table_1342359_39 WHERE incumbent = "Thomas S. McMillan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26842217_8 (date VARCHAR, site VARCHAR) ### Question: If the site is sanford stadium • athens, ga, what is the date? ### Answer: SELECT date FROM table_26842217_8 WHERE site = "Sanford Stadium • Athens, GA"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25721_3 (episode_no INTEGER, airdate VARCHAR) ### Question: Which episode number aired on 18 october 2012? ### Answer: SELECT MIN(episode_no) FROM table_25721_3 WHERE airdate = "18 October 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_38 (country VARCHAR, finish VARCHAR) ### Question: What country had a finish of t42? ### Answer: SELECT country FROM table_name_38 WHERE finish = "t42"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23014685_1 (no INTEGER, area_damaged VARCHAR) ### Question: What number missile led to damage to the Islamic University campus? ### Answer: SELECT MIN(no) FROM table_23014685_1 WHERE area_damaged = "Islamic University campus"
Below is an context that describes a sql 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 (attendance INTEGER, opponent VARCHAR, record VARCHAR) ### Question: What was the highest attendance when the opponent was the Indians and the record was 13-4? ### Answer: SELECT MAX(attendance) FROM table_name_99 WHERE opponent = "indians" AND record = "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_77 (type VARCHAR, population VARCHAR) ### Question: What type has a population of 370? ### Answer: SELECT type FROM table_name_77 WHERE population = 370
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341672_14 (party VARCHAR, incumbent VARCHAR) ### Question: Name the party for tim lee hall ### Answer: SELECT party FROM table_1341672_14 WHERE incumbent = "Tim Lee Hall"
Below is an context that describes a sql 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 (runner_up VARCHAR, tier VARCHAR, winner VARCHAR) ### Question: What is the Runner-up with the tier was tier ii, and a Winner of gigi fernández natalia zvereva 5–7, 6–1, 6–4? ### Answer: SELECT runner_up FROM table_name_43 WHERE tier = "tier ii" AND winner = "gigi fernández natalia zvereva 5–7, 6–1, 6–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_65 (entrant VARCHAR, pts VARCHAR) ### Question: What is the entrant that has 0 points? ### Answer: SELECT entrant FROM table_name_65 WHERE pts = "0"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (district VARCHAR, first_elected VARCHAR, party VARCHAR) ### Question: What district was a republican first elected in 2000? ### Answer: SELECT district FROM table_name_98 WHERE first_elected = 2000 AND party = "republican"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_56 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR) ### Question: What is the average number of top-10s for events with more than 12 cuts made and 0 wins? ### Answer: SELECT AVG(top_10) FROM table_name_56 WHERE cuts_made > 12 AND wins < 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_1601027_1 (headphone_class VARCHAR, us_msrp VARCHAR) ### Question: How many headphone classes have a US MSRP of $150? ### Answer: SELECT COUNT(headphone_class) FROM table_1601027_1 WHERE us_msrp = "$150"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18220102_1 (award_winning_film VARCHAR, date__closing_ VARCHAR) ### Question: Which award-winning film has a closing date of September 4? ### Answer: SELECT award_winning_film FROM table_18220102_1 WHERE date__closing_ = "September 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_13003460_1 (the_icelandic_of_the_glossary VARCHAR, the_basque_of_the_glossary VARCHAR) ### Question: What is the iclandic of the glossary for presenta for mi locaria ### Answer: SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE the_basque_of_the_glossary = "presenta for mi locaria"
Below is an context that describes a sql 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 (opponent VARCHAR, score VARCHAR, location VARCHAR, game VARCHAR) ### Question: What is Opponent, when Location is "Boston Garden", when Game is greater than 1, and when Score is "115-105"? ### Answer: SELECT opponent FROM table_name_91 WHERE location = "boston garden" AND game > 1 AND score = "115-105"
Below is an context that describes a sql 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, place VARCHAR) ### Question: What is Score, when Place is "T1"? ### Answer: SELECT score FROM table_name_15 WHERE place = "t1"
Below is an context that describes a sql 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 (losses INTEGER, wins VARCHAR, against VARCHAR, draws VARCHAR) ### Question: Which Losses have an Against smaller than 1464, and Draws smaller than 1, and Wins larger than 7? ### Answer: SELECT MIN(losses) FROM table_name_58 WHERE against < 1464 AND draws < 1 AND wins > 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_1921_1 (conflict VARCHAR, location VARCHAR) ### Question: Which conflicts took place in Yemen? ### Answer: SELECT conflict FROM table_1921_1 WHERE location = "Yemen"
Below is an context that describes a sql 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 (player VARCHAR, position VARCHAR, nationality VARCHAR) ### Question: Who is the player from Denmark who plays position c? ### Answer: SELECT player FROM table_name_68 WHERE position = "c" AND nationality = "denmark"
Below is an context that describes a sql 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 (cash_on_hand VARCHAR, after_debt VARCHAR) ### Question: How much cash was on hand after debt of $82,741? ### Answer: SELECT cash_on_hand FROM table_name_93 WHERE after_debt = "$82,741"
Below is an context that describes a sql 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 (venue VARCHAR, home_team VARCHAR) ### Question: Where did Essendon play as the home team? ### Answer: SELECT venue FROM table_name_93 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_27487336_1 (rushing_yards_per_game VARCHAR, sacks VARCHAR) ### Question: What is every value for rushing yards per game if sacks if 25? ### Answer: SELECT rushing_yards_per_game FROM table_27487336_1 WHERE sacks = "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 table_22801165_1 (date VARCHAR, cowboys_points VARCHAR) ### Question: When did the Cowboys score 13 points in 1966? ### Answer: SELECT date FROM table_22801165_1 WHERE cowboys_points = 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 table_23308178_8 (game VARCHAR, record VARCHAR) ### Question: How many games did they have a record of 39-12-6? ### Answer: SELECT COUNT(game) FROM table_23308178_8 WHERE record = "39-12-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_94 (score VARCHAR, home VARCHAR) ### Question: What was the score when Montreal was home? ### Answer: SELECT score FROM table_name_94 WHERE home = "montreal"
Below is an context that describes a sql 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 (team VARCHAR, driver VARCHAR, car__number VARCHAR, pos VARCHAR, make VARCHAR) ### Question: Which Team has a Pos larger than 3, and a Make of toyota, and a Car # smaller than 59, and a Driver of mike skinner? ### Answer: SELECT team FROM table_name_75 WHERE pos > 3 AND make = "toyota" AND car__number < 59 AND driver = "mike skinner"
Below is an context that describes a sql 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 (venue VARCHAR, location VARCHAR) ### Question: What is the venue that is located in zhodino? ### Answer: SELECT venue FROM table_name_84 WHERE location = "zhodino"
Below is an context that describes a 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 (club VARCHAR, tests VARCHAR) ### Question: The player for what club had 2 tests? ### Answer: SELECT club FROM table_27771406_1 WHERE tests = 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_53 (laps INTEGER, time_retired VARCHAR) ### Question: How many laps were there when time/retired was gearbox? ### Answer: SELECT SUM(laps) FROM table_name_53 WHERE time_retired = "gearbox"
Below is an context that describes a sql 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 (rank VARCHAR, location VARCHAR) ### Question: What rank is the airport in Fortaleza? ### Answer: SELECT rank FROM table_name_19 WHERE location = "fortaleza"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_86 (date VARCHAR, road_team VARCHAR, result VARCHAR) ### Question: WHAT IS THE DATE WITH BOSTON ROAD TEAM AND 126-105 RESULT? ### Answer: SELECT date FROM table_name_86 WHERE road_team = "boston" AND result = "126-105"
Below is an context that describes a sql 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 (name VARCHAR, position VARCHAR) ### Question: what is the name of the player that played position 3b? ### Answer: SELECT name FROM table_name_54 WHERE position = "3b"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE customers (customer_name VARCHAR) ### Question: Find the name of all customers. ### Answer: SELECT customer_name FROM customers
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341423_49 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who ran in the district elections won by Tom Petri? ### Answer: SELECT candidates FROM table_1341423_49 WHERE incumbent = "Tom Petri"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22824319_3 (points INTEGER) ### Question: Name the least points ### Answer: SELECT MIN(points) FROM table_22824319_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_27 (language VARCHAR, film_name VARCHAR) ### Question: what language is seethaiah in ### Answer: SELECT language FROM table_name_27 WHERE film_name = "seethaiah"
Below is an context that describes a sql 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 (intergiro_classification VARCHAR, stage VARCHAR) ### Question: During stage 21, who held the Intergiro classification? ### Answer: SELECT intergiro_classification FROM table_name_22 WHERE stage = "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_name_71 (females VARCHAR, language VARCHAR) ### Question: What females speak Romanian? ### Answer: SELECT females FROM table_name_71 WHERE language = "romanian"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13050822_2 (length VARCHAR, stage VARCHAR) ### Question: Name the length for stage ss22 ### Answer: SELECT length FROM table_13050822_2 WHERE stage = "SS22"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18600760_9 (water__sqmi_ VARCHAR, latitude VARCHAR) ### Question: How many square miles of water does the township at latitude 48.064751 have? ### Answer: SELECT water__sqmi_ FROM table_18600760_9 WHERE latitude = "48.064751"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_261642_3 (frequency__hz_ VARCHAR, g__μs_km_ VARCHAR) ### Question: what is the frequency (hz) when the g (μs/km) is 53.205? ### Answer: SELECT frequency__hz_ FROM table_261642_3 WHERE g__μs_km_ = "53.205"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16388439_3 (home_team VARCHAR, ground VARCHAR) ### Question: Name the home team for football park ### Answer: SELECT home_team FROM table_16388439_3 WHERE ground = "Football 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_33 (station VARCHAR, programming VARCHAR) ### Question: Which station has programming of Me-TV? ### Answer: SELECT station FROM table_name_33 WHERE programming = "me-tv"
Below is an context that describes a sql 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 (draws VARCHAR, goal_difference VARCHAR, goals_for VARCHAR, losses VARCHAR) ### Question: Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21 ### Answer: SELECT COUNT(draws) FROM table_name_45 WHERE goals_for = 58 AND losses = 12 AND goal_difference < 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_name_89 (mpg_uk_combined VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_urban__cold_ VARCHAR, transmission VARCHAR) ### Question: What is the mpg-uk combined with an mpg-uk urban (cold) greater than 26.6, a m5 transmission, a diesel fuel type, and an engine capacity less than 1560? ### Answer: SELECT mpg_uk_combined FROM table_name_89 WHERE mpg_uk_urban__cold_ > 26.6 AND transmission = "m5" AND fuel_type = "diesel" AND engine_capacity < 1560
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24852001_2 (opponent VARCHAR, attendance VARCHAR) ### Question: Who were the opponents that had an attendance of exactly 16115? ### Answer: SELECT opponent FROM table_24852001_2 WHERE attendance = 16115
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28853064_15 (stage VARCHAR, winner VARCHAR, team_classification VARCHAR, mountains_classification VARCHAR) ### Question: In what stage did Jaime Vergara won, Team Classification was given to EPM-Une and Mountain Classification winner was Oscar Solis? ### Answer: SELECT stage FROM table_28853064_15 WHERE team_classification = "EPM-UNE" AND mountains_classification = "Oscar Solis" AND winner = "Jaime Vergara"
Below is an context that describes a sql 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 (plural VARCHAR, singular VARCHAR) ### Question: What is the plural if the singular is awu? ### Answer: SELECT plural FROM table_name_60 WHERE singular = "awu"
Below is an context that describes a sql 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 (location VARCHAR, distance VARCHAR) ### Question: What's the location for men's speed skating? ### Answer: SELECT location FROM table_name_70 WHERE distance = "men's speed skating"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_47 (other INTEGER, albanians VARCHAR, roma VARCHAR) ### Question: Tell me the lowest other for albanians more than 8793 and Roma less than 1030 ### Answer: SELECT MIN(other) FROM table_name_47 WHERE albanians > 8793 AND roma < 1030
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18077713_1 (earnings_per_share__¢_ VARCHAR, net_profit__us_$m_ VARCHAR) ### Question: What is the earnings per share when the net profit is 16.2 million dollars? ### Answer: SELECT earnings_per_share__¢_ FROM table_18077713_1 WHERE net_profit__us_$m_ = "16.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_12078626_1 (success VARCHAR, deadline_for_completion VARCHAR) ### Question: what's the success where deadline for completion is october 7, 2007 ### Answer: SELECT success FROM table_12078626_1 WHERE deadline_for_completion = "October 7, 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_7 (category VARCHAR, award VARCHAR) ### Question: Name the category for 2nd melon music awards ### Answer: SELECT category FROM table_name_7 WHERE award = "2nd melon music awards"
Below is an context that describes a sql 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 (player VARCHAR, year_s__won VARCHAR) ### Question: In 2007, what player won player of the year? ### Answer: SELECT player FROM table_name_35 WHERE year_s__won = "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 gymnast (Total_Points VARCHAR, Floor_Exercise_Points VARCHAR) ### Question: List the total points of gymnasts in descending order of floor exercise points. ### Answer: SELECT Total_Points FROM gymnast ORDER BY Floor_Exercise_Points DESC
Below is an context that describes a sql 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 (player VARCHAR, college VARCHAR) ### Question: What player attended UAB college? ### Answer: SELECT player FROM table_name_53 WHERE college = "uab"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15827397_1 (name VARCHAR, livery VARCHAR) ### Question: How many locomotives have a livery that is highland railway green ### Answer: SELECT COUNT(name) FROM table_15827397_1 WHERE livery = "Highland Railway green"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_26 (lost VARCHAR, points_for VARCHAR) ### Question: How many losses were there with 208 points? ### Answer: SELECT lost FROM table_name_26 WHERE points_for = "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_name_99 (name VARCHAR, nationality VARCHAR, points VARCHAR) ### Question: Which Name has a Nationality of nor, and Points of 136? ### Answer: SELECT name FROM table_name_99 WHERE nationality = "nor" AND points = 136
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2668329_11 (party VARCHAR, incumbent VARCHAR) ### Question: What is Samuel Smith's party? ### Answer: SELECT party FROM table_2668329_11 WHERE incumbent = "Samuel Smith"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17323092_8 (date VARCHAR, high_points VARCHAR) ### Question: What dates did Chris Bosh (18) score the high points? ### Answer: SELECT date FROM table_17323092_8 WHERE high_points = "Chris Bosh (18)"
Below is an context that describes a sql 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 (money_raised VARCHAR, _2q VARCHAR, total_receipts VARCHAR) ### Question: How much money was raised in the 2Q when the total receipts were $63,075,927? ### Answer: SELECT money_raised, _2q FROM table_name_28 WHERE total_receipts = "$63,075,927"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_89 (head_of_household VARCHAR, married_filing_separately VARCHAR) ### Question: Name the head of household that has married filing separately of $104,426–$186,475 ### Answer: SELECT head_of_household FROM table_name_89 WHERE married_filing_separately = "$104,426–$186,475"
Below is an context that describes a sql 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 (year VARCHAR, country VARCHAR, individual VARCHAR) ### Question: How many years was the individual winner from the United States was Tiger Woods? ### Answer: SELECT COUNT(year) FROM table_name_75 WHERE country = "united states" AND individual = "tiger woods"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_47 (place INTEGER, televote_sms VARCHAR) ### Question: what is the place when the televote/sms is 2.39%? ### Answer: SELECT SUM(place) FROM table_name_47 WHERE televote_sms = "2.39%"
Below is an context that describes a sql 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 (season VARCHAR, races VARCHAR, team VARCHAR) ### Question: What season has 6 races and the team is Australia? ### Answer: SELECT season FROM table_name_90 WHERE races = 6 AND team = "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_34 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### Question: Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational? ### Answer: SELECT runner_s__up FROM table_name_34 WHERE margin_of_victory = "1 stroke" AND tournament = "world seniors invitational"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR) ### Question: Which party does Tom Luken belong to? ### Answer: SELECT party FROM table_1341577_36 WHERE incumbent = "Tom Luken"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10023387_1 (doubles_w_l VARCHAR, years_played VARCHAR) ### Question: what's the doubles w-l with years played value of 1 (1968) ### Answer: SELECT doubles_w_l FROM table_10023387_1 WHERE years_played = "1 (1968)"
Below is an context that describes a 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 (blackberry_os VARCHAR, other VARCHAR, quarter VARCHAR) ### Question: During the quarter of 2012 Q2, how many millions of Blackberry OS phones where shipped when 0.1 million others were shipped? ### Answer: SELECT COUNT(blackberry_os) FROM table_14260687_3 WHERE other = "0.1" AND quarter = "2012 Q2"
Below is an context that describes a sql 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 (name VARCHAR, qual_2 VARCHAR) ### Question: What is the name of the person with a 1:10.771 qual 2? ### Answer: SELECT name FROM table_name_60 WHERE qual_2 = "1:10.771"
Below is an context that describes a sql 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 (notes VARCHAR, country VARCHAR) ### Question: What are the notes of the United States? ### Answer: SELECT notes FROM table_name_31 WHERE country = "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_25 (date_of_vacancy VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR) ### Question: what is the date of vacancy when the position in table is 16th and the outgoing manager is russell slade? ### Answer: SELECT date_of_vacancy FROM table_name_25 WHERE position_in_table = "16th" AND outgoing_manager = "russell slade"
Below is an context that describes a sql 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 (debut_year INTEGER, games VARCHAR, goals VARCHAR, years_at_club VARCHAR) ### Question: Which Debut year has Goals of 0, and Years at club of 1963, and Games larger than 5? ### Answer: SELECT AVG(debut_year) FROM table_name_76 WHERE goals = 0 AND years_at_club = "1963" AND games > 5