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_5 (home_team VARCHAR) ### Question: How much did the home team Hawthorn score? ### Answer: SELECT home_team AS score FROM table_name_5 WHERE home_team = "hawthorn"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2637317_1 (change_in_population_since_1993 VARCHAR, _percentage_of_countrys_population VARCHAR) ### Question: What is the change in population since 1993 in the region where the % of country's population was 4.2? ### Answer: SELECT COUNT(change_in_population_since_1993) FROM table_2637317_1 WHERE _percentage_of_countrys_population = "4.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_75 (pole_position VARCHAR, grand_prix VARCHAR) ### Question: Name the pole position for belgian grand prix ### Answer: SELECT pole_position FROM table_name_75 WHERE grand_prix = "belgian grand prix"
Below is an context that describes a sql 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 (director_s_ VARCHAR, recipient VARCHAR) ### Question: Name the director for maya vision international ltd ### Answer: SELECT director_s_ FROM table_name_81 WHERE recipient = "maya vision international ltd"
Below is an context that describes a sql 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 (scoring_average VARCHAR, wins INTEGER) ### Question: What is the scoring average where the wins are 0? ### Answer: SELECT COUNT(scoring_average) FROM table_name_56 WHERE 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_11019212_1 (wednesday VARCHAR, monday VARCHAR) ### Question: what's the wednesday time with monday being 10:00-8:00 ### Answer: SELECT wednesday FROM table_11019212_1 WHERE monday = "10:00-8:00"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE film (title VARCHAR, special_features VARCHAR) ### Question: Which movies have 'Deleted Scenes' as a substring in the special feature? ### Answer: SELECT title FROM film WHERE special_features LIKE '%Deleted Scenes%'
Below is an context that describes a sql 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 (time_retired VARCHAR, grid VARCHAR) ### Question: What is the time for the racer on grid 19? ### Answer: SELECT time_retired FROM table_name_70 WHERE grid = 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_1341598_10 (district VARCHAR, incumbent VARCHAR) ### Question: In what district is the incumbent Lawrence J. Smith? ### Answer: SELECT district FROM table_1341598_10 WHERE incumbent = "Lawrence J. 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_16751596_13 (dates_administered VARCHAR, poll_source VARCHAR) ### Question: When the poll source is research 2000/daily kos, what is the total number of dates administered? ### Answer: SELECT COUNT(dates_administered) FROM table_16751596_13 WHERE poll_source = "Research 2000/Daily Kos"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27050336_7 (party VARCHAR, delegate VARCHAR) ### Question: For delegate is gaines, tawanna p. tawanna gaines, please specify all the party. ### Answer: SELECT party FROM table_27050336_7 WHERE delegate = "Gaines, Tawanna P. Tawanna Gaines"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_44 (date VARCHAR, tie_no VARCHAR) ### Question: what date did tie number 5 occur? ### Answer: SELECT date FROM table_name_44 WHERE tie_no = "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_26677836_1 (lost INTEGER) ### Question: What is the highest lost? ### Answer: SELECT MAX(lost) FROM table_26677836_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_22977424_8 (name VARCHAR, promoted_to_league VARCHAR) ### Question: Name the name for henley manchester ### Answer: SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Henley Manchester"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_53 (current_conference VARCHAR, nickname VARCHAR) ### Question: Which Current Conference has a Nickname of lynx? ### Answer: SELECT current_conference FROM table_name_53 WHERE nickname = "lynx"
Below is an context that describes a sql 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 (nationality VARCHAR, player VARCHAR) ### Question: What is the nationality when Claude Periard is the player? ### Answer: SELECT nationality FROM table_name_33 WHERE player = "claude periard"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15173650_2 (attendance INTEGER) ### Question: Name the least attendance ### Answer: SELECT MIN(attendance) FROM table_15173650_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_14937957_1 (country VARCHAR, city VARCHAR) ### Question: In which country is the city of Netanya? ### Answer: SELECT country FROM table_14937957_1 WHERE city = "Netanya"
Below is an context that describes a sql 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 (opponent VARCHAR, date VARCHAR) ### Question: Which Opponent has a Date of november 17, 1963? ### Answer: SELECT opponent FROM table_name_30 WHERE date = "november 17, 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_2 (game VARCHAR, attendance VARCHAR, points VARCHAR, date VARCHAR) ### Question: Total games for smaller than 15 points, date of november 15, and larger that 13,722 in attendance? ### Answer: SELECT COUNT(game) FROM table_name_2 WHERE points < 15 AND date = "november 15" AND attendance > 13 OFFSET 722
Below is an context that describes a sql 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 (manufacturer VARCHAR, wheel_arrangement VARCHAR, class VARCHAR) ### Question: What manufacturer has a wheel arrangement of 4-6-6-4, and a Class of z-7? ### Answer: SELECT manufacturer FROM table_name_34 WHERE wheel_arrangement = "4-6-6-4" AND class = "z-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_9 (play_offs INTEGER, fa_cup INTEGER) ### Question: What are the average play-offs that have an FA Cup greater than 3? ### Answer: SELECT AVG(play_offs) FROM table_name_9 WHERE fa_cup > 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_22385461_6 (end__utc_ VARCHAR, spacecraft VARCHAR) ### Question: What is the end (UTC) for spacecraft STS-114 Eva 3? ### Answer: SELECT end__utc_ FROM table_22385461_6 WHERE spacecraft = "STS-114 EVA 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_19 (opponent VARCHAR, record VARCHAR) ### Question: What opponent had a record of 37-27? ### Answer: SELECT opponent FROM table_name_19 WHERE record = "37-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 candidate (Support_rate VARCHAR, Consider_rate VARCHAR, Oppose_rate VARCHAR, unsure_rate VARCHAR) ### Question: Please list support, consider, and oppose rates for each candidate in ascending order by unsure rate. ### Answer: SELECT Support_rate, Consider_rate, Oppose_rate FROM candidate ORDER BY unsure_rate
Below is an context that describes a sql 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, opponents VARCHAR, score VARCHAR) ### Question: Which Venue has a Opponents of halmstad and a Score of 1-1? ### Answer: SELECT venue FROM table_name_84 WHERE opponents = "halmstad" AND score = "1-1"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_55 (score VARCHAR, player VARCHAR, to_par VARCHAR, country VARCHAR) ### Question: What is the score of Howard Clark from England with a To Par of +1? ### Answer: SELECT score FROM table_name_55 WHERE to_par = "+1" AND country = "england" AND player = "howard clark"
Below is an context that describes a sql 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 (score VARCHAR, location_attendance VARCHAR) ### Question: What was the score of the game at Great Western Forum? ### Answer: SELECT score FROM table_name_54 WHERE location_attendance = "great western forum"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24431264_17 (points VARCHAR, player VARCHAR) ### Question: List the total defensive points for marion bartoli. ### Answer: SELECT points AS defending FROM table_24431264_17 WHERE player = "Marion Bartoli"
Below is an context that describes a sql 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 (player VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: Who is the player with a +3 to par and a 74-71-68=213 score? ### Answer: SELECT player FROM table_name_42 WHERE to_par = "+3" AND score = 74 - 71 - 68 = 213
Below is an context that describes a sql 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 (result VARCHAR, award VARCHAR) ### Question: Which Result has an Award of virgin media tv awards? ### Answer: SELECT result FROM table_name_45 WHERE award = "virgin media tv 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 journalist (Name VARCHAR, journalist_ID VARCHAR); CREATE TABLE news_report (Event_ID VARCHAR, journalist_ID VARCHAR); CREATE TABLE event (Event_ID VARCHAR) ### Question: Show the names of journalists and the number of events they reported. ### Answer: SELECT T3.Name, COUNT(*) FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID GROUP BY T3.Name
Below is an context that describes a sql 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 (tv_station VARCHAR, romaji_title VARCHAR) ### Question: what is the tv station when the romaji title is kazoku~tsuma no fuzai・otto no sonzai~? ### Answer: SELECT tv_station FROM table_name_17 WHERE romaji_title = "kazoku~tsuma no fuzai・otto no sonzai~"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16376436_1 (college VARCHAR, player VARCHAR) ### Question: Which college did Leon Perry attend? ### Answer: SELECT college FROM table_16376436_1 WHERE player = "Leon Perry"
Below is an context that describes a sql 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 (average VARCHAR, wickets VARCHAR, matches VARCHAR, runs VARCHAR) ### Question: Name the total number of average for wickets less than 265, runs less than 4564 and matches less than 52 ### Answer: SELECT COUNT(average) FROM table_name_99 WHERE matches < 52 AND runs < 4564 AND wickets < 265
Below is an context that describes a sql 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 (episode INTEGER, segment_c VARCHAR) ### Question: What is the highest episode of Wood Flutes segment c? ### Answer: SELECT MAX(episode) FROM table_name_65 WHERE segment_c = "wood flutes"
Below is an context that describes a sql 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 (genre VARCHAR, english_title__chinese_title_ VARCHAR) ### Question: Which Genre has an English title (Chinese title) of the romance of the white hair maiden 白髮魔女傳? ### Answer: SELECT genre FROM table_name_92 WHERE english_title__chinese_title_ = "the romance of the white hair maiden 白髮魔女傳"
Below is an context that describes a sql 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 (platform_s_ VARCHAR, year VARCHAR) ### Question: What is the platform of the game built in 2006? ### Answer: SELECT platform_s_ FROM table_name_53 WHERE year = "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 countrylanguage (LANGUAGE VARCHAR) ### Question: Which language is spoken by the largest number of countries? ### Answer: SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY COUNT(*) DESC LIMIT 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_5 (catalog VARCHAR, label VARCHAR) ### Question: What Catalog has a Label of geffen records / universal music special markets? ### Answer: SELECT catalog FROM table_name_5 WHERE label = "geffen records / universal music special markets"
Below is an context that describes a sql 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 (general_classification VARCHAR, team_classification VARCHAR) ### Question: What is the general classification when the team classification is japan? ### Answer: SELECT general_classification FROM table_name_18 WHERE team_classification = "japan"
Below is an context that describes a sql 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 (place VARCHAR, player VARCHAR) ### Question: In what place did Tom Lehman finish? ### Answer: SELECT place FROM table_name_29 WHERE player = "tom lehman"
Below is an context that describes a sql 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 (masthead VARCHAR, end_month VARCHAR) ### Question: Which masthead ends on oct–69? ### Answer: SELECT masthead FROM table_name_15 WHERE end_month = "oct–69"
Below is an context that describes a sql 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 (name VARCHAR, year_built VARCHAR) ### Question: What was built in 1857? ### Answer: SELECT name FROM table_name_89 WHERE year_built = 1857
Below is an context that describes a sql 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 (visitor VARCHAR, home VARCHAR) ### Question: Who is the visitor team of the game where Buffalo was the home team? ### Answer: SELECT visitor FROM table_name_29 WHERE home = "buffalo"
Below is an context that describes a sql 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 (pick__number INTEGER, round VARCHAR) ### Question: What is the average pick # of the player from round 11? ### Answer: SELECT AVG(pick__number) FROM table_name_21 WHERE round = 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_15 (country VARCHAR, play VARCHAR) ### Question: What country had the play Cyclops? ### Answer: SELECT country FROM table_name_15 WHERE play = "cyclops"
Below is an context that describes a sql 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 (partner VARCHAR, date VARCHAR, opponents_in_the_final VARCHAR) ### Question: Name the Partner which is in 1979, and Opponents in the final of heinz günthardt bob hewitt? ### Answer: SELECT partner FROM table_name_68 WHERE date = 1979 AND opponents_in_the_final = "heinz günthardt bob hewitt"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_20 (to_par VARCHAR, place VARCHAR) ### Question: What to par has 7 as the place? ### Answer: SELECT to_par FROM table_name_20 WHERE place = "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_54 (constructor VARCHAR, grid VARCHAR) ### Question: What is the constructor with grid value 5? ### Answer: SELECT constructor FROM table_name_54 WHERE grid = "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_59 (country VARCHAR, finish VARCHAR) ### Question: What country had a Finish of t8? ### Answer: SELECT country FROM table_name_59 WHERE finish = "t8"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE CLASS (crs_code VARCHAR) ### Question: How many sections does each course has? ### Answer: SELECT COUNT(*), crs_code FROM CLASS GROUP BY crs_code
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26351260_1 (location VARCHAR, institution VARCHAR) ### Question: How many Kent State University's are there? ### Answer: SELECT COUNT(location) FROM table_26351260_1 WHERE institution = "Kent State University"
Below is an context that describes a sql 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 (week INTEGER, attendance VARCHAR) ### Question: What the total of Week with attendance of 53,147 ### Answer: SELECT SUM(week) FROM table_name_70 WHERE attendance = "53,147"
Below is an context that describes a sql 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 (date VARCHAR, week VARCHAR) ### Question: When was the date that week 9 started? ### Answer: SELECT date FROM table_name_65 WHERE week = "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_25740548_3 (original_air_date VARCHAR, production_code VARCHAR) ### Question: How many original air dates are there for the episode with code CA210? ### Answer: SELECT COUNT(original_air_date) FROM table_25740548_3 WHERE production_code = "CA210"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_261941_1 (nickname VARCHAR, institution VARCHAR) ### Question: What is the nickname of Linfield College? ### Answer: SELECT nickname FROM table_261941_1 WHERE institution = "Linfield College"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Songs (SongId VARCHAR); CREATE TABLE Band (lastname VARCHAR, id VARCHAR); CREATE TABLE Performance (bandmate VARCHAR, SongId VARCHAR) ### Question: What is the last name of the musician that have produced the most number of songs? ### Answer: SELECT T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId GROUP BY lastname ORDER BY COUNT(*) DESC LIMIT 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14312471_7 (home_team VARCHAR, ground VARCHAR) ### Question: Who has the home ground Aami stadium? ### Answer: SELECT home_team FROM table_14312471_7 WHERE ground = "AAMI 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_9 (label VARCHAR, date VARCHAR) ### Question: What label released a record on March 25, 1984? ### Answer: SELECT label FROM table_name_9 WHERE date = "march 25, 1984"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1963459_2 (team VARCHAR, manufacturer VARCHAR) ### Question: What teams drive cars manufactured by Toyota? ### Answer: SELECT team FROM table_1963459_2 WHERE manufacturer = "Toyota"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12286195_1 (charity VARCHAR, background VARCHAR) ### Question: What is the charity of the celebrity with the background reality star? ### Answer: SELECT charity FROM table_12286195_1 WHERE background = "Reality Star"
Below is an context that describes a sql 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 (administration VARCHAR, season VARCHAR) ### Question: What Adminstration has a Season of 2000? ### Answer: SELECT administration FROM table_name_56 WHERE season = 2000
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_76 (tournament VARCHAR, year VARCHAR) ### Question: I want the tournament for 1889 ### Answer: SELECT tournament FROM table_name_76 WHERE year = 1889
Below is an context that describes a sql 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 (home_team VARCHAR, venue VARCHAR) ### Question: What team is based at junction oval? ### Answer: SELECT home_team FROM table_name_66 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_62 (lane VARCHAR, time VARCHAR) ### Question: How many lanes have 1:53.70 as the time? ### Answer: SELECT COUNT(lane) FROM table_name_62 WHERE time = "1:53.70"
Below is an context that describes 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 (grade VARCHAR, classroom VARCHAR) ### Question: For each grade, report the grade, the number of classrooms in which it is taught and the total number of students in the grade. ### Answer: SELECT grade, COUNT(DISTINCT classroom), COUNT(*) FROM list GROUP BY grade
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18621456_22 (player VARCHAR, legs_lost VARCHAR) ### Question: Who is the player with 41 legs lost? ### Answer: SELECT player FROM table_18621456_22 WHERE legs_lost = 41
Below is an context that describes a sql 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 (notes VARCHAR, time___sec__ VARCHAR, rank VARCHAR) ### Question: Which Notes have a Time larger than 23.34, and a Rank of 8? ### Answer: SELECT notes FROM table_name_24 WHERE time___sec__ > 23.34 AND rank = 8
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_89 (programming VARCHAR, psip_short_name VARCHAR, channel VARCHAR, video VARCHAR) ### Question: Which Programming is on a channel less than 26.5, has a Video of 480i and a PSIP Short Name of jtv? ### Answer: SELECT programming FROM table_name_89 WHERE channel < 26.5 AND video = "480i" AND psip_short_name = "jtv"
Below is an context that describes a sql 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 (place VARCHAR, score VARCHAR) ### Question: In which area was there a score of 68? ### Answer: SELECT place FROM table_name_42 WHERE score = 68
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25691838_12 (guest VARCHAR, production_code VARCHAR) ### Question: Who were the guests on a show where the production code is 6152? ### Answer: SELECT guest FROM table_25691838_12 WHERE production_code = 6152
Below is an context that describes a sql 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 (tie_no VARCHAR, away_team VARCHAR) ### Question: What was the tie number for the round against visiting opponent Newcastle United? ### Answer: SELECT tie_no FROM table_name_53 WHERE away_team = "newcastle 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_53 (club VARCHAR, round VARCHAR, home VARCHAR) ### Question: What club has a home score of 0-2 in Round 1? ### Answer: SELECT club FROM table_name_53 WHERE round = 1 AND home = "0-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_28146944_2 (title VARCHAR, no_in_series VARCHAR) ### Question: What's the title of the episode with series number 36? ### Answer: SELECT title FROM table_28146944_2 WHERE no_in_series = 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_10601843_2 (tenant VARCHAR, city VARCHAR) ### Question: How many tenants are there in the city of Samsun? ### Answer: SELECT COUNT(tenant) FROM table_10601843_2 WHERE city = "Samsun"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27786562_1 (poles VARCHAR, season VARCHAR) ### Question: Name the poles for season 2006 ### Answer: SELECT poles FROM table_27786562_1 WHERE season = 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_1876825_8 (title VARCHAR, no_in_season VARCHAR) ### Question: what is the title no in season 2? ### Answer: SELECT title FROM table_1876825_8 WHERE no_in_season = 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_74 (attack VARCHAR, gerb VARCHAR) ### Question: What Attack has a 30,00% GERB? ### Answer: SELECT attack FROM table_name_74 WHERE gerb = "30,00%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23958944_5 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR) ### Question: What episode is directed by Bryan Spicer and written by Terence Paul Winter? ### Answer: SELECT title FROM table_23958944_5 WHERE directed_by = "Bryan Spicer" AND written_by = "Terence Paul Winter"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25760427_2 (weeks_at_number_1 INTEGER) ### Question: error (see notes) ### Answer: SELECT MIN(weeks_at_number_1) FROM table_25760427_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_32 (date VARCHAR, catalog VARCHAR) ### Question: On what date was the record with catalog ALCA-275 released? ### Answer: SELECT date FROM table_name_32 WHERE catalog = "alca-275"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR) ### Question: Find the number of characteristics that the product "flax" has. ### Answer: SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "flax"
Below is an context that describes a sql 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 (tournament VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: Which Tournament has an Outcome of winner on 19 october 2008? ### Answer: SELECT tournament FROM table_name_25 WHERE outcome = "winner" AND date = "19 october 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_18 (mintage VARCHAR, theme VARCHAR) ### Question: What's the mintage when the theme was year of the rabbit? ### Answer: SELECT mintage FROM table_name_18 WHERE theme = "year of the rabbit"
Below is an context that describes a sql 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 (country VARCHAR, player VARCHAR) ### Question: what country hosted david toms ### Answer: SELECT country FROM table_name_94 WHERE player = "david toms"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_23 (runner_s__up VARCHAR, winner VARCHAR) ### Question: Who was the runner(s)-Up to winner Sarah Brice? ### Answer: SELECT runner_s__up FROM table_name_23 WHERE winner = "sarah brice"
Below is an context that describes a sql 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 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: What constructor has under 62 laps, a Time/Retired of gearbox, a Grid larger than 1, and pedro diniz driving? ### Answer: SELECT constructor FROM table_name_19 WHERE laps < 62 AND time_retired = "gearbox" AND grid > 1 AND driver = "pedro diniz"
Below is an context that describes a sql 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 (pick__number VARCHAR, nhl_team VARCHAR) ### Question: What is the pick# for the California Golden Seals? ### Answer: SELECT pick__number FROM table_name_92 WHERE nhl_team = "california golden seals"
Below is an context that describes a sql 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 (function__percentage VARCHAR, estimated_function__percentage VARCHAR) ### Question: What is the function percentage when the estimated function percentage is 20? ### Answer: SELECT function__percentage FROM table_name_30 WHERE estimated_function__percentage = 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_120778_1 (for_prohibition INTEGER) ### Question: Name the minimum for prohibition? ### Answer: SELECT MIN(for_prohibition) FROM table_120778_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_82 (average INTEGER, matches VARCHAR, catches VARCHAR) ### Question: What is the smallest average for the player with 13 matches and fewer than 7 catches? ### Answer: SELECT MIN(average) FROM table_name_82 WHERE matches = 13 AND catches < 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_99 (week_11_nov_6 VARCHAR, week_10_oct_30 VARCHAR) ### Question: What was Week 11 when Week 10 had Nebraska (7-1)? ### Answer: SELECT week_11_nov_6 FROM table_name_99 WHERE week_10_oct_30 = "nebraska (7-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_2305948_1 (other_placings VARCHAR, federation VARCHAR) ### Question: How many times has a wrestler whose federation was roh, wwe competed in this event? ### Answer: SELECT COUNT(other_placings) FROM table_2305948_1 WHERE federation = "ROH, WWE"
Below is an context that describes a sql 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 (rank INTEGER, lane VARCHAR, name VARCHAR) ### Question: What is the lowest rank of a swimmer named Elizabeth Van Welie with a lane larger than 5? ### Answer: SELECT MIN(rank) FROM table_name_85 WHERE lane > 5 AND name = "elizabeth van welie"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_30120605_1 (civil_parish VARCHAR, townland VARCHAR) ### Question: In which civil parish is ballymacandrick? ### Answer: SELECT civil_parish FROM table_30120605_1 WHERE townland = "Ballymacandrick"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24853015_1 (date VARCHAR, class_b_winner VARCHAR, round VARCHAR) ### Question: When did Alan Hutcheson won Class B on round 1? ### Answer: SELECT date FROM table_24853015_1 WHERE class_b_winner = "Alan Hutcheson" AND round = 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_47 (valley_vista VARCHAR, willow_canyon VARCHAR) ### Question: What Valley Vista has a Willow Canyon of 2169? ### Answer: SELECT valley_vista FROM table_name_47 WHERE willow_canyon = "2169"
Below is an context that describes a sql 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 (crowd INTEGER, away_team VARCHAR) ### Question: Which match where Hawthorn was the away team had the largest crowd? ### Answer: SELECT MAX(crowd) FROM table_name_58 WHERE away_team = "hawthorn"
Below is an context that describes a sql 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 (download VARCHAR, catch_up_period VARCHAR) ### Question: What is the download of the varies catch-up period? ### Answer: SELECT download FROM table_name_55 WHERE catch_up_period = "varies"