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_19439864_2 (tromsø INTEGER, total VARCHAR)
### Question:
When the total score is 740, what is tromso?
### Answer:
SELECT MIN(tromsø) FROM table_19439864_2 WHERE total = 740 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15327489_1 (wins INTEGER)
### Question:
Name the most wins
### Answer:
SELECT MIN(wins) FROM table_15327489_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_20 (current_code VARCHAR, type VARCHAR, years VARCHAR)
### Question:
What is the current code for the club trophy, in 1867 only?
### Answer:
SELECT current_code FROM table_name_20 WHERE type = "club trophy" AND years = "1867 only" |
Below is an context that describes a sql 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 (area VARCHAR, authority VARCHAR, roll VARCHAR)
### Question:
Where is the school with state authority that has a roll of more than 157 students?
### Answer:
SELECT area FROM table_name_11 WHERE authority = "state" AND roll > 157 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11961582_10 (team VARCHAR, date VARCHAR)
### Question:
Which team was played on April 20?
### Answer:
SELECT team FROM table_11961582_10 WHERE date = "April 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 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
### Question:
Who is the rider with less than 15 laps, more than 32 grids, and an accident time/retired?
### Answer:
SELECT rider FROM table_name_44 WHERE laps < 15 AND grid > 32 AND time_retired = "accident" |
Below is an context that describes a sql 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 (director VARCHAR, rank VARCHAR)
### Question:
Which Director has a Rank of 12?
### Answer:
SELECT director FROM table_name_22 WHERE rank = 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_44 (home_team VARCHAR, tie_no VARCHAR)
### Question:
What home team has a tie no of 20?
### Answer:
SELECT home_team FROM table_name_44 WHERE tie_no = "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_49 (bumping_blocking VARCHAR, ankle_tap VARCHAR, steal_intercept_ball VARCHAR)
### Question:
Which bumping/blocking has a yes for both the ankle tap and steal/intercept ball?
### Answer:
SELECT bumping_blocking FROM table_name_49 WHERE ankle_tap = "yes" AND steal_intercept_ball = "yes" |
Below is an context that describes a sql 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 (points INTEGER, record VARCHAR, game__number VARCHAR)
### Question:
What is the number of points of the game less than number 17 with an 11-6-0 record?
### Answer:
SELECT SUM(points) FROM table_name_43 WHERE record = "11-6-0" AND game__number < 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_33 (manufacture VARCHAR, opened_in VARCHAR, type VARCHAR)
### Question:
Who is the manufacturer of the mini jet red baron ride that opened before 2001?
### Answer:
SELECT manufacture FROM table_name_33 WHERE opened_in < 2001 AND type = "mini jet red baron" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2328113_1 (population__2011_ INTEGER)
### Question:
What was the minimum population in 2011?
### Answer:
SELECT MIN(population__2011_) FROM table_2328113_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_57 (percentage_democrats VARCHAR, democratic__republican VARCHAR)
### Question:
What is the percentage democrats with 2/4 democrat/republican?
### Answer:
SELECT percentage_democrats FROM table_name_57 WHERE democratic__republican = "2/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_1566852_6 (interview_subject VARCHAR, centerfold_model VARCHAR)
### Question:
How many total interview subjects wererthere when the centerfold model was Tamara Witmer?
### Answer:
SELECT COUNT(interview_subject) FROM table_1566852_6 WHERE centerfold_model = "Tamara Witmer" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_90 (league VARCHAR, year VARCHAR)
### Question:
Name the league for 1996
### Answer:
SELECT league FROM table_name_90 WHERE year = "1996" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_77 (losses INTEGER, club VARCHAR, against VARCHAR)
### Question:
Cobden has more than 1487 against and what average of losses?
### Answer:
SELECT AVG(losses) FROM table_name_77 WHERE club = "cobden" AND against > 1487 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19439814_1 (members VARCHAR, sold__albums_and_singles_ VARCHAR)
### Question:
How many members were in the group that sold 65 million albums and singles?
### Answer:
SELECT members FROM table_19439814_1 WHERE sold__albums_and_singles_ = "65 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 table_name_14 (date VARCHAR, opponent VARCHAR)
### Question:
On what Date was the Opponent Panathinaikos?
### Answer:
SELECT date FROM table_name_14 WHERE opponent = "panathinaikos" |
Below is an context that describes a sql 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 (draft INTEGER, pick VARCHAR, round VARCHAR, nationality VARCHAR)
### Question:
What is the highest draft after round 2, is from the United States and has picked less than 113?
### Answer:
SELECT MAX(draft) FROM table_name_89 WHERE round > 2 AND nationality = "united states" AND pick < 113 |
Below is an context that describes a sql 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 (away_team VARCHAR, home_team VARCHAR)
### Question:
Who was South Melbourne's away opponents?
### Answer:
SELECT away_team FROM table_name_18 WHERE home_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_9 (club_team VARCHAR, round VARCHAR, position VARCHAR)
### Question:
What Club team with a Round larger than 5 have a defense position?
### Answer:
SELECT club_team FROM table_name_9 WHERE round > 5 AND position = "defense" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_67 (date VARCHAR, venue VARCHAR, goal VARCHAR)
### Question:
What day is miami the venue with 38 goals?
### Answer:
SELECT date FROM table_name_67 WHERE venue = "miami" AND goal = 38 |
Below is an context that describes a sql 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 (english_name VARCHAR, abbr VARCHAR)
### Question:
What is the English word that is abbreviated พ.ย.?
### Answer:
SELECT english_name FROM table_name_23 WHERE abbr = "พ.ย." |
Below is an context that describes a sql 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 (high_assists VARCHAR, date VARCHAR)
### Question:
who had the high assists on march 30?
### Answer:
SELECT high_assists FROM table_name_78 WHERE date = "march 30" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_8 (bird_uniform VARCHAR, eagle_riders VARCHAR)
### Question:
What is the bird uniform for Eagle Rider Mickey Dugan?
### Answer:
SELECT bird_uniform FROM table_name_8 WHERE eagle_riders = "mickey dugan" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12094609_1 (swimsuit VARCHAR, average VARCHAR)
### Question:
what's the swimsuit where average is 8.670
### Answer:
SELECT swimsuit FROM table_12094609_1 WHERE average = "8.670" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR)
### Question:
When was the Albi circuit race driven?
### Answer:
SELECT date FROM table_1140119_5 WHERE circuit = "Albi" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27622417_1 (no_in_series VARCHAR, prod_code VARCHAR)
### Question:
what is the number of the episode in the series whose production code is 405?
### Answer:
SELECT no_in_series FROM table_27622417_1 WHERE prod_code = "405" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_14 (vehicles__per_1000__d INTEGER, agri_culture_b INTEGER)
### Question:
Agri culture b larger than 12.6, what is the lowest vehicles per 1000?
### Answer:
SELECT MIN(vehicles__per_1000__d) FROM table_name_14 WHERE agri_culture_b > 12.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_91 (tournament VARCHAR)
### Question:
What is the 2007 result when the 2010 result was 2r, at the US Open?
### Answer:
SELECT 2007 FROM table_name_91 WHERE 2010 = "2r" AND tournament = "us open" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_63 (Id VARCHAR)
### Question:
What is the sum of 1891(s), when 1872 is less than 685, and when 1881 is less than 348?
### Answer:
SELECT SUM(1891) FROM table_name_63 WHERE 1872 < 685 AND 1881 < 348 |
Below is an context that describes a sql 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 (frequency VARCHAR, order_part_number VARCHAR)
### Question:
What is the frequency of the tmm500dbo22gq order part number?
### Answer:
SELECT frequency FROM table_name_17 WHERE order_part_number = "tmm500dbo22gq" |
Below is an context that describes a sql 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 (bronze INTEGER, nation VARCHAR, total VARCHAR)
### Question:
What is the highest Bronze, when Nation is "South Africa", and when Total is less than 20?
### Answer:
SELECT MAX(bronze) FROM table_name_73 WHERE nation = "south africa" AND total < 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_32 (average_annual VARCHAR)
### Question:
What is the average value for 2005, when the value for Average annual is 767?
### Answer:
SELECT AVG(2005) FROM table_name_32 WHERE average_annual = 767 |
Below is an context that describes a sql 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 (team_2 VARCHAR)
### Question:
What is the 1st leg of Team 2 PSV Eindhoven?
### Answer:
SELECT 1 AS st_leg FROM table_name_21 WHERE team_2 = "psv eindhoven" |
Below is an context that describes a sql 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 (total_passengers__millions__2011_12 INTEGER, annual_entry_exit__millions__2011_12 VARCHAR)
### Question:
What's the lowest number of total passengers (millions) for an annual entry/exit of 36.609?
### Answer:
SELECT MIN(total_passengers__millions__2011_12) FROM table_name_32 WHERE annual_entry_exit__millions__2011_12 = 36.609 |
Below is an context that describes a sql 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 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
### Question:
What is the grid total that has a Time/Retired of + 1:33.141, and under 70 laps?
### Answer:
SELECT SUM(grid) FROM table_name_27 WHERE time_retired = "+ 1:33.141" AND laps < 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 table_name_92 (birthplace VARCHAR, birthdate VARCHAR)
### Question:
Where was the birthplace of the person born on March 21, 1979?
### Answer:
SELECT birthplace FROM table_name_92 WHERE birthdate = "march 21, 1979" |
Below is an context that describes a sql 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 (date VARCHAR, road_team VARCHAR, game VARCHAR)
### Question:
What is the Date of Game 5 with Road Team St. Louis?
### Answer:
SELECT date FROM table_name_10 WHERE road_team = "st. louis" AND game = "game 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_47 (week_2 VARCHAR, week_4 VARCHAR)
### Question:
Who was the girl of the week 2 weeks before terri lynn farrow in the same month?
### Answer:
SELECT week_2 FROM table_name_47 WHERE week_4 = "terri lynn farrow" |
Below is an context that describes a 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_1 (pick__number VARCHAR, position VARCHAR)
### Question:
What draft pick is a goaltender?
### Answer:
SELECT pick__number FROM table_2897457_1 WHERE position = "Goaltender" |
Below is an context that describes a sql 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 (district VARCHAR, incumbent VARCHAR)
### Question:
Which district has an incumbent of Sanford Bishop?
### Answer:
SELECT district FROM table_name_92 WHERE incumbent = "sanford bishop" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_32 (directed_by VARCHAR, production_code VARCHAR)
### Question:
tell me the director of the production code ad1d02.
### Answer:
SELECT directed_by FROM table_name_32 WHERE production_code = "ad1d02" |
Below is an context that describes a sql 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 (league_goals VARCHAR, league_cup_goals VARCHAR, scorer VARCHAR)
### Question:
What is the number of league goals when Bill Dearden was the scorer and there was 0 league cup goals?
### Answer:
SELECT league_goals FROM table_name_66 WHERE league_cup_goals = "0" AND scorer = "bill dearden" |
Below is an context that describes a sql 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 (year INTEGER, points VARCHAR, entrant VARCHAR)
### Question:
What was the earliest year that Scuderia Ferrari was an entrant with 0 points?
### Answer:
SELECT MIN(year) FROM table_name_88 WHERE points = "0" AND entrant = "scuderia ferrari" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_96 (county VARCHAR, median_household_income VARCHAR)
### Question:
Which County has a Median household income of $37,230?
### Answer:
SELECT county FROM table_name_96 WHERE median_household_income = "$37,230" |
Below is an context that describes a sql 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 (title VARCHAR, year VARCHAR, platform VARCHAR)
### Question:
Which title has a year prior to 2008 and xbox 360 as the platform?
### Answer:
SELECT title FROM table_name_31 WHERE year < 2008 AND platform = "xbox 360" |
Below is an context that describes a sql 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 (outcome VARCHAR, opponent VARCHAR)
### Question:
What is the outcome of the match with Roger Federer as the opponent?
### Answer:
SELECT outcome FROM table_name_89 WHERE opponent = "roger federer" |
Below is an context that describes a sql 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 (revenues VARCHAR, courtesy_title VARCHAR)
### Question:
What is the Revenues of Ukyo-Daiyu?
### Answer:
SELECT revenues FROM table_name_81 WHERE courtesy_title = "ukyo-daiyu" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE hosting_city (host_city VARCHAR); CREATE TABLE city (city_id VARCHAR)
### Question:
What are the GDP and population of the city that already served as a host more than once?
### Answer:
SELECT t1.gdp, t1.Regional_Population FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city GROUP BY t2.Host_City HAVING COUNT(*) > 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_87 (nhl_team VARCHAR, player VARCHAR)
### Question:
I want the NHL team for wade belak
### Answer:
SELECT nhl_team FROM table_name_87 WHERE player = "wade belak" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the 2011 entry for the row with a 2007 entry of 558?
### Answer:
SELECT 2011 FROM table_name_36 WHERE 2007 = "558" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1140119_5 (date VARCHAR, circuit VARCHAR)
### Question:
What date was the Silverstone circuit driven?
### Answer:
SELECT date FROM table_1140119_5 WHERE circuit = "Silverstone" |
Below is an context that describes a sql 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 (stadium VARCHAR)
### Question:
What is the 2007-08 season at Stadio Silvio Piola?
### Answer:
SELECT 2007 AS _08_season FROM table_name_75 WHERE stadium = "stadio silvio piola" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
what is 2010 when 2009 is w and 2007 is qf?
### Answer:
SELECT 2010 FROM table_name_8 WHERE 2009 = "w" AND 2007 = "qf" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_12 (round INTEGER, position VARCHAR, overall VARCHAR)
### Question:
What round is highest and has a defensive tackle position and overall lower than 282?
### Answer:
SELECT MAX(round) FROM table_name_12 WHERE position = "defensive tackle" AND overall < 282 |
Below is an context that describes a sql 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 (swimsuit INTEGER, average VARCHAR, evening_gown VARCHAR, state VARCHAR)
### Question:
What is the sum of the swimsuit scores from Missouri that have evening gown scores less than 8.77 and average scores less than 8.823?
### Answer:
SELECT SUM(swimsuit) FROM table_name_77 WHERE evening_gown < 8.77 AND state = "missouri" AND average < 8.823 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14288212_1 (team VARCHAR, points_for VARCHAR)
### Question:
How many teams scored exactly 38 points
### Answer:
SELECT COUNT(team) FROM table_14288212_1 WHERE points_for = 38 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_80 (platform_s_ VARCHAR, genre VARCHAR)
### Question:
What's the platform of the genre RPG?
### Answer:
SELECT platform_s_ FROM table_name_80 WHERE genre = "rpg" |
Below is an context that describes a sql 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 (work VARCHAR, year VARCHAR, award VARCHAR)
### Question:
Name the work for years before 2007 that won blockbuster entertainment awards
### Answer:
SELECT work FROM table_name_47 WHERE year < 2007 AND award = "blockbuster entertainment 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 table_name_2 (Id VARCHAR)
### Question:
What is the 2008 for 2009 heartland high tech?
### Answer:
SELECT 2008 FROM table_name_2 WHERE 2009 = "heartland high 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_18 (Id VARCHAR)
### Question:
What was the 2012 result associated with a 2007 finish of 2R and a 2009 of 1R?
### Answer:
SELECT 2012 FROM table_name_18 WHERE 2007 = "2r" AND 2009 = "1r" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24521345_1 (conductor VARCHAR, record_label VARCHAR)
### Question:
Who is the conductor on the Multisonic label?
### Answer:
SELECT conductor FROM table_24521345_1 WHERE record_label = "Multisonic" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19417244_2 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
### Question:
who directed the episode that have 14.59 million viewers
### Answer:
SELECT directed_by FROM table_19417244_2 WHERE us_viewers__millions_ = "14.59" |
Below is an context that describes a sql 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 (method VARCHAR, time VARCHAR)
### Question:
What was the method of the bout lasting 4:15?
### Answer:
SELECT method FROM table_name_82 WHERE time = "4:15" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_43 (outcome VARCHAR, opponent_in_the_final VARCHAR)
### Question:
Which Outcome has an Opponent in the final of simone colombo?
### Answer:
SELECT outcome FROM table_name_43 WHERE opponent_in_the_final = "simone colombo" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341395_33 (candidates VARCHAR, incumbent VARCHAR)
### Question:
Who were the candidates when gregory w. meeks was the incumbent
### Answer:
SELECT candidates FROM table_1341395_33 WHERE incumbent = "Gregory W. Meeks" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25938117_1 (winner VARCHAR, tournament VARCHAR)
### Question:
Name the total number of winners for allianz championship
### Answer:
SELECT COUNT(winner) FROM table_25938117_1 WHERE tournament = "Allianz Championship" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21977627_1 (entrant VARCHAR, driver VARCHAR)
### Question:
How many entrants was yves giraud-cabantous?
### Answer:
SELECT COUNT(entrant) FROM table_21977627_1 WHERE driver = "Yves Giraud-Cabantous" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_61 (date VARCHAR, game VARCHAR)
### Question:
What is the date of game 9?
### Answer:
SELECT date FROM table_name_61 WHERE game = 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_2679061_12 (college_junior_club_team VARCHAR, player VARCHAR)
### Question:
Which school did harold duvall attend?
### Answer:
SELECT college_junior_club_team FROM table_2679061_12 WHERE player = "Harold Duvall" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_80 (year INTEGER, billboard_200_peak VARCHAR, riaa_sales_certification VARCHAR, title VARCHAR)
### Question:
For how many years did the song "Lost Without Your Love" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26?
### Answer:
SELECT SUM(year) FROM table_name_80 WHERE riaa_sales_certification = "gold" AND title = "lost without your love" AND billboard_200_peak > 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_55 (nationality VARCHAR, school_country VARCHAR)
### Question:
What was the nationality of every player that attended Baylor?
### Answer:
SELECT nationality FROM table_name_55 WHERE school_country = "baylor" |
Below is an context that describes a sql 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 (res VARCHAR, record VARCHAR)
### Question:
What was the resolution of the fight when Nate Mohr's record was 8-6?
### Answer:
SELECT res FROM table_name_20 WHERE record = "8-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_12562214_1 (notes VARCHAR, date__from_ VARCHAR)
### Question:
what are the notes for date (from) 12 august 1897?
### Answer:
SELECT notes FROM table_12562214_1 WHERE date__from_ = "12 August 1897" |
Below is an context that describes a sql 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 (silver VARCHAR, notes VARCHAR)
### Question:
What is Silver, when Notes is "6.24km, 23controls"?
### Answer:
SELECT silver FROM table_name_86 WHERE notes = "6.24km, 23controls" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10710364_2 (sex_ratio__rural_ INTEGER)
### Question:
What is the lowest sex ratio in rural areas?
### Answer:
SELECT MIN(sex_ratio__rural_) FROM table_10710364_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_23575917_7 (first_broadcast VARCHAR, lees_team VARCHAR)
### Question:
If the lees team is Clare Balding and Miranda Hart, what is the first broadcast total number?
### Answer:
SELECT COUNT(first_broadcast) FROM table_23575917_7 WHERE lees_team = "Clare Balding and Miranda Hart" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_197446_1 (branch VARCHAR, term_began VARCHAR)
### Question:
What branch was involved when the term began in January 3, 1985?
### Answer:
SELECT branch FROM table_197446_1 WHERE term_began = "January 3, 1985" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16776312_3 (opponent VARCHAR, date VARCHAR)
### Question:
Name the opponent for 12 may 2008
### Answer:
SELECT opponent FROM table_16776312_3 WHERE date = "12 May 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_73 (draws INTEGER, losses VARCHAR, wins VARCHAR)
### Question:
What is the draw when the losses were more than 8 and less than 2 wins?
### Answer:
SELECT MAX(draws) FROM table_name_73 WHERE losses > 8 AND wins < 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_12755786_8 (league INTEGER)
### Question:
what is the least amount in the tournament?
### Answer:
SELECT MIN(league) AS Cup FROM table_12755786_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_13 (date VARCHAR, result VARCHAR)
### Question:
Tell me the date with result of won 1-0
### Answer:
SELECT date FROM table_name_13 WHERE result = "won 1-0" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_22 (byes VARCHAR, draws INTEGER)
### Question:
How many byes when the draws are less than 0?
### Answer:
SELECT COUNT(byes) FROM table_name_22 WHERE draws < 0 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_9 (catalog VARCHAR, date VARCHAR)
### Question:
What is the Catalog with a Date that is march 13, 2002?
### Answer:
SELECT catalog FROM table_name_9 WHERE date = "march 13, 2002" |
Below is an context that describes a sql 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 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
### Question:
Wha is the average number of bronze of hungary, which has less than 1 silver?
### Answer:
SELECT AVG(bronze) FROM table_name_51 WHERE nation = "hungary" AND silver < 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 (application_sharing VARCHAR, web_conferencing VARCHAR)
### Question:
What is Application Sharing, when Web Conferencing is "Web Conferencing"?
### Answer:
SELECT application_sharing FROM table_name_40 WHERE web_conferencing = "web conferencing" |
Below is an context that describes a sql 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 (party VARCHAR, years_in_assembly VARCHAR, name VARCHAR)
### Question:
Which Party has Years in Assembly of 2008–present, and a Name of tom ammiano?
### Answer:
SELECT party FROM table_name_77 WHERE years_in_assembly = "2008–present" AND name = "tom ammiano" |
Below is an context that describes a sql 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 (attendance INTEGER, round VARCHAR, venue VARCHAR)
### Question:
What was the lowest attendance in round r1 at H venue?
### Answer:
SELECT MIN(attendance) FROM table_name_13 WHERE round = "r1" AND venue = "h" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_37 (builder VARCHAR, country VARCHAR, ship VARCHAR)
### Question:
Who was the builder of Brage from Norway?
### Answer:
SELECT builder FROM table_name_37 WHERE country = "norway" AND ship = "brage" |
Below is an context that describes a sql 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 (rank INTEGER, years VARCHAR, apps VARCHAR)
### Question:
What is the sum of rank with years 1996–2012 and apps greater than 340?
### Answer:
SELECT SUM(rank) FROM table_name_15 WHERE years = "1996–2012" AND apps > 340 |
Below is an context that describes a sql 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 VARCHAR, against VARCHAR)
### Question:
What was the date when the against was 3?
### Answer:
SELECT date FROM table_name_35 WHERE against = 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_54 (season_joined_league VARCHAR, seasons_at_this_level VARCHAR)
### Question:
What is the "season joined league" for the club that had 15 seasons at this level?
### Answer:
SELECT season_joined_league FROM table_name_54 WHERE seasons_at_this_level = "15 seasons" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17971449_2 (population__2011_ VARCHAR, country VARCHAR)
### Question:
Name the population 2011 for luxembourg
### Answer:
SELECT population__2011_ FROM table_17971449_2 WHERE country = "Luxembourg" |
Below is an context that describes a sql 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 (mult VARCHAR, part_number_s_ VARCHAR, socket VARCHAR, voltage VARCHAR)
### Question:
Socket of fcbga1088, and a Voltage of 1v, and a Part number(s) of nu80579ez600cnu80579ez600ct is what mult?
### Answer:
SELECT mult FROM table_name_3 WHERE socket = "fcbga1088" AND voltage = "1v" AND part_number_s_ = "nu80579ez600cnu80579ez600ct" |
Below is an context that describes a sql 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 (grid INTEGER, team VARCHAR, laps VARCHAR)
### Question:
What is the average grid number for paul cruickshank racing with less than 27 laps?
### Answer:
SELECT AVG(grid) FROM table_name_40 WHERE team = "paul cruickshank racing" AND laps < 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_89 (date VARCHAR, score VARCHAR)
### Question:
On what date was the score 2–4?
### Answer:
SELECT date FROM table_name_89 WHERE score = "2–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_64 (date VARCHAR, record VARCHAR)
### Question:
What was the date of the game that led to a 4-3 record?
### Answer:
SELECT date FROM table_name_64 WHERE record = "4-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_31 (date VARCHAR, result VARCHAR)
### Question:
What Date has a Result of l 21–34?
### Answer:
SELECT date FROM table_name_31 WHERE result = "l 21–34" |
Below is an context that describes a sql 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 (competition VARCHAR, year VARCHAR, notes VARCHAR)
### Question:
What competition was held earlier than 2007 and has 7434 in the notes field?
### Answer:
SELECT competition FROM table_name_47 WHERE year < 2007 AND notes = "7434" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.