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_91 (rank INTEGER, rider VARCHAR) ### Question: What is the lowest rank of rider darren gilpin? ### Answer: SELECT MIN(rank) FROM table_name_91 WHERE rider = "darren gilpin"
Below is an context that describes a sql 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 (rank INTEGER, school VARCHAR, losses VARCHAR, wins VARCHAR) ### Question: Tell me the average Rank for lossess less than 6 and wins less than 11 for michigan state ### Answer: SELECT AVG(rank) FROM table_name_30 WHERE losses < 6 AND wins < 11 AND school = "michigan 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 table_17467447_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: If the product code is 2t6267, who was the director? ### Answer: SELECT directed_by FROM table_17467447_1 WHERE production_code = "2T6267"
Below is an context that describes a sql 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 (attendance INTEGER, visitor VARCHAR) ### Question: What is the average Attendance, when Visitor is Toronto? ### Answer: SELECT AVG(attendance) FROM table_name_71 WHERE visitor = "toronto"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Students (date_of_latest_logon VARCHAR, family_name VARCHAR) ### Question: What are the dates of the latest logon of the students with family name "Jaskolski" or "Langosh"? ### Answer: SELECT date_of_latest_logon FROM Students WHERE family_name = "Jaskolski" OR family_name = "Langosh"
Below is an context that describes a sql 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 (year VARCHAR, regular_season_champion_s_ VARCHAR, tournament_venue VARCHAR, record VARCHAR) ### Question: When has a Tournament venue of richmond arena, and a Record of 12–1, and a Regular Season Champion(s) of virginia tech? ### Answer: SELECT year FROM table_name_45 WHERE tournament_venue = "richmond arena" AND record = "12–1" AND regular_season_champion_s_ = "virginia tech"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_39 (event VARCHAR, location VARCHAR, days_held VARCHAR) ### Question: Which event has Philadelphia, PA as the location and 41 days held? ### Answer: SELECT event FROM table_name_39 WHERE location = "philadelphia, pa" AND days_held = 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_21 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive? ### Answer: SELECT SUM(silver) FROM table_name_21 WHERE gold < 1 AND rank = "8" AND total > 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_60 (date VARCHAR, week VARCHAR) ### Question: When has a Week of 9? ### Answer: SELECT date FROM table_name_60 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_name_49 (away_team VARCHAR, venue VARCHAR) ### Question: What is the away team score at victoria park? ### Answer: SELECT away_team AS score FROM table_name_49 WHERE venue = "victoria 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_16254861_1 (result VARCHAR, year__ceremony_ VARCHAR) ### Question: What was the result for the 2009 (82nd) awards? ### Answer: SELECT result FROM table_16254861_1 WHERE year__ceremony_ = "2009 (82nd)"
Below is an context that describes a 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 (transcription VARCHAR, thai_name VARCHAR) ### Question: How many different transcriptions are there for the Thai name พฤษภาคม? ### Answer: SELECT COUNT(transcription) FROM table_20354_5 WHERE thai_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_31 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR) ### Question: What is Beohari's reserved for (SC/ST/None)? ### Answer: SELECT reserved_for___sc___st__none_ FROM table_name_31 WHERE name = "beohari"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_63 (career_sr VARCHAR) ### Question: What is the value in 1997 when the value in 1989 is A, 1995 is QF, 1996 is 3R and the career SR is 0 / 8? ### Answer: SELECT 1997 FROM table_name_63 WHERE 1989 = "a" AND 1995 = "qf" AND 1996 = "3r" AND career_sr = "0 / 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_36 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on December 10, 2000? ### Answer: SELECT opponent FROM table_name_36 WHERE date = "december 10, 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_71 (engine_s_ VARCHAR, chassis VARCHAR, year VARCHAR) ### Question: What is the engine(s) on the car before 1978 with ensign n177 chassis? ### Answer: SELECT engine_s_ FROM table_name_71 WHERE chassis = "ensign n177" AND year < 1978
Below is an context that describes a sql 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 (round INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR) ### Question: What is the average round of the s position player from the college of Mississippi and has an overall less than 214? ### Answer: SELECT AVG(round) FROM table_name_79 WHERE position = "s" AND college = "mississippi" AND overall < 214
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_174266_6 (year VARCHAR) ### Question: If the year is 2010, what is the minimum amount of years 5-9? ### Answer: SELECT MIN(5 AS _9_years) FROM table_174266_6 WHERE 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_14209245_9 (pick__number VARCHAR, round VARCHAR) ### Question: What is the pick number for round 2? ### Answer: SELECT pick__number FROM table_14209245_9 WHERE round = 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_1 (entrant VARCHAR, points VARCHAR, engine VARCHAR, rank VARCHAR) ### Question: What is the entrant for the audi 3.6l turbo v8 engine and ranked 3rd with 163 points? ### Answer: SELECT entrant FROM table_name_1 WHERE engine = "audi 3.6l turbo v8" AND rank = "3rd" AND points = 163
Below is an context that describes a sql 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 (period VARCHAR, player VARCHAR) ### Question: In which period did Stanislav Chistov get a penalty? ### Answer: SELECT period FROM table_name_9 WHERE player = "stanislav chistov"
Below is an context that describes 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 (College VARCHAR) ### Question: Show different colleges along with the number of authors of submission from each college. ### Answer: SELECT College, COUNT(*) FROM submission GROUP BY 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 table_name_24 (player VARCHAR, cfl_team VARCHAR) ### Question: Name the Player who has a CFL Team of toronto? ### Answer: SELECT player FROM table_name_24 WHERE cfl_team = "toronto"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (team_1 VARCHAR, team_2 VARCHAR) ### Question: What is the team 1 when Ulisses is team 2? ### Answer: SELECT team_1 FROM table_name_98 WHERE team_2 = "ulisses"
Below is an context that describes a sql 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 (region VARCHAR, village VARCHAR) ### Question: Which Reigon has a Village of Chassagne-Montrachet? ### Answer: SELECT region FROM table_name_82 WHERE village = "chassagne-montrachet"
Below is an context that describes a sql 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 (year_made VARCHAR, manufacturer VARCHAR) ### Question: what is the year made when the manufacturer is 2-6-2 — oooo — mogul? ### Answer: SELECT year_made FROM table_name_20 WHERE manufacturer = "2-6-2 — oooo — mogul"
Below is an context that describes a sql 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 (record VARCHAR, attendance VARCHAR) ### Question: What is the Record of the game with an Attendance of 70,604? ### Answer: SELECT record FROM table_name_92 WHERE attendance = "70,604"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20183474_1 (total_points VARCHAR, draw VARCHAR) ### Question: How many points did the song with a draw number 3 get? ### Answer: SELECT total_points FROM table_20183474_1 WHERE draw = 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_2897457_4 (position VARCHAR, nhl_team VARCHAR) ### Question: How many positions drafted for the Minnesota North Stars? ### Answer: SELECT COUNT(position) FROM table_2897457_4 WHERE nhl_team = "Minnesota North Stars"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23995075_2 (remaining_places_in_finals VARCHAR, teams_that_can_still_qualify VARCHAR, teams_that_have_secured_qualification VARCHAR) ### Question: How many remaining places in finals when 1 team can still qualify and 0 teams have secured qualification? ### Answer: SELECT remaining_places_in_finals FROM table_23995075_2 WHERE teams_that_can_still_qualify = "1" AND teams_that_have_secured_qualification = "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_11214772_1 (semi_finalist__number2 VARCHAR, runner_up VARCHAR) ### Question: what is the total number of semi-finalist #2 where runner-up is east carolina ### Answer: SELECT COUNT(semi_finalist__number2) FROM table_11214772_1 WHERE runner_up = "East Carolina"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12261806_2 (trofeo_fast_team VARCHAR, stage VARCHAR) ### Question: Name the trofeo fast team of stage 2 ### Answer: SELECT trofeo_fast_team FROM table_12261806_2 WHERE stage = "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_2 (street_address VARCHAR, floors VARCHAR) ### Question: The building with 48 floors has an address in Las Vegas of what? ### Answer: SELECT street_address FROM table_name_2 WHERE floors = 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_95 (club VARCHAR, captain VARCHAR) ### Question: What club captain is John Hutchinson in? ### Answer: SELECT club FROM table_name_95 WHERE captain = "john hutchinson"
Below is an context that describes a sql 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 (years VARCHAR, jersey_number_s_ VARCHAR) ### Question: What is the Years of the player with Jersey Number(s) of 44? ### Answer: SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44
Below is an context that describes a sql 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 (week_of VARCHAR, semi_finalists VARCHAR) ### Question: What is Week, when Semi Finalists is Sandrine Testud Yone Kamio? ### Answer: SELECT week_of FROM table_name_53 WHERE semi_finalists = "sandrine testud yone kamio"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_69 (lost INTEGER, _percentage_pts INTEGER) ### Question: When the points scored was over 110.25%, what's the average amount lost? ### Answer: SELECT AVG(lost) FROM table_name_69 WHERE _percentage_pts > 110.25
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_72 (character_name VARCHAR, release_date VARCHAR) ### Question: What was the character name for the film with a release date of July 29, 1938? ### Answer: SELECT character_name FROM table_name_72 WHERE release_date = "july 29, 1938"
Below is an context that describes a sql 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 (re_entered_service__p_ VARCHAR, entered_service__t_ VARCHAR, pre_conversion VARCHAR) ### Question: What date did the T328 that entered service on 18 June 1956 re-enter service? ### Answer: SELECT re_entered_service__p_ FROM table_name_22 WHERE entered_service__t_ = "18 june 1956" AND pre_conversion = "t328"
Below is an context that describes a sql 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 (dissolved VARCHAR, elected VARCHAR) ### Question: Who was dissolved that was elected in 1553? ### Answer: SELECT dissolved FROM table_name_95 WHERE elected = "1553"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_1 (production_code VARCHAR, original_air_date VARCHAR, season__number VARCHAR, series__number VARCHAR) ### Question: What is the production code of the episode before season 8, with a series number less than 31, and aired on September 21, 1995? ### Answer: SELECT production_code FROM table_name_1 WHERE season__number < 8 AND series__number < 31 AND original_air_date = "september 21, 1995"
Below is an context that describes a sql 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 (tries INTEGER, team VARCHAR, games VARCHAR) ### Question: What is the average number of tries for British and Irish Lions with less than 2 games? ### Answer: SELECT AVG(tries) FROM table_name_82 WHERE team = "british and irish lions" AND games < 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_28 (gross_revenue__2011_ VARCHAR, gross_revenue__1982_ VARCHAR) ### Question: What is the gross revenue in 2011 with a gross revenue in 1982 of $1,988,047? ### Answer: SELECT gross_revenue__2011_ FROM table_name_28 WHERE gross_revenue__1982_ = "$1,988,047"
Below is an context that describes a sql 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 (streak VARCHAR, date VARCHAR) ### Question: What was the streak on March 27? ### Answer: SELECT streak FROM table_name_81 WHERE date = "march 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_name_56 (game VARCHAR, opponent VARCHAR) ### Question: What is the fame number when the Montreal Canadiens were the opponent? ### Answer: SELECT COUNT(game) FROM table_name_56 WHERE opponent = "montreal canadiens"
Below is an context that describes a sql 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 (built INTEGER, floors VARCHAR, rank VARCHAR) ### Question: What is the lowest Built, when Floors is greater than 23, and when Rank is 3? ### Answer: SELECT MIN(built) FROM table_name_38 WHERE floors > 23 AND 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_7 (freq_currently VARCHAR, callsign VARCHAR) ### Question: What is the Freq currently of the 4GG Callsign? ### Answer: SELECT freq_currently FROM table_name_7 WHERE callsign = "4gg"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Customers_cards (card_type_code VARCHAR) ### Question: What is the card type code with most number of cards? ### Answer: SELECT card_type_code FROM Customers_cards GROUP BY card_type_code 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_26336060_19 (coinage_metal VARCHAR, km_number VARCHAR) ### Question: What is the coinage metal for a KM number of S75? ### Answer: SELECT coinage_metal FROM table_26336060_19 WHERE km_number = "S75"
Below is an context that describes a sql 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 (kk___5 VARCHAR, kk___1 VARCHAR) ### Question: What is KK - 5 if KK - 1 is 1,067? ### Answer: SELECT kk___5 FROM table_name_42 WHERE kk___1 = "1,067"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Highschooler (name VARCHAR, grade VARCHAR) ### Question: Show the names and grades of each high schooler. ### Answer: SELECT name, grade FROM Highschooler
Below is an context that describes a sql 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 (Id VARCHAR) ### Question: What shows for 202 when the 1994 is A, the 1989 is NME, and the 199 is 2R? ### Answer: SELECT 2002 FROM table_name_3 WHERE 1994 = "a" AND 1989 = "nme" AND 1999 = "2r"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23871828_1 (song_choice VARCHAR, result VARCHAR, order__number VARCHAR) ### Question: Name the song for safe result #8. ### Answer: SELECT song_choice FROM table_23871828_1 WHERE result = "Safe" AND order__number = 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_26460435_8 (monarch VARCHAR, heir VARCHAR) ### Question: Who is the monarch with the heir thado minsaw? ### Answer: SELECT monarch FROM table_26460435_8 WHERE heir = "Thado Minsaw"
Below is an context that describes a sql 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 (born_in_a_non_eu_state__1000_ INTEGER, country VARCHAR, total_population__1000_ VARCHAR) ### Question: What is the highest number born in a none EU state (1000) from Denmark with a total population (1000) less than 5,534? ### Answer: SELECT MAX(born_in_a_non_eu_state__1000_) FROM table_name_20 WHERE country = "denmark" AND total_population__1000_ < 5 OFFSET 534
Below is an context that describes a sql 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 (date VARCHAR, venue VARCHAR) ### Question: What is the date of the game when the venue is Kardinia Park? ### Answer: SELECT date FROM table_name_13 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_26982362_2 (original_airdate VARCHAR, production_code VARCHAR) ### Question: The episode with production code 693-002, has how many original airdates? ### Answer: SELECT COUNT(original_airdate) FROM table_26982362_2 WHERE production_code = "693-002"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11354111_3 (overall_rank VARCHAR, viewers__m_ VARCHAR) ### Question: what's the overall rank with viewers (m) of 7.44 ### Answer: SELECT overall_rank FROM table_11354111_3 WHERE viewers__m_ = "7.44"
Below is an context that describes a sql 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 (week VARCHAR, host_team VARCHAR) ### Question: Which week did the Baltimore Ravens play at home ? ### Answer: SELECT week FROM table_name_79 WHERE host_team = "baltimore ravens"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1211545_2 (name VARCHAR, heavy_vehicle__2_axles_ VARCHAR) ### Question: What is the name of the plaza where the told for heavy vehicles with 2 axles is r20.50? ### Answer: SELECT name FROM table_1211545_2 WHERE heavy_vehicle__2_axles_ = "R20.50"
Below is an context that describes a sql 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 (end_date VARCHAR, to_club VARCHAR) ### Question: A player was moved to celtic had an end of what date? ### Answer: SELECT end_date FROM table_name_99 WHERE to_club = "celtic"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23512864_4 (election_year INTEGER, assembly VARCHAR) ### Question: If the assembly is the sixth assembly, what is the maximum election year? ### Answer: SELECT MAX(election_year) FROM table_23512864_4 WHERE assembly = "Sixth assembly"
Below is an context that describes a sql 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 (first_team_goals VARCHAR, player VARCHAR) ### Question: How many first-team goals does the team have whose player is Samir Carruthers? ### Answer: SELECT first_team_goals FROM table_name_73 WHERE player = "samir carruthers"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14723382_1 (regular_season VARCHAR, year VARCHAR) ### Question: What regular seasons occurred in 2011? ### Answer: SELECT regular_season FROM table_14723382_1 WHERE year = 2011
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2071644_1 (flange_width__mm_ VARCHAR, cross_section_area__cm_2__ VARCHAR) ### Question: What is the flange width (mm) for cross section area (cm 2) 16.4? ### Answer: SELECT COUNT(flange_width__mm_) FROM table_2071644_1 WHERE cross_section_area__cm_2__ = "16.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_15 (opponents VARCHAR, partner VARCHAR) ### Question: What is the name of the opponent when anastasia pivovarova was the partner? ### Answer: SELECT opponents FROM table_name_15 WHERE partner = "anastasia pivovarova"
Below is an context that describes a sql 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 (circuit VARCHAR, winner VARCHAR) ### Question: What's the circuit that had an event cancelled? ### Answer: SELECT circuit FROM table_name_11 WHERE winner = "event cancelled"
Below is an context that describes a sql 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 (home_team VARCHAR, date VARCHAR, away_team VARCHAR) ### Question: Who is the home team on 31 January 1951 when away team was Sheffield United? ### Answer: SELECT home_team FROM table_name_75 WHERE date = "31 january 1951" AND away_team = "sheffield 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_36 (competition VARCHAR, venue VARCHAR, result VARCHAR) ### Question: Which Competition has a Venue of Seoul, and Result of 4-1? ### Answer: SELECT competition FROM table_name_36 WHERE venue = "seoul" AND result = "4-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_17288825_6 (high_rebounds VARCHAR, team VARCHAR) ### Question: When @ new orleans is the team who has the highest amount of rebounds? ### Answer: SELECT high_rebounds FROM table_17288825_6 WHERE team = "@ New Orleans"
Below is an context that describes a sql 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 (production_num INTEGER, title VARCHAR) ### Question: How many production numbers have a Title of bosko in dutch? ### Answer: SELECT SUM(production_num) FROM table_name_93 WHERE title = "bosko in dutch"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_63 (club VARCHAR, points_against VARCHAR) ### Question: What is the club had 431 points against them? ### Answer: SELECT club FROM table_name_63 WHERE points_against = "431"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_69 (standard_order VARCHAR, traditional_chinese VARCHAR) ### Question: Which number is 國殤? ### Answer: SELECT standard_order FROM table_name_69 WHERE traditional_chinese = "國殤"
Below is an context that describes a sql 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 (part_1 VARCHAR, part_2 VARCHAR) ### Question: What is Part 1, when Part 2 is "fraus"? ### Answer: SELECT part_1 FROM table_name_99 WHERE part_2 = "fraus"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_255602_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR) ### Question: What is the population density where area is 48.67? ### Answer: SELECT COUNT(pop_density__per_km²_) FROM table_255602_1 WHERE area__km²_ = "48.67"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1467951_4 (ep_no INTEGER) ### Question: What is the highest number of episodes? ### Answer: SELECT MAX(ep_no) FROM table_1467951_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_17 (game VARCHAR, record VARCHAR, december VARCHAR) ### Question: After December 19, what is the Game number with a Record of 21–4–7? ### Answer: SELECT COUNT(game) FROM table_name_17 WHERE record = "21–4–7" AND december > 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_43 (tie_no VARCHAR, attendance VARCHAR) ### Question: How many ties are there where attendance is 11,997? ### Answer: SELECT tie_no FROM table_name_43 WHERE attendance = "11,997"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR) ### Question: WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt? ### Answer: SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = "shinichi fukushima" AND winner = "jeremy hunt"
Below is an context that describes a sql 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 (number_of_episodes VARCHAR, status VARCHAR) ### Question: What is Number Of Episodes, when Status is "2001 - 2003, 2005 - 2009"? ### Answer: SELECT number_of_episodes FROM table_name_86 WHERE status = "2001 - 2003, 2005 - 2009"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15333005_1 (Ends VARCHAR, l VARCHAR, stolen_ends VARCHAR) ### Question: Name the number ends won when L is 4 and stolen ends is 17 ### Answer: SELECT COUNT(Ends) AS won FROM table_15333005_1 WHERE l = 4 AND stolen_ends = 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_52 (poles INTEGER, fastest_laps INTEGER) ### Question: What is the smallest number of poles when the fastest laps are less than 0? ### Answer: SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 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_85 (restaurant_name VARCHAR, designer VARCHAR, location VARCHAR) ### Question: What is the name of the Cobourg, ON restaurant that had Robin de Groot as designer? ### Answer: SELECT restaurant_name FROM table_name_85 WHERE designer = "robin de groot" AND location = "cobourg, on"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13967239_2 (senior__4th_year_ VARCHAR, sophomore__grade_8_ VARCHAR) ### Question: What is after intermediate algebra ### Answer: SELECT senior__4th_year_ FROM table_13967239_2 WHERE sophomore__grade_8_ = "Intermediate Algebra"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28027307_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR) ### Question: How many millions of U.S. viewers watched the episode with the production code of 6AKY07? ### Answer: SELECT us_viewers__millions_ FROM table_28027307_1 WHERE production_code = "6AKY07"
Below is an context that describes a sql 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 (score VARCHAR, record VARCHAR) ### Question: What was the score of the game with a record of 37–26–9? ### Answer: SELECT score FROM table_name_5 WHERE record = "37–26–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_89 (colourist_s VARCHAR, letterer_s VARCHAR, story_title VARCHAR) ### Question: Who is the Colourist that has a Story Title of Broken Glass (part 3) and a Letterer of Albers? ### Answer: SELECT colourist_s FROM table_name_89 WHERE letterer_s = "albers" AND story_title = "broken glass (part 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_19778010_5 (high_rebounds VARCHAR, high_assists VARCHAR) ### Question: Who did the high rebounds in the game in which five players (3) did the high assists? ### Answer: SELECT high_rebounds FROM table_19778010_5 WHERE high_assists = "Five Players (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_12962773_13 (no VARCHAR, height VARCHAR) ### Question: What is the total number that has a height of 2.06? ### Answer: SELECT COUNT(no) FROM table_12962773_13 WHERE height = "2.06"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341423_20 (party VARCHAR, incumbent VARCHAR) ### Question: What party did incumbent Albert Wynn belong to? ### Answer: SELECT party FROM table_1341423_20 WHERE incumbent = "Albert Wynn"
Below is an context that describes a sql 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 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Question: Who had the high rebounds in Philips Arena 12,088? ### Answer: SELECT high_rebounds FROM table_name_17 WHERE location_attendance = "philips arena 12,088"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1397655_1 (other_programming_sources VARCHAR, year_acquired VARCHAR) ### Question: how many channels were gained in 1997 ### Answer: SELECT COUNT(other_programming_sources) FROM table_1397655_1 WHERE year_acquired = 1997
Below is an context that describes a sql 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 (date VARCHAR, goals VARCHAR, result VARCHAR) ### Question: Which date had less than 3 goals and a result of (w) 2-0? ### Answer: SELECT date FROM table_name_23 WHERE goals < 3 AND result = "(w) 2-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_28 (home_team VARCHAR, venue VARCHAR) ### Question: What team plays at home at Windy Hill? ### Answer: SELECT home_team FROM table_name_28 WHERE venue = "windy hill"
Below is an context that describes a sql 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 (college VARCHAR, player VARCHAR) ### Question: What College has a Player that is jermaine romans? ### Answer: SELECT college FROM table_name_79 WHERE player = "jermaine romans"
Below is an context that describes a sql 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 (score VARCHAR, home_team VARCHAR) ### Question: what is the score when the home team is cairns taipans? ### Answer: SELECT score FROM table_name_23 WHERE home_team = "cairns taipans"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR) ### Question: Which province has evening gown score of 7.61 ### Answer: SELECT province FROM table_15081939_4 WHERE evening_gown = "7.61"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13564637_4 (Id VARCHAR) ### Question: What is the name of the column points against? ### Answer: SELECT "points" AS _against FROM table_13564637_4 WHERE "points" = "points"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_13 (league INTEGER, club VARCHAR, play_offs VARCHAR) ### Question: Which of the lowest leagues had Aldershot town as a club when the play-offs number was less than 0? ### Answer: SELECT MIN(league) FROM table_name_13 WHERE club = "aldershot town" AND play_offs < 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_70 (nfl_recap VARCHAR, date VARCHAR) ### Question: What was the NFL Recap of the game held on December 24, 2005? ### Answer: SELECT nfl_recap FROM table_name_70 WHERE date = "december 24, 2005"