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_17382360_7 (score VARCHAR, team VARCHAR)
### Question:
what is the score in february 12 of the boston celtics team
### Answer:
SELECT score FROM table_17382360_7 WHERE team = "Boston Celtics" |
Below is an context that describes a sql 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 (frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)
### Question:
Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74
### Answer:
SELECT COUNT(frequency_mhz) FROM table_name_54 WHERE class = "d" AND call_sign = "k201bm" AND erp_w < 74 |
Below is an context that describes a sql 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 (stadium VARCHAR, year INTEGER)
### Question:
What was the stadium past 2012?
### Answer:
SELECT stadium FROM table_name_31 WHERE year > 2012 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_95 (rank INTEGER, taijiquan VARCHAR, total VARCHAR)
### Question:
What is the highest rank of the athlete with a Taijiquan higher than 9.64 and a total more than 19.69?
### Answer:
SELECT MAX(rank) FROM table_name_95 WHERE taijiquan > 9.64 AND total > 19.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_85 (score VARCHAR, date VARCHAR)
### Question:
WHAT IS THE SCORE OF MARCH 28?
### Answer:
SELECT score FROM table_name_85 WHERE date = "march 28" |
Below is an context that describes a sql 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 (administrative_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, labour_panel VARCHAR, total VARCHAR)
### Question:
Tell me the total number of administrative panel with labour panel more than 2, nominated by taoiseach more than 6 and total of 28
### Answer:
SELECT COUNT(administrative_panel) FROM table_name_59 WHERE labour_panel > 2 AND total = 28 AND nominated_by_the_taoiseach > 6 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_27 (teams VARCHAR, home VARCHAR, season VARCHAR)
### Question:
What teams has a home of 1-0, in the season 1988-89?
### Answer:
SELECT teams FROM table_name_27 WHERE home = "1-0" AND season = "1988-89" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_13759592_1 (founded VARCHAR, high_school VARCHAR)
### Question:
What year was Skyline High School founded?
### Answer:
SELECT COUNT(founded) FROM table_13759592_1 WHERE high_school = "Skyline" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26032940_2 (movie_title_and_year VARCHAR, main_cast VARCHAR)
### Question:
What movie did dana wynter , mel ferrer , theodore bikel star in?
### Answer:
SELECT movie_title_and_year FROM table_26032940_2 WHERE main_cast = "Dana Wynter , Mel Ferrer , Theodore Bikel" |
Below is an context that describes a sql 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 (week VARCHAR, attendance VARCHAR)
### Question:
In What Week was the Attendance 75,866?
### Answer:
SELECT week FROM table_name_59 WHERE attendance = "75,866" |
Below is an context that describes a sql 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 (played INTEGER, position VARCHAR, goals_against VARCHAR)
### Question:
Which lowest played has a Position of 2, and Goals against larger than 53?
### Answer:
SELECT MIN(played) FROM table_name_6 WHERE position = 2 AND goals_against > 53 |
Below is an context that describes a 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_3 (production_code VARCHAR, no_in_series VARCHAR)
### Question:
What is the production code for episode 26 in the series?
### Answer:
SELECT production_code FROM table_1876825_3 WHERE no_in_series = 26 |
Below is an context that describes a sql 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 (date VARCHAR, surface VARCHAR, opponent VARCHAR)
### Question:
On what date did Jesse Levine play on a hard surface?
### Answer:
SELECT date FROM table_name_78 WHERE surface = "hard" AND opponent = "jesse levine" |
Below is an context that describes a sql 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 (wins INTEGER, cuts_made VARCHAR, top_10 VARCHAR)
### Question:
What is the average wins with 5 cuts and 1 in the top-10?
### Answer:
SELECT AVG(wins) FROM table_name_91 WHERE cuts_made = 5 AND top_10 = 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_13 (time___mt__ VARCHAR, opponent VARCHAR, date VARCHAR)
### Question:
What is the (MT) time which has kansas city chiefs as an opponent on nov 11?
### Answer:
SELECT time___mt__ FROM table_name_13 WHERE opponent = "kansas city chiefs" AND date = "nov 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_18 (frequency VARCHAR, format VARCHAR)
### Question:
What is the frequency for the active rock format?
### Answer:
SELECT frequency FROM table_name_18 WHERE format = "active rock" |
Below is an context that describes a sql 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 (time VARCHAR, opponent VARCHAR)
### Question:
What was the time for the event in which Tony Mendoza was the opponent?
### Answer:
SELECT time FROM table_name_22 WHERE opponent = "tony mendoza" |
Below is an context that describes a sql 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, result VARCHAR)
### Question:
Which Date has a Result of l 14–13?
### Answer:
SELECT date FROM table_name_88 WHERE result = "l 14–13" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_2 (silver INTEGER, gold VARCHAR, overall VARCHAR, team VARCHAR)
### Question:
what is the least silver when overall is less than 67, team is saami and gold is less than 5?
### Answer:
SELECT MIN(silver) FROM table_name_2 WHERE overall < 67 AND team = "saami" AND gold < 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_16796625_1 (land_area__hectares_ VARCHAR, urban_area__locality_ VARCHAR)
### Question:
How many hectares of land area is Landsbro?
### Answer:
SELECT land_area__hectares_ FROM table_16796625_1 WHERE urban_area__locality_ = "Landsbro" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11236195_5 (season VARCHAR, winningteam VARCHAR)
### Question:
How many seasons did the canterbury bulldogs (8) win?
### Answer:
SELECT COUNT(season) FROM table_11236195_5 WHERE winningteam = "Canterbury Bulldogs (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 customer_contact_channels (channel_code VARCHAR, contact_number VARCHAR, active_to_date VARCHAR, active_from_date VARCHAR)
### Question:
What is the channel code and contact number of the customer contact channel that was active for the longest time?
### Answer:
SELECT channel_code, contact_number FROM customer_contact_channels WHERE active_to_date - active_from_date = (SELECT active_to_date - active_from_date FROM customer_contact_channels ORDER BY (active_to_date - active_from_date) 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_34 (per_capita_income VARCHAR, median_household_income VARCHAR)
### Question:
What's the $51,914 median household income per capita?
### Answer:
SELECT per_capita_income FROM table_name_34 WHERE median_household_income = "$51,914" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12592074_1 (laid_down INTEGER)
### Question:
What is the minimum laid down?
### Answer:
SELECT MIN(laid_down) FROM table_12592074_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_40 (coaster_name VARCHAR, year_opened VARCHAR, track VARCHAR)
### Question:
What is the coaster name that was opened in 1978, and have wooden track?
### Answer:
SELECT coaster_name FROM table_name_40 WHERE year_opened = "1978" AND track = "wooden" |
Below is an context that describes a sql 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 (silver INTEGER, nation VARCHAR, gold VARCHAR)
### Question:
HOW MANY SILVER METALS DOES SOUTH KOREA HAVE WITH 2 GOLD METALS?
### Answer:
SELECT MAX(silver) FROM table_name_43 WHERE nation = "south korea" AND gold > 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_23 (player VARCHAR, years_of_nba_experience_ VARCHAR, a_ VARCHAR)
### Question:
Who is the player with 7 years of NBA experience?
### Answer:
SELECT player FROM table_name_23 WHERE years_of_nba_experience_[a_] = 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_91 (win__percentage INTEGER, span VARCHAR, lost VARCHAR)
### Question:
What is the Win % in the Span of 2011–2013 with a Lost of less than 1?
### Answer:
SELECT AVG(win__percentage) FROM table_name_91 WHERE span = "2011–2013" AND lost < 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_33 (hometown VARCHAR, college VARCHAR)
### Question:
What is the hometown of the player who went to college at USC?
### Answer:
SELECT hometown FROM table_name_33 WHERE college = "usc" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2508633_6 (nfl_team VARCHAR, pick__number VARCHAR)
### Question:
Name the nfl team for pick number 151
### Answer:
SELECT nfl_team FROM table_2508633_6 WHERE pick__number = 151 |
Below is an context that describes a sql 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 (rank VARCHAR, year VARCHAR)
### Question:
What is rank of the year 1956?
### Answer:
SELECT rank FROM table_name_63 WHERE year = "1956" |
Below is an context that describes a sql 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 (name VARCHAR, state VARCHAR)
### Question:
What was the name when the state was wey?
### Answer:
SELECT name FROM table_name_22 WHERE state = "wey" |
Below is an context that describes a sql 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 (affiliation VARCHAR, nickname VARCHAR)
### Question:
Which Affiliation has a Nickname of cougars?
### Answer:
SELECT affiliation FROM table_name_47 WHERE nickname = "cougars" |
Below is an context that describes a sql 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 (total VARCHAR, e_score VARCHAR, a_score VARCHAR)
### Question:
What was the total score when the E score was larger than 9.6 and the A score was 6?
### Answer:
SELECT total FROM table_name_85 WHERE e_score > 9.6 AND a_score = 6 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_92 (pick INTEGER, player VARCHAR)
### Question:
When was terry cook picked?
### Answer:
SELECT AVG(pick) FROM table_name_92 WHERE player = "terry cook" |
Below is an context that describes a sql 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 (genre VARCHAR, station VARCHAR)
### Question:
What is the genre of the BBC World Service?
### Answer:
SELECT genre FROM table_name_77 WHERE station = "bbc world service" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the 2009 average when the 2007 average is more than 0,18?
### Answer:
SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 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_7 (total VARCHAR, finish VARCHAR)
### Question:
Name the total number of total with finish of t45
### Answer:
SELECT COUNT(total) FROM table_name_7 WHERE finish = "t45" |
Below is an context that describes a sql 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 (founded VARCHAR, city VARCHAR, capacity VARCHAR)
### Question:
How many foundeds have sousse as the city, with a capacity greater than 25,000?
### Answer:
SELECT COUNT(founded) FROM table_name_25 WHERE city = "sousse" AND capacity > 25 OFFSET 000 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR)
### Question:
What was the format for catalog 660-51-015?
### Answer:
SELECT format FROM table_name_51 WHERE catalog = "660-51-015" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE WINE (Price INTEGER, Appelation VARCHAR); CREATE TABLE APPELLATIONS (Appelation VARCHAR, County VARCHAR)
### Question:
Give me the average prices of wines that are produced by appelations in Sonoma County.
### Answer:
SELECT AVG(T2.Price) FROM APPELLATIONS AS T1 JOIN WINE AS T2 ON T1.Appelation = T2.Appelation WHERE T1.County = "Sonoma" |
Below is an context that describes a sql 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 (away_team VARCHAR, tie_no VARCHAR)
### Question:
In Tie #19, what was the name of the away team?
### Answer:
SELECT away_team FROM table_name_27 WHERE tie_no = "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_3 (home_team VARCHAR, date VARCHAR)
### Question:
Which Home Team is on june 12?
### Answer:
SELECT home_team FROM table_name_3 WHERE date = "june 12" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_31 (ht VARCHAR, venue VARCHAR)
### Question:
What was the HT for the game at Stadio Luigi Ferraris?
### Answer:
SELECT ht FROM table_name_31 WHERE venue = "stadio luigi ferraris" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28846752_9 (matches INTEGER, bbi VARCHAR)
### Question:
What the number of matches when the BBI is 3/27?
### Answer:
SELECT MIN(matches) FROM table_28846752_9 WHERE bbi = "3/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_79 (closed VARCHAR, name VARCHAR)
### Question:
What year did the Caphouse Colliery railway close?
### Answer:
SELECT closed FROM table_name_79 WHERE name = "caphouse colliery" |
Below is an context that describes a sql 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 (name VARCHAR, champion VARCHAR)
### Question:
What's the name when Henrik Sundström was champion?
### Answer:
SELECT name FROM table_name_88 WHERE champion = "henrik sundström" |
Below is an context that describes a sql 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 (height_metres___ft VARCHAR, town VARCHAR)
### Question:
What is the height in Rouen?
### Answer:
SELECT height_metres___ft FROM table_name_23 WHERE town = "rouen" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_64 (high_assists VARCHAR, high_points VARCHAR)
### Question:
What is High Assists, when High Points is "Tayshaun Prince (23)"?
### Answer:
SELECT high_assists FROM table_name_64 WHERE high_points = "tayshaun prince (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_name_62 (d_45_√ VARCHAR, d_41_√ VARCHAR)
### Question:
Name the D 45 √ when it has D 41√ of r 20
### Answer:
SELECT d_45_√ FROM table_name_62 WHERE d_41_√ = "r 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_44 (draws INTEGER, wins INTEGER)
### Question:
What draws are the lowest when wins are larger than 18?
### Answer:
SELECT MIN(draws) FROM table_name_44 WHERE wins > 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_97 (away_team VARCHAR)
### Question:
What is the away team score for South Melbourne?
### Answer:
SELECT away_team AS score FROM table_name_97 WHERE away_team = "south melbourne" |
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR, home VARCHAR, decision VARCHAR)
### Question:
What was the score on December 3 when Detroit was the home team and Legace took the decision?
### Answer:
SELECT score FROM table_name_52 WHERE home = "detroit" AND decision = "legace" AND date = "december 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_22 (episodes VARCHAR, season_no VARCHAR)
### Question:
How may episodes did season 1 have?
### Answer:
SELECT COUNT(episodes) FROM table_name_22 WHERE season_no = 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_69 (chassis VARCHAR, entrant VARCHAR, start VARCHAR)
### Question:
What chassis has patrick racing as an entrant, with a start greater than 6?
### Answer:
SELECT chassis FROM table_name_69 WHERE entrant = "patrick racing" AND start > 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 product_suppliers (product_id VARCHAR, total_amount_purchased VARCHAR)
### Question:
What are the ids of the top three products that were purchased in the largest amount?
### Answer:
SELECT product_id FROM product_suppliers ORDER BY total_amount_purchased DESC 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_97 (attendance VARCHAR, final VARCHAR)
### Question:
What was the attendance for the final quarter (1)?
### Answer:
SELECT attendance FROM table_name_97 WHERE final = "quarter (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_83 (country VARCHAR, team VARCHAR)
### Question:
What country is Relax-Gam from?
### Answer:
SELECT country FROM table_name_83 WHERE team = "relax-gam" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1979619_3 (district INTEGER, residence VARCHAR)
### Question:
Name the district for newtown square
### Answer:
SELECT MIN(district) FROM table_1979619_3 WHERE residence = "Newtown Square" |
Below is an context that describes a sql 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 (measurement VARCHAR, estimated_function__percentage INTEGER)
### Question:
What is the measurement where the estimated function % is less than 20?
### Answer:
SELECT measurement FROM table_name_21 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_name_84 (round INTEGER, position VARCHAR, pick VARCHAR)
### Question:
What is the lowest round for the player whose position is guard and had a pick number smaller than 144?
### Answer:
SELECT MIN(round) FROM table_name_84 WHERE position = "guard" AND pick < 144 |
Below is an context that describes a sql 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 (source VARCHAR, date VARCHAR, race_winners VARCHAR, gp_winner VARCHAR)
### Question:
What source has a race winner of ben adriaenssen / ben van den bogaart, and the gp winner of ben adriaenssen / ben van den bogaart, for the date of 1 april?
### Answer:
SELECT source FROM table_name_8 WHERE race_winners = "ben adriaenssen / ben van den bogaart" AND gp_winner = "ben adriaenssen / ben van den bogaart" AND date = "1 april" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_83 (commodity VARCHAR)
### Question:
What is the 2005-05 production for milk?
### Answer:
SELECT 2004 AS _05 FROM table_name_83 WHERE commodity = "milk" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_35 (date_released VARCHAR, left_bloc VARCHAR)
### Question:
What is the date released when the Left Bloc had 3.2%?
### Answer:
SELECT date_released FROM table_name_35 WHERE left_bloc = "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_6 (laps INTEGER, qual VARCHAR)
### Question:
What is the lowest lap with a 145.926 qual?
### Answer:
SELECT MIN(laps) FROM table_name_6 WHERE qual = "145.926" |
Below is an context that describes a sql 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 (sport VARCHAR, club VARCHAR)
### Question:
What sport is the cb estudiantes club in?
### Answer:
SELECT sport FROM table_name_46 WHERE club = "cb estudiantes" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_189598_7 (population__2011_ VARCHAR, change___percentage_ VARCHAR)
### Question:
When 4.5 is the percentage of change how many population counts were made for 2011?
### Answer:
SELECT COUNT(population__2011_) FROM table_189598_7 WHERE change___percentage_ = "4.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_68 (chart VARCHAR, peak_position VARCHAR)
### Question:
Which Chart has a Peak Position of 1?
### Answer:
SELECT chart FROM table_name_68 WHERE peak_position = 1 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2112220_6 (tournaments_played INTEGER, year VARCHAR)
### Question:
Name the tournaments played for 2004
### Answer:
SELECT MIN(tournaments_played) FROM table_2112220_6 WHERE year = 2004 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2167226_3 (to_par VARCHAR, winning_score VARCHAR)
### Question:
What is the to par with the winning score of 74-67-71-73=285?
### Answer:
SELECT to_par FROM table_2167226_3 WHERE winning_score = 74 - 67 - 71 - 73 = 285 |
Below is an context that describes a sql 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 (date VARCHAR, away_team VARCHAR)
### Question:
What date was Richmond the away team?
### Answer:
SELECT date FROM table_name_28 WHERE away_team = "richmond" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17289224_1 (team_name VARCHAR, season VARCHAR)
### Question:
Which team started 2010?
### Answer:
SELECT team_name FROM table_17289224_1 WHERE season = "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_24 (decision VARCHAR, date VARCHAR)
### Question:
What is the decision of the game on January 13?
### Answer:
SELECT decision FROM table_name_24 WHERE date = "january 13" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341577_10 (incumbent VARCHAR, district VARCHAR)
### Question:
what's incumbent with district being florida 5
### Answer:
SELECT incumbent FROM table_1341577_10 WHERE district = "Florida 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 affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
### Question:
Find the name of physicians who are affiliated with Surgery or Psychiatry department.
### Answer:
SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' OR T3.name = 'Psychiatry' |
Below is an context that describes a sql 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 (drawn INTEGER, first_game VARCHAR, played VARCHAR)
### Question:
What is the total number of drawn matches from first game years before 2006 and fewer than 2 matches played?
### Answer:
SELECT SUM(drawn) FROM table_name_42 WHERE first_game < 2006 AND played < 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_17 (date VARCHAR, home_away VARCHAR, opponent VARCHAR)
### Question:
On what date were the opponents the Bayhawks at a home game?
### Answer:
SELECT date FROM table_name_17 WHERE home_away = "home" AND opponent = "bayhawks" |
Below is an context that describes a sql 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 (player VARCHAR, round VARCHAR, position VARCHAR)
### Question:
Which player is in position center for round 2?
### Answer:
SELECT player FROM table_name_88 WHERE round = "2" AND position = "center" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_50 (winner VARCHAR, prize VARCHAR)
### Question:
Who is the winner of the prize of £200,000 as listed?
### Answer:
SELECT winner FROM table_name_50 WHERE prize = "£200,000" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_6 (title VARCHAR, name VARCHAR)
### Question:
What was Mu's title?
### Answer:
SELECT title FROM table_name_6 WHERE name = "mu" |
Below is an context that describes a sql 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 (attendance VARCHAR, result VARCHAR)
### Question:
What was the Attendance when the Result was L 31–23?
### Answer:
SELECT attendance FROM table_name_33 WHERE result = "l 31–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_18333678_2 (departure VARCHAR, arrival VARCHAR, going_to VARCHAR)
### Question:
when does the train arriving at stamford east at 11.45 departure
### Answer:
SELECT departure FROM table_18333678_2 WHERE arrival = "11.45" AND going_to = "Stamford East" |
Below is an context that describes a sql 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 (year_in_novel VARCHAR, published_as_serial VARCHAR)
### Question:
Which year in novel has a Published as serial of november 1934-april 1935, blue book?
### Answer:
SELECT year_in_novel FROM table_name_18 WHERE published_as_serial = "november 1934-april 1935, blue book" |
Below is an context that describes a sql 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 (internet_explorer VARCHAR, chrome VARCHAR)
### Question:
What internet explorer has 29.07% for the chrome?
### Answer:
SELECT internet_explorer FROM table_name_91 WHERE chrome = "29.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_name_71 (date VARCHAR, loss VARCHAR)
### Question:
Loss of francis (4–10) happened on what date?
### Answer:
SELECT date FROM table_name_71 WHERE loss = "francis (4–10)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_42 (city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
### Question:
what city has a game of friendly and an opponent of tunisia?
### Answer:
SELECT city FROM table_name_42 WHERE type_of_game = "friendly" AND opponent = "tunisia" |
Below is an context that describes a sql 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 (lead VARCHAR, team VARCHAR, skip VARCHAR)
### Question:
Who is the lead on the Europe team that has a Liudmila Privivkova as the skip?
### Answer:
SELECT lead FROM table_name_18 WHERE team = "europe" AND skip = "liudmila privivkova" |
Below is an context that describes a sql 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 (opponent_in_the_final VARCHAR, date VARCHAR)
### Question:
Who was the opponent on May 8, 2006?
### Answer:
SELECT opponent_in_the_final FROM table_name_75 WHERE date = "may 8, 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_35 (total INTEGER, e_score VARCHAR, t_score VARCHAR)
### Question:
How large was the total when the E Score was greater than 9.35 and T Score was less than 4?
### Answer:
SELECT MAX(total) FROM table_name_35 WHERE e_score > 9.35 AND t_score < 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_56 (tier INTEGER, postseason VARCHAR, season VARCHAR)
### Question:
What is the average Tier when the postseason shows -, and the season is 2012–13?
### Answer:
SELECT AVG(tier) FROM table_name_56 WHERE postseason = "–" AND season = "2012–13" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1289762_1 (s_spoilt_vote INTEGER, constituency VARCHAR)
### Question:
List the smallest possible spoilt vote with the sør-trøndelag constituency.
### Answer:
SELECT MIN(s_spoilt_vote) FROM table_1289762_1 WHERE constituency = "Sør-Trøndelag" |
Below is an context that describes a sql 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 (alternate VARCHAR, nation VARCHAR)
### Question:
Who was Switzerland's alternate?
### Answer:
SELECT alternate FROM table_name_86 WHERE nation = "switzerland" |
Below is an context that describes a sql 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 (team VARCHAR)
### Question:
Who is the 2008 head coach of UCLA?
### Answer:
SELECT 2008 AS _head_coach FROM table_name_7 WHERE team = "ucla" |
Below is an context that describes a sql 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 (crowd INTEGER, away_team VARCHAR)
### Question:
What is the highest crowd with north melbourne as away team?
### Answer:
SELECT MAX(crowd) FROM table_name_10 WHERE away_team = "north melbourne" |
Below is an context that describes a sql 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 (week INTEGER, attendance VARCHAR)
### Question:
How many weeks was there an attendance of 74,347?
### Answer:
SELECT SUM(week) FROM table_name_63 WHERE attendance = "74,347" |
Below is an context that describes a sql 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 (visitor VARCHAR, date VARCHAR)
### Question:
what visitor came on november 27
### Answer:
SELECT visitor FROM table_name_15 WHERE date = "november 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_27218002_2 (originalairdate VARCHAR, ratings VARCHAR)
### Question:
What date did the epiode that had 1.37 million as the rating originally air?
### Answer:
SELECT originalairdate FROM table_27218002_2 WHERE ratings = "1.37 Million" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE visitor (name VARCHAR, age VARCHAR, id VARCHAR); CREATE TABLE visit (visitor_id VARCHAR, num_of_ticket VARCHAR)
### Question:
Find the name and age of the visitor who bought the most tickets at once.
### Answer:
SELECT t1.name, t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id ORDER BY t2.num_of_ticket 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_32 (position VARCHAR, pick INTEGER)
### Question:
What was the position of the player picked at 243?
### Answer:
SELECT position FROM table_name_32 WHERE pick > 243 |
Below is an context that describes a sql 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 (attendance VARCHAR, result VARCHAR)
### Question:
How many spectators attended the game that ended in a result of w29-7?
### Answer:
SELECT attendance FROM table_name_27 WHERE result = "w29-7" |
Subsets and Splits