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_14 (years_as_tallest VARCHAR, height_metres___ft VARCHAR) ### Question: Name the Years as tallest that has Height metres / ft of 01.0 27 / 90? ### Answer: SELECT years_as_tallest FROM table_name_14 WHERE height_metres___ft = "01.0 27 / 90"
Below is an context that describes a sql 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 (away_team VARCHAR, venue VARCHAR) ### Question: Which away team is from junction oval? ### Answer: SELECT away_team FROM table_name_38 WHERE venue = "junction oval"
Below is an context that describes a sql 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 (format VARCHAR, label VARCHAR, catalog VARCHAR, date VARCHAR) ### Question: What is the format for the album under the label, luaka bop, that had a catalog number of 3645 and dated after 1981? ### Answer: SELECT format FROM table_name_15 WHERE catalog = "3645" AND date > 1981 AND label = "luaka bop"
Below is an context that describes a sql 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 (height VARCHAR, name VARCHAR, built VARCHAR, rank VARCHAR, floors VARCHAR) ### Question: What is Height, when Rank is less than 20, when Floors is greater than 9, when Built is 2005, and when Name is The Edge (C)? ### Answer: SELECT height FROM table_name_84 WHERE rank < 20 AND floors > 9 AND built = 2005 AND name = "the edge (c)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_88 (points VARCHAR, january VARCHAR) ### Question: How many Points have a January of 18? ### Answer: SELECT COUNT(points) FROM table_name_88 WHERE january = 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_4 (outcome VARCHAR, score VARCHAR) ### Question: What is the outcome of a score that is 6–1, 6–4? ### Answer: SELECT outcome FROM table_name_4 WHERE score = "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_22871316_11 (game INTEGER, date VARCHAR) ### Question: How many games are on the date of April 30? ### Answer: SELECT MIN(game) FROM table_22871316_11 WHERE date = "April 30"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR, date VARCHAR) ### Question: Who was the opponent in a week less than 8 on October 9, 1960? ### Answer: SELECT opponent FROM table_name_24 WHERE week < 8 AND date = "october 9, 1960"
Below is an context that describes a sql 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 (bronze INTEGER, nation VARCHAR, silver VARCHAR) ### Question: What is the bronze for Kyrgyzstan nation with a silver record of greater than 0? ### Answer: SELECT AVG(bronze) FROM table_name_8 WHERE nation = "kyrgyzstan" AND silver > 0
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20704243_4 (original_air_date VARCHAR, written_by VARCHAR) ### Question: When was the episode written by Albert Kim aired for the first time? ### Answer: SELECT original_air_date FROM table_20704243_4 WHERE written_by = "Albert Kim"
Below is an context that describes a sql 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 (method VARCHAR, opponent VARCHAR) ### Question: What is the method against Björn Bregy? ### Answer: SELECT method FROM table_name_29 WHERE opponent = "björn bregy"
Below is an context that describes a sql 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 (crowd INTEGER, venue VARCHAR) ### Question: what was the largest attendance at kardinia park? ### Answer: SELECT MAX(crowd) FROM table_name_74 WHERE venue = "kardinia 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_2219961_2 (season__number INTEGER, director VARCHAR) ### Question: What is the latest season number that Eric Tuchman directed? ### Answer: SELECT MAX(season__number) FROM table_2219961_2 WHERE director = "Eric Tuchman"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17271495_1 (grid VARCHAR, points VARCHAR) ### Question: Name the total number of grid for 30 ### Answer: SELECT COUNT(grid) FROM table_17271495_1 WHERE points = "30"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_2 (gp_winner VARCHAR, race_winners VARCHAR, place VARCHAR) ### Question: What is the GP winner for the Race winners valentin giraud / nicolas musset, and a place genk? ### Answer: SELECT gp_winner FROM table_name_2 WHERE race_winners = "valentin giraud / nicolas musset" AND place = "genk"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_64 (school VARCHAR, position VARCHAR) ### Question: Which school had a player who played the C position? ### Answer: SELECT school FROM table_name_64 WHERE position = "c"
Below is an context that describes a sql 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 (h___a VARCHAR, scorers VARCHAR) ### Question: What was the H/A when the scorer was Hughes? ### Answer: SELECT h___a FROM table_name_50 WHERE scorers = "hughes"
Below is an context that describes a sql 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 (cardinalatial_order_and_title VARCHAR, elector VARCHAR) ### Question: What is the cardinalatial order and title of bosone? ### Answer: SELECT cardinalatial_order_and_title FROM table_name_92 WHERE elector = "bosone"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_42 (league INTEGER, total VARCHAR, name VARCHAR) ### Question: Which league has total smaller than 284, with Sandro Mazzola league? ### Answer: SELECT MIN(league) FROM table_name_42 WHERE total < 284 AND name = "sandro mazzola"
Below is an context that describes a sql 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 (byes INTEGER, losses VARCHAR, draws VARCHAR) ### Question: What is the highest number of byes where the losses were 9 and the draws were less than 0? ### Answer: SELECT MAX(byes) FROM table_name_93 WHERE losses = 9 AND draws < 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_1357052_6 (grsecurity VARCHAR, distribution VARCHAR) ### Question: what's the grsecurity with dbeingtribution being debian / ubuntu ### Answer: SELECT grsecurity FROM table_1357052_6 WHERE distribution = "Debian / Ubuntu"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15275060_1 (bulgarian_name VARCHAR, Mart VARCHAR, Transliteration VARCHAR) ### Question: Name the bulgarian name for mart ### Answer: SELECT bulgarian_name FROM table_15275060_1 WHERE BULGARIAN_NAME(Transliteration) = Mart
Below is an context that describes a sql 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 (Id VARCHAR) ### Question: What was the value in 2003 when 2006 was WTA Premier Mandatory Tournaments? ### Answer: SELECT 2003 FROM table_name_86 WHERE 2006 = "wta premier mandatory 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_55 (party VARCHAR, ifop_5_30_09 VARCHAR) ### Question: Who had an Iflop of 2.5%? ### Answer: SELECT party FROM table_name_55 WHERE ifop_5_30_09 = "2.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_40 (tournament VARCHAR, runner_s__up VARCHAR) ### Question: Which tournaments was Ryan Palmer in as a runner-up? ### Answer: SELECT tournament FROM table_name_40 WHERE runner_s__up = "ryan palmer"
Below is an context that describes a sql 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 (package_option VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR) ### Question: What package/option has documentaries as the content, yes as the HDTV, and a television service of history hd? ### Answer: SELECT package_option FROM table_name_56 WHERE content = "documentaries" AND hdtv = "yes" AND television_service = "history hd"
Below is an context that describes a sql 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 (week_1 VARCHAR, week_2 VARCHAR) ### Question: Who was the week 1 nomination when the week 2 nomination was Piia Jarkko? ### Answer: SELECT week_1 FROM table_name_35 WHERE week_2 = "piia jarkko"
Below is an context that describes a sql 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, attendance VARCHAR) ### Question: In what week was the attendance 25,000? ### Answer: SELECT week FROM table_name_92 WHERE attendance = "25,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_1974632_1 (location VARCHAR, type VARCHAR) ### Question: where is the private/presbyterian institute ### Answer: SELECT location FROM table_1974632_1 WHERE type = "Private/Presbyterian"
Below is an context that describes a sql 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 (place INTEGER, total VARCHAR, draw VARCHAR) ### Question: Which Place is the lowest one that has a Total smaller than 24, and a Draw larger than 7? ### Answer: SELECT MIN(place) FROM table_name_94 WHERE total < 24 AND draw > 7
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_14 (label VARCHAR, catalog VARCHAR) ### Question: What is the label for catalog EMB 31956? ### Answer: SELECT label FROM table_name_14 WHERE catalog = "emb 31956"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26013618_1 (nsg_nr INTEGER, date_established VARCHAR) ### Question: What Nature reserve number was established on 19961220 20.12.1996 ### Answer: SELECT MIN(nsg_nr) FROM table_26013618_1 WHERE date_established = "19961220 20.12.1996"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26198709_1 (rank__week_ INTEGER, production_code VARCHAR) ### Question: What is the weeks rank for the episode with the production code 1alf05? ### Answer: SELECT MAX(rank__week_) FROM table_26198709_1 WHERE production_code = "1ALF05"
Below is an context that describes a sql 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 (date VARCHAR, away_captain VARCHAR, venue VARCHAR) ### Question: On what date was Arthur Jones the away captain at Sydney Cricket Ground? ### Answer: SELECT date FROM table_name_33 WHERE away_captain = "arthur jones" AND venue = "sydney cricket ground"
Below is an context that describes a sql 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 (fa_cup_goals INTEGER, total_apps__sub_ VARCHAR, total_goals VARCHAR) ### Question: What division has the highest FA Cup Goals, but a Total Goal score less than 5, and a Total Apps of 52? ### Answer: SELECT MAX(fa_cup_goals) FROM table_name_85 WHERE total_apps__sub_ = "52" AND total_goals < 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_19897294_10 (location_s_ VARCHAR, no_in_series VARCHAR) ### Question: Where was the episode with series number US9 filmed? ### Answer: SELECT location_s_ FROM table_19897294_10 WHERE no_in_series = "US9"
Below is an context that describes a sql 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 (stadium VARCHAR, date VARCHAR) ### Question: Which stadium hosted the November 20 game? ### Answer: SELECT stadium FROM table_name_11 WHERE date = "november 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_26166836_1 (location VARCHAR, road_race VARCHAR) ### Question: Where was the istanbul marathon? ### Answer: SELECT location FROM table_26166836_1 WHERE road_race = "Istanbul 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_name_31 (details VARCHAR, points VARCHAR) ### Question: During which competition were a total of 36 points scored? ### Answer: SELECT details FROM table_name_31 WHERE points = 36
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_95 (transfer_window VARCHAR, ends INTEGER) ### Question: Which transfer window ends after 2006? ### Answer: SELECT transfer_window FROM table_name_95 WHERE ends > 2006
Below is an context that describes a sql 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 (architecture_version VARCHAR, model VARCHAR) ### Question: What is the architecture version of Model 1b? ### Answer: SELECT architecture_version FROM table_name_10 WHERE model = "1b"
Below is an context that describes a sql 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 (cover_model VARCHAR, pictorials VARCHAR) ### Question: Which Cover model has a Pictorials of brande roderick-pmoy, naked news? ### Answer: SELECT cover_model FROM table_name_56 WHERE pictorials = "brande roderick-pmoy, naked news"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342218_5 (district VARCHAR, result VARCHAR, incumbent VARCHAR) ### Question: Which district has the incumbent Wilbur Mills and a re-elected result? ### Answer: SELECT district FROM table_1342218_5 WHERE result = "Re-elected" AND incumbent = "Wilbur Mills"
Below is an context that describes a sql 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 (score VARCHAR, result VARCHAR, date VARCHAR) ### Question: What is the Score that has a Result of 2–1 on 5 july 2007? ### Answer: SELECT score FROM table_name_47 WHERE result = "2–1" AND date = "5 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_2385460_1 (travel_time VARCHAR, route VARCHAR) ### Question: Name the travel time for porta nolana - nola - baiano ### Answer: SELECT travel_time FROM table_2385460_1 WHERE route = "Porta Nolana - Nola - Baiano"
Below is an context that describes a sql 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 (open_1st_viii VARCHAR, crew VARCHAR) ### Question: What is the Open 1st VIII for the 2012 crew? ### Answer: SELECT open_1st_viii FROM table_name_76 WHERE crew = 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 (round INTEGER, player VARCHAR) ### Question: What is the average round for martin havlat? ### Answer: SELECT AVG(round) FROM table_name_38 WHERE player = "martin havlat"
Below is an context that describes a sql 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 (sydney VARCHAR, gold_coast VARCHAR, auckland VARCHAR, melbourne VARCHAR, perth VARCHAR) ### Question: yes or no for the sydney with yes for melbourne, no for perth, no for auckland and no for gold coast? ### Answer: SELECT sydney FROM table_name_43 WHERE melbourne = "yes" AND perth = "no" AND auckland = "no" AND 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_20 (type VARCHAR, name VARCHAR) ### Question: What type is González? ### Answer: SELECT type FROM table_name_20 WHERE name = "gonzález"
Below is an context that describes a sql 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 (round INTEGER, nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)? ### Answer: SELECT MIN(round) FROM table_name_19 WHERE nationality = "united states" AND college_junior_club_team__league_ = "breck school (ushs)"
Below is an context that describes a sql 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 (score VARCHAR, record VARCHAR) ### Question: WHich Score has a Record of 31–28–3? ### Answer: SELECT score FROM table_name_16 WHERE record = "31–28–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_16 (money___ INTEGER, score VARCHAR) ### Question: What is the most money for the score 75-74-72-67=288? ### Answer: SELECT MAX(money___) AS $__ FROM table_name_16 WHERE score = 75 - 74 - 72 - 67 = 288
Below is an context that describes a sql 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 (record VARCHAR, home VARCHAR, points VARCHAR) ### Question: What is the record of the game with 35 points and pittsburgh as the home team? ### Answer: SELECT record FROM table_name_77 WHERE home = "pittsburgh" AND points = 35
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE submission (Scores INTEGER) ### Question: What is the average score of submissions? ### Answer: SELECT AVG(Scores) FROM submission
Below is an context that describes a sql 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 (round INTEGER, overall INTEGER) ### Question: Which Round has an Overall smaller than 6? ### Answer: SELECT MAX(round) FROM table_name_84 WHERE overall < 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_6 (theme VARCHAR, days VARCHAR, series VARCHAR) ### Question: What's the theme for a series of season 3 with smaller than 148 days? ### Answer: SELECT theme FROM table_name_6 WHERE days < 148 AND series = "season 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_94 (week INTEGER, date VARCHAR) ### Question: What is the week of the game played on November 28, 1974? ### Answer: SELECT MIN(week) FROM table_name_94 WHERE date = "november 28, 1974"
Below is an context that describes a sql 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 (val_de_marne VARCHAR, seine_saint_denis VARCHAR) ### Question: WHAT IS THE VAL-DE-MARNE WITH A Seine-Saint-Denis of 2.7%? ### Answer: SELECT val_de_marne FROM table_name_18 WHERE seine_saint_denis = "2.7%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_19 (points INTEGER, year VARCHAR, entrant VARCHAR) ### Question: What is the least amount of points the entrant Simoniz received before 1960? ### Answer: SELECT MIN(points) FROM table_name_19 WHERE year < 1960 AND entrant = "simoniz"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1510519_1 (number_of_seasons_in_top_division VARCHAR, position_in_2012_13 VARCHAR) ### Question: How many seasons in the top division for the team that finished 005 5th in 2012-2013 ### Answer: SELECT COUNT(number_of_seasons_in_top_division) FROM table_1510519_1 WHERE position_in_2012_13 = "005 5th"
Below is an context that describes a sql 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 (points INTEGER, year VARCHAR, wins VARCHAR) ### Question: Which Points have a Year larger than 1998, and Wins of 1? ### Answer: SELECT AVG(points) FROM table_name_79 WHERE year > 1998 AND wins = 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_75 (mintage INTEGER, artist VARCHAR, year VARCHAR) ### Question: What was the average mintage for that of artist Celia Godkin, before the year 2010? ### Answer: SELECT AVG(mintage) FROM table_name_75 WHERE artist = "celia godkin" AND year < 2010
Below is an context that describes a sql 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 (visiting_team VARCHAR, stadium VARCHAR) ### Question: What team visited the Jacksonville Municipal Stadium? ### Answer: SELECT visiting_team FROM table_name_10 WHERE stadium = "jacksonville municipal stadium"
Below is an context that describes a sql 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 (year VARCHAR, result VARCHAR) ### Question: What year was the result did not qualify? ### Answer: SELECT year FROM table_name_85 WHERE result = "did not qualify"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR) ### Question: Which player has 17 blocks? ### Answer: SELECT player FROM table_24912693_4 WHERE blocks = 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_36 (date VARCHAR, attendance VARCHAR) ### Question: On what date was the attendance 17,136? ### Answer: SELECT date FROM table_name_36 WHERE attendance = "17,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_name_46 (producer_s_ VARCHAR, length VARCHAR, track VARCHAR, songwriter_s_ VARCHAR) ### Question: Which Producer(s) has a Track smaller than 8, and a Songwriter(s) of hadise açıkgöz, yves jongen, and a Length of 3:08? ### Answer: SELECT producer_s_ FROM table_name_46 WHERE track < 8 AND songwriter_s_ = "hadise açıkgöz, yves jongen" AND length = "3:08"
Below is an context that describes a sql 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 (opponent VARCHAR, week VARCHAR) ### Question: What is the Opponent of the game in Week 3? ### Answer: SELECT opponent FROM table_name_21 WHERE week = 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_64 (lost INTEGER, points VARCHAR, position VARCHAR) ### Question: what is the average number lost when points is 14 and position is more than 1? ### Answer: SELECT AVG(lost) FROM table_name_64 WHERE points = 14 AND position > 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_11 (mark VARCHAR, name VARCHAR) ### Question: What is the mark for Kim Collins? ### Answer: SELECT mark FROM table_name_11 WHERE name = "kim collins"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_55 (location VARCHAR) ### Question: Tell me the average 1st prize for tennessee ### Answer: SELECT AVG(1 AS st_prize__) AS $__ FROM table_name_55 WHERE location = "tennessee"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20354_5 (abbr VARCHAR, transcription VARCHAR) ### Question: What's the abbreviation for the month whose transcription is Kumphaphan? ### Answer: SELECT abbr FROM table_20354_5 WHERE transcription = "kumphaphan"
Below is an context that describes a sql 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 (set_5 VARCHAR, total VARCHAR) ### Question: What shows for Set 5 when the Total was 77 - 65? ### Answer: SELECT set_5 FROM table_name_85 WHERE total = "77 - 65"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1480455_1 (population__2005_ VARCHAR, population_density___km_2__ VARCHAR) ### Question: What is the total number of population in the year 2005 where the population density 35.9 (/km 2)? ### Answer: SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = "35.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_62 (position VARCHAR, season INTEGER) ### Question: What is the position in the 2004 season? ### Answer: SELECT position FROM table_name_62 WHERE season > 2004
Below is an context that describes a sql 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 (money___ VARCHAR, place VARCHAR, to_par VARCHAR) ### Question: How much money for 1st place with a to par less than 1? ### Answer: SELECT COUNT(money___) AS $__ FROM table_name_51 WHERE place = "1" AND to_par < 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_37 (round VARCHAR, against INTEGER) ### Question: What round has less than 1 against? ### Answer: SELECT round FROM table_name_37 WHERE against < 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_77 (main_location_s_ VARCHAR, _percentage_of_national VARCHAR) ### Question: What is listed for the Main Location(s) that has a % of National of 2.05%? ### Answer: SELECT main_location_s_ FROM table_name_77 WHERE _percentage_of_national = "2.05%"
Below is an context that describes a 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_5 (record VARCHAR, location VARCHAR) ### Question: When they played at the Bankatlantic Center, what was their record? ### Answer: SELECT record FROM table_17360840_5 WHERE location = "BankAtlantic Center"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_59 (year INTEGER, manager VARCHAR, finish VARCHAR) ### Question: Manager of marty berghammer, and a Finish of 1st involved what lowest year? ### Answer: SELECT MIN(year) FROM table_name_59 WHERE manager = "marty berghammer" AND finish = "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_31 (year VARCHAR, city VARCHAR) ### Question: What year was the expansion in the city of San Juan? ### Answer: SELECT COUNT(year) FROM table_name_31 WHERE city = "san juan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) ### Question: Find the number of students taught by TARRING LEIA. ### Answer: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "TARRING" AND T2.lastname = "LEIA"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17624965_1 (title VARCHAR, production_code VARCHAR) ### Question: What was the name of eipsode 618? ### Answer: SELECT title FROM table_17624965_1 WHERE production_code = 618
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_5 (team VARCHAR, captain VARCHAR) ### Question: On which team was Robbie Earle the captain? ### Answer: SELECT team FROM table_name_5 WHERE captain = "robbie earle"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Rating (mID VARCHAR, stars INTEGER); CREATE TABLE Movie (title VARCHAR, mID VARCHAR) ### Question: What are the titles of all movies that have rating star is between 3 and 5? ### Answer: SELECT T2.title FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID WHERE T1.stars BETWEEN 3 AND 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_29474407_11 (major_users VARCHAR, name__designation VARCHAR) ### Question: Who are all the major users of the Saturn Machine Pistol? ### Answer: SELECT major_users FROM table_29474407_11 WHERE name__designation = "Saturn machine pistol"
Below is an context that describes a sql 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 (game_site VARCHAR, attendance VARCHAR) ### Question: Where was the game with the attendance of 54,436? ### Answer: SELECT game_site FROM table_name_99 WHERE attendance = "54,436"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1108394_43 (_percentage VARCHAR, total VARCHAR, queens VARCHAR) ### Question: what's the % with total value of 249887 and queens value of 6.8% ### Answer: SELECT _percentage FROM table_1108394_43 WHERE total = 249887 AND queens = "6.8_percentage"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25220821_4 (thurs_3_june VARCHAR, wed_2_june VARCHAR) ### Question: What is the 3 June time for the rider with 2 June time of 17' 45.11 127.525mph? ### Answer: SELECT thurs_3_june FROM table_25220821_4 WHERE wed_2_june = "17' 45.11 127.525mph"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_48 (goals_scored INTEGER, points VARCHAR, place VARCHAR) ### Question: What is the average goals scored of the team who scored 44 points and placed higher than 5? ### Answer: SELECT AVG(goals_scored) FROM table_name_48 WHERE points = "44" AND place > 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_11 (television_service VARCHAR, hdtv VARCHAR, language VARCHAR) ### Question: What is Television Service, when HDTV is No, and when Language is Italian? ### Answer: SELECT television_service FROM table_name_11 WHERE hdtv = "no" AND language = "italian"
Below is an context that describes a sql 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 (canadian_championship VARCHAR, league VARCHAR) ### Question: When the league is 84 (4) what is the Canadian Championship? ### Answer: SELECT canadian_championship FROM table_name_87 WHERE league = "84 (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_38 (earnings__ INTEGER, rank INTEGER) ### Question: Who has the lowest earnings that has a rank smaller than 2? ### Answer: SELECT MIN(earnings__) AS $__ FROM table_name_38 WHERE 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_2508175_1 (country VARCHAR, annual_co2_emissions__in_thousands_of_metric_tons_ VARCHAR) ### Question: when the annual co2 emissions (in thousands of metric tons) is 1811, what is the country? ### Answer: SELECT country FROM table_2508175_1 WHERE annual_co2_emissions__in_thousands_of_metric_tons_ = 1811
Below is an context that describes a sql 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 (failures VARCHAR, partial_failures VARCHAR, successes VARCHAR, type VARCHAR) ### Question: What's the total failures among rockets that had more than 3 successes, type ariane 5 and more than 0 partial failures? ### Answer: SELECT COUNT(failures) FROM table_name_92 WHERE successes > 3 AND type = "ariane 5" AND partial_failures > 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_22915134_2 (graphical VARCHAR, example VARCHAR) ### Question: When shinya nakano's kawasaki ninja zx-rr is the example what is the graphical? ### Answer: SELECT graphical FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"
Below is an context that describes a sql 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 (type VARCHAR, name VARCHAR) ### Question: What is the type when McCormack is the name? ### Answer: SELECT type FROM table_name_21 WHERE name = "mccormack"
Below is an context that describes a sql 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 (venue VARCHAR, third VARCHAR) ### Question: What was the venue when Ben Barker finished third? ### Answer: SELECT venue FROM table_name_65 WHERE third = "ben barker"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17751942_4 (final_losses VARCHAR, Semi INTEGER, team VARCHAR) ### Question: What is the total number of semi-final losses for the Kitchener Rangers? ### Answer: SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = "Kitchener Rangers"
Below is an context that describes a sql 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 (award VARCHAR, category VARCHAR, recipient VARCHAR) ### Question: Which award show nominated Cole Sprouse for the Favorite TV Actor category? ### Answer: SELECT award FROM table_name_49 WHERE category = "favorite tv actor" AND recipient = "cole sprouse"