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_25675509_1 (date__yyyy_mm_dd_ VARCHAR, latitude VARCHAR) ### Question: On which date did the shock at latitude 08.909° s occur? ### Answer: SELECT date__yyyy_mm_dd_ FROM table_25675509_1 WHERE latitude = "08.909° S"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27816698_2 (institution VARCHAR, location VARCHAR) ### Question: Which institution was located in bakersfield, california? ### Answer: SELECT institution FROM table_27816698_2 WHERE location = "Bakersfield, California"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner VARCHAR) ### Question: How many teams came in fourth when Otsuka Pharmaceuticals won? ### Answer: SELECT COUNT(fourth_place) FROM table_29446183_2 WHERE winner = "Otsuka Pharmaceuticals"
Below is an context that describes a sql 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 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team for the game played at Lake Oval? ### Answer: SELECT home_team FROM table_name_77 WHERE venue = "lake 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_26593762_3 (incoming_manager VARCHAR, team VARCHAR) ### Question: How many incoming managers did Burnley have? ### Answer: SELECT COUNT(incoming_manager) FROM table_26593762_3 WHERE team = "Burnley"
Below is an context that describes a sql 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 (year INTEGER, partnering VARCHAR, championship VARCHAR) ### Question: What year was the US Open that had a partnering of Maikel Scheffers? ### Answer: SELECT SUM(year) FROM table_name_56 WHERE partnering = "maikel scheffers" AND championship = "us open"
Below is an context that describes a sql 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 (hangul___japanese VARCHAR, genre VARCHAR, title VARCHAR) ### Question: What's the Hangul/Japanese of Boys Over Flowers that's drama? ### Answer: SELECT hangul___japanese FROM table_name_80 WHERE genre = "drama" AND title = "boys over flowers"
Below is an context that describes a sql 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 (label VARCHAR, catalog VARCHAR) ### Question: What label has 887 448-2 as the catalog? ### Answer: SELECT label FROM table_name_4 WHERE catalog = "887 448-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_3 (score VARCHAR, player VARCHAR) ### Question: What score has fred couples as the player? ### Answer: SELECT score FROM table_name_3 WHERE player = "fred couples"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_67 (nation VARCHAR, date VARCHAR) ### Question: What is Nation, when Date is "2004-07-22"? ### Answer: SELECT nation FROM table_name_67 WHERE date = "2004-07-22"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_58 (description VARCHAR, date VARCHAR) ### Question: What is the description where the date is 1911? ### Answer: SELECT description FROM table_name_58 WHERE date = 1911
Below is an context that describes a sql 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 (director VARCHAR, year VARCHAR, role VARCHAR) ### Question: What director directed the role of shelby barret wyatt in 1935? ### Answer: SELECT director FROM table_name_14 WHERE year = 1935 AND role = "shelby barret wyatt"
Below is an context that describes a sql 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 (capacity INTEGER, city VARCHAR, stadium VARCHAR) ### Question: Which Capacity has a City of london, and a Stadium of queen's club? ### Answer: SELECT AVG(capacity) FROM table_name_85 WHERE city = "london" AND stadium = "queen's club"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_38 (date VARCHAR, score VARCHAR) ### Question: When was the game that ended with a score of 6-4? ### Answer: SELECT date FROM table_name_38 WHERE score = "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_59 (points VARCHAR, lost VARCHAR, points_against VARCHAR) ### Question: How many points did the club with 13 losses and 461 points against have? ### Answer: SELECT points FROM table_name_59 WHERE lost = "13" AND points_against = "461"
Below is an context that describes a 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 (high_points VARCHAR, series VARCHAR) ### Question: Who has the high points when 3-2 is the series? ### Answer: SELECT high_points FROM table_22871316_11 WHERE series = "3-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_29 (player VARCHAR, total VARCHAR, to_par VARCHAR) ### Question: Which player has a total of more than 290 and +4 to par. ### Answer: SELECT player FROM table_name_29 WHERE total > 290 AND to_par = "+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_73 (total_points INTEGER, details VARCHAR) ### Question: For the match that had detail of 2001 nrl grand final, what was the lowest total points? ### Answer: SELECT MIN(total_points) FROM table_name_73 WHERE details = "2001 nrl grand 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_19047_2 (outcome VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the result in the final versos Jennifer Capriati? ### Answer: SELECT outcome FROM table_19047_2 WHERE opponent_in_the_final = "Jennifer Capriati"
Below is an context that describes a sql 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 (location VARCHAR, date VARCHAR) ### Question: Where was the game located on January 23, 2008? ### Answer: SELECT location FROM table_name_93 WHERE date = "january 23, 2008"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_53 (video VARCHAR, psip_short_name VARCHAR) ### Question: Which Video has a PSIP Short Name of rt? ### Answer: SELECT video FROM table_name_53 WHERE psip_short_name = "rt"
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR) ### Question: What was the score on 7 february 2008? ### Answer: SELECT score FROM table_name_42 WHERE date = "7 february 2008"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR) ### Question: What was the Opponent when the Cavaliers had a Record of 3-9? ### Answer: SELECT opponent FROM table_name_10 WHERE record = "3-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_25 (away_team VARCHAR, venue VARCHAR) ### Question: Who was the away team at mcg? ### Answer: SELECT away_team FROM table_name_25 WHERE venue = "mcg"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23285849_10 (score VARCHAR, high_rebounds VARCHAR) ### Question: When aaron afflalo (9) has the highest amount of rebounds what is the score? ### Answer: SELECT score FROM table_23285849_10 WHERE high_rebounds = "Aaron Afflalo (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_2930244_2 (year VARCHAR, number_of_hurricanes VARCHAR, strongest_storm VARCHAR) ### Question: How many years saw 3 hurricanes wherein the strongest storm was level three? ### Answer: SELECT COUNT(year) FROM table_2930244_2 WHERE number_of_hurricanes = 3 AND strongest_storm = "Three"
Below is an context that describes a sql 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 (to_par VARCHAR, place VARCHAR, score VARCHAR) ### Question: what is the to par when the place is t10 and the score is 72-74-71-69=286? ### Answer: SELECT to_par FROM table_name_26 WHERE place = "t10" AND score = 72 - 74 - 71 - 69 = 286
Below is an context that describes a sql 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 (score VARCHAR, away_team VARCHAR) ### Question: What was the score when Burnley was the away team? ### Answer: SELECT score FROM table_name_31 WHERE away_team = "burnley"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_13 (competition VARCHAR, date VARCHAR) ### Question: What is Competition, when Date is "1999-08-07"? ### Answer: SELECT competition FROM table_name_13 WHERE date = "1999-08-07"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27683516_3 (team VARCHAR, date_of_vacancy VARCHAR) ### Question: How many dates of vacancy were on 30 october 2010? ### Answer: SELECT COUNT(team) FROM table_27683516_3 WHERE date_of_vacancy = "30 October 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_46 (distance VARCHAR, time VARCHAR) ### Question: Which Distance has a Time of men's speed skating? ### Answer: SELECT distance FROM table_name_46 WHERE time = "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_1661124_1 (target VARCHAR, approval_date VARCHAR) ### Question: What is the target with an approval date of 2006? ### Answer: SELECT target FROM table_1661124_1 WHERE approval_date = 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_56 (fa_cup INTEGER, malaysia_cup VARCHAR, league VARCHAR, player VARCHAR) ### Question: What is the average FA cup that has a league of 0, fahmi hatta as the player, with a Malaysia cup less than 0? ### Answer: SELECT AVG(fa_cup) FROM table_name_56 WHERE league = 0 AND player = "fahmi hatta" AND malaysia_cup < 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_22 (hometown VARCHAR, legislatures VARCHAR) ### Question: What is the hometown of the representative that served the twenty-sixth legislature? ### Answer: SELECT hometown FROM table_name_22 WHERE legislatures = "twenty-sixth"
Below is an context that describes a sql 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 (place VARCHAR, country VARCHAR, player VARCHAR) ### Question: Where is john daly of united states from? ### Answer: SELECT place FROM table_name_77 WHERE country = "united states" AND player = "john daly"
Below is an context that describes a sql 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 (highest_point VARCHAR, country VARCHAR) ### Question: What is the most points for South Ossetia? ### Answer: SELECT highest_point FROM table_name_46 WHERE country = "south ossetia"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25244412_2 (renewable_electricity__gw INTEGER, rank VARCHAR) ### Question: How much was the minimum renewable electricity (GW-h) that is ranked 36? ### Answer: SELECT MIN(renewable_electricity__gw) AS ·h_ FROM table_25244412_2 WHERE rank = 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 Restaurant (ResName VARCHAR, Rating VARCHAR) ### Question: Which restaurants have highest rating? List the restaurant name and its rating. ### Answer: SELECT ResName, Rating FROM Restaurant ORDER BY Rating DESC LIMIT 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_25 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR) ### Question: Name the least evening gown for interview more than 7.97 and swimsui of 7.24 ### Answer: SELECT MIN(evening_gown) FROM table_name_25 WHERE swimsuit = 7.24 AND interview > 7.97
Below is an context that describes a sql 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_site VARCHAR, record VARCHAR) ### Question: Record of 9–1 had what game site? ### Answer: SELECT game_site FROM table_name_70 WHERE record = "9–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_78 (venue VARCHAR, competition VARCHAR) ### Question: Where was the 2013 Eaff East Asian Cup Qualifier played? ### Answer: SELECT venue FROM table_name_78 WHERE competition = "2013 eaff east asian cup qualifier"
Below is an context that describes a sql 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 (interview INTEGER, evening_gown VARCHAR, state VARCHAR) ### Question: What is the average interview score of a contestant from Louisiana with an evening gown smaller than 8.82? ### Answer: SELECT AVG(interview) FROM table_name_29 WHERE evening_gown < 8.82 AND state = "louisiana"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15187735_17 (series_ep VARCHAR, segment_a VARCHAR) ### Question: are rolled wafers in many episodes ### Answer: SELECT series_ep FROM table_15187735_17 WHERE segment_a = "Rolled Wafers"
Below is an context that describes a sql 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 (award VARCHAR, year VARCHAR, result VARCHAR) ### Question: Which award was nominated for in 2000? ### Answer: SELECT award FROM table_name_37 WHERE year = 2000 AND result = "nominated"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1181375_1 (engine VARCHAR, builder VARCHAR, withdrawn VARCHAR) ### Question: what's the engine where builder is gloucester rcw and withdrawn is 1959 ### Answer: SELECT engine FROM table_1181375_1 WHERE builder = "Gloucester RCW" AND withdrawn = "1959"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_74 (date VARCHAR, home_team VARCHAR) ### Question: What date did the home game for peterborough united take place? ### Answer: SELECT date FROM table_name_74 WHERE home_team = "peterborough united"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_30 (viewers VARCHAR, rank VARCHAR) ### Question: What is the total number of Viewers when the rank is #40? ### Answer: SELECT COUNT(viewers) FROM table_name_30 WHERE rank = "#40"
Below is an context that describes a sql 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 (organisation VARCHAR, nominated_work_title VARCHAR, year VARCHAR) ### Question: what is the organisation when the nominated work title is n/a in the year 2005? ### Answer: SELECT organisation FROM table_name_79 WHERE nominated_work_title = "n/a" AND year = 2005
Below is an context that describes a sql 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 (commissioned VARCHAR, pennant_number VARCHAR) ### Question: On what date was the ship with a Pennant number of Q144 commissioned? ### Answer: SELECT commissioned FROM table_name_8 WHERE pennant_number = "q144"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_171250_2 (population VARCHAR, area_km_2 VARCHAR) ### Question: What is the population that has an area of 715.58? ### Answer: SELECT population FROM table_171250_2 WHERE area_km_2 = "715.58"
Below is an context that describes a sql 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 (fleet_number_s_ VARCHAR, quantity_made VARCHAR) ### Question: What is the fleet number of the locomotive with 1 quantity made? ### Answer: SELECT fleet_number_s_ FROM table_name_59 WHERE quantity_made = "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_9 (Id VARCHAR) ### Question: How many 2010s have a 2007 greater than 4.6, and 8.2 as a 2006? ### Answer: SELECT COUNT(2010) FROM table_name_9 WHERE 2007 > 4.6 AND 2006 = 8.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_95 (lead VARCHAR, skip VARCHAR) ### Question: Which Lead has a Skip of ted appelman? ### Answer: SELECT lead FROM table_name_95 WHERE skip = "ted appelman"
Below is an context that describes a sql 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 (result VARCHAR, date VARCHAR) ### Question: What is the Result from the Date that is December 8, 1963? ### Answer: SELECT result FROM table_name_24 WHERE date = "december 8, 1963"
Below is an context that describes a sql 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 (title VARCHAR, director VARCHAR) ### Question: what is the title for director p.j. hogan? ### Answer: SELECT title FROM table_name_15 WHERE director = "p.j. hogan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22948559_1 (production_code VARCHAR, written_by VARCHAR) ### Question: Name the production code by paul lieberstein ### Answer: SELECT production_code FROM table_22948559_1 WHERE written_by = "Paul Lieberstein"
Below is an context that describes a sql 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 (sideline_reporter_s_ VARCHAR, color_commentator_s_ VARCHAR) ### Question: Which sideline reporters worked alongside Frank Gifford and Dan Dierdorf? ### Answer: SELECT sideline_reporter_s_ FROM table_name_17 WHERE color_commentator_s_ = "frank gifford and dan dierdorf"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1965650_10 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: What team does Lee Palmer play for? ### Answer: SELECT college_junior_club_team FROM table_1965650_10 WHERE player = "Lee 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_75 (against INTEGER, ballarat_fl VARCHAR, wins VARCHAR) ### Question: What is the lowest against that has bacchus marsh as a ballarat fl, with wins less than 1? ### Answer: SELECT MIN(against) FROM table_name_75 WHERE ballarat_fl = "bacchus marsh" 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 rent_arrears (Id VARCHAR) ### Question: How many council taxes are collected for renting arrears ? ### Answer: SELECT COUNT(*) FROM rent_arrears
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR) ### Question: What was the score on october 23? ### Answer: SELECT score FROM table_name_33 WHERE date = "october 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_18602462_22 (semifinals VARCHAR, athlete VARCHAR) ### Question: What is the semifinal result for Dorrie Timmermans-Van Hall? ### Answer: SELECT semifinals FROM table_18602462_22 WHERE athlete = "Dorrie Timmermans-Van 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_58 (skip VARCHAR, country VARCHAR) ### Question: What skip has denmark as the country? ### Answer: SELECT skip FROM table_name_58 WHERE country = "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_283203_1 (location VARCHAR, capacity VARCHAR) ### Question: Where is the team that has a stadium capable of a capacity of 10,517 5,006 located? ### Answer: SELECT location FROM table_283203_1 WHERE capacity = "10,517 5,006"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE country (Name VARCHAR, Population VARCHAR) ### Question: What are the names of the nations with the 3 lowest populations? ### Answer: SELECT Name FROM country ORDER BY Population LIMIT 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_76 (player VARCHAR, school_club_team VARCHAR) ### Question: Which player gradyated from Florida State? ### Answer: SELECT player FROM table_name_76 WHERE school_club_team = "florida 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 item (title VARCHAR) ### Question: List the titles of all items in alphabetic order . ### Answer: SELECT title FROM item ORDER BY title
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_80 (club VARCHAR, name VARCHAR) ### Question: Which club is associated with Hafiz Abu Sujad? ### Answer: SELECT club FROM table_name_80 WHERE name = "hafiz abu sujad"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27722408_6 (high_points VARCHAR, score VARCHAR) ### Question: How many entries are shown for high points when the score was l 87–89 (ot)? ### Answer: SELECT COUNT(high_points) FROM table_27722408_6 WHERE score = "L 87–89 (OT)"
Below is an context that describes a sql 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 (team VARCHAR, manager VARCHAR) ### Question: Which team does David O'leary manage? ### Answer: SELECT team FROM table_name_28 WHERE manager = "david o'leary"
Below is an context that describes a sql 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 (score VARCHAR, record VARCHAR) ### Question: Name the score with record of 17-27 ### Answer: SELECT score FROM table_name_6 WHERE record = "17-27"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2249087_1 (world_rank INTEGER, south_american_rank VARCHAR) ### Question: Name the least world rank for south american rank 3 ### Answer: SELECT MIN(world_rank) FROM table_2249087_1 WHERE south_american_rank = 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_34 (award VARCHAR, category VARCHAR) ### Question: What type of award is the theatre world award? ### Answer: SELECT award FROM table_name_34 WHERE category = "theatre world award"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_197638_6 (_number INTEGER) ### Question: How many players are on this list? ### Answer: SELECT MAX(_number) FROM table_197638_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_25342713_5 (blocks INTEGER, steals VARCHAR) ### Question: If the Steals are 20, what are the blocks? ### Answer: SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 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_12 (final_placing VARCHAR, podiums VARCHAR, poles VARCHAR, races VARCHAR) ### Question: What is the final placing of the team with 0 ples, more than 16 races, and 16 podiums? ### Answer: SELECT final_placing FROM table_name_12 WHERE poles = 0 AND races > 16 AND podiums = 16
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_81 (inclination VARCHAR, eccentricity VARCHAR) ### Question: What Inclination has Eccentricity of 0.06 +0.06 −0.11? ### Answer: SELECT inclination FROM table_name_81 WHERE eccentricity = "0.06 +0.06 −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_name_25 (website VARCHAR, last_release VARCHAR) ### Question: What is Website, when Last Release is 2009-08-09, 1.2.9? ### Answer: SELECT website FROM table_name_25 WHERE last_release = "2009-08-09, 1.2.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_48 (score VARCHAR, tie_no VARCHAR) ### Question: What's the score of Tie number 11? ### Answer: SELECT score FROM table_name_48 WHERE tie_no = "11"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_51 (innhabitants INTEGER, party VARCHAR) ### Question: How many people does the KRF Party preside over? ### Answer: SELECT AVG(innhabitants) FROM table_name_51 WHERE party = "krf"
Below is an context that describes a sql 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 (decile INTEGER, area VARCHAR) ### Question: What is the smallest decile with an Area of otumoetai? ### Answer: SELECT MIN(decile) FROM table_name_60 WHERE area = "otumoetai"
Below is an context that describes a sql 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 (date VARCHAR, attendance VARCHAR) ### Question: I want to know the date with attendance of 35,763 ### Answer: SELECT date FROM table_name_88 WHERE attendance = "35,763"
Below is an context that describes a sql 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 (game INTEGER, opponent VARCHAR, february VARCHAR) ### Question: What is the total of Game with an Opponent of @ Hartford Whalers and February that's larger than 19? ### Answer: SELECT SUM(game) FROM table_name_49 WHERE opponent = "@ hartford whalers" AND february > 19
Below is an context that describes a sql 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 (no_8 VARCHAR, no_10 VARCHAR, no_5 VARCHAR) ### Question: Who was No. 8 when No. 10 Jackson and No. 5 Mason? ### Answer: SELECT no_8 FROM table_name_51 WHERE no_10 = "jackson" AND no_5 = "mason"
Below is an context that describes a sql 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 (head_coach VARCHAR, city VARCHAR) ### Question: Who is the head coach for the club from Aveiro? ### Answer: SELECT head_coach FROM table_name_71 WHERE city = "aveiro"
Below is an context that describes a sql 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 (overall INTEGER, pick__number INTEGER) ### Question: What is the overall pick average with the pick # lower than 15? ### Answer: SELECT AVG(overall) FROM table_name_26 WHERE pick__number < 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_27 (record VARCHAR, date VARCHAR) ### Question: On November 2 what was the record of the team? ### Answer: SELECT record FROM table_name_27 WHERE date = "november 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_12 (relation VARCHAR, year VARCHAR, length VARCHAR) ### Question: Which Relation has a Year larger than 2000, and a Length of 8 x 20 mins? ### Answer: SELECT relation FROM table_name_12 WHERE year > 2000 AND length = "8 x 20 mins"
Below is an context that describes a sql 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 (team_2 VARCHAR, team_1 VARCHAR, result VARCHAR) ### Question: What team is 2 when 1 is Taipower and the result is 0-1? ### Answer: SELECT team_2 FROM table_name_90 WHERE team_1 = "taipower" AND result = "0-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_26 (average INTEGER, team VARCHAR, games VARCHAR) ### Question: What is the smallest average for Beijing Guo'an when they played more than 240 games? ### Answer: SELECT MIN(average) FROM table_name_26 WHERE team = "beijing guo'an" AND games > 240
Below is an context that describes a sql 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 (venue VARCHAR, rank VARCHAR) ### Question: What venue has 2 as the rank? ### Answer: SELECT venue FROM table_name_75 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_11222744_3 (studio VARCHAR, catalog_number VARCHAR) ### Question: Who creates the catalog with the number "cal03 / 0091037137333"? ### Answer: SELECT studio FROM table_11222744_3 WHERE catalog_number = "CAL03 / 0091037137333"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23680576_2 (may_2009 VARCHAR, jul_2009 VARCHAR) ### Question: If the polling average in July 2009 was 7.2%, what was it in May 2009? ### Answer: SELECT may_2009 FROM table_23680576_2 WHERE jul_2009 = "7.2%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_21 (Id VARCHAR) ### Question: What 2002 tournament has 2008 career statistics? ### Answer: SELECT 2002 FROM table_name_21 WHERE 2008 = "career statistics"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_81 (soap_opera VARCHAR, rank VARCHAR, character VARCHAR) ### Question: What soap opera has a rank larger than 1, and a Character named Emily Bishop? ### Answer: SELECT soap_opera FROM table_name_81 WHERE rank > 1 AND character = "emily bishop"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10812938_4 (cfl_team VARCHAR, position VARCHAR) ### Question: Which CFL Teams drafted an OL in 2006? ### Answer: SELECT cfl_team FROM table_10812938_4 WHERE position = "OL"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_66 (report VARCHAR, winning_driver VARCHAR) ### Question: Name the report for raymond sommer ### Answer: SELECT report FROM table_name_66 WHERE winning_driver = "raymond sommer"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21302_1 (area___ha__ INTEGER, no_of_villages VARCHAR) ### Question: If there are 18 villages, what is the minimum area ? ### Answer: SELECT MIN(area___ha__) FROM table_21302_1 WHERE no_of_villages = 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 (win__percentage VARCHAR, losses VARCHAR) ### Question: What percentage of wins has 48 losses? ### Answer: SELECT win__percentage FROM table_name_4 WHERE losses = "48"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR) ### Question: What was the score of the match against duk-hee lee? ### Answer: SELECT score FROM table_name_43 WHERE opponent = "duk-hee lee"