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_27 (result VARCHAR, venue VARCHAR) ### Question: Which result has a Venue of ulsan? ### Answer: SELECT result FROM table_name_27 WHERE venue = "ulsan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE dogs (breed_code VARCHAR, size_code VARCHAR) ### Question: What are all the possible breed type and size type combinations? ### Answer: SELECT DISTINCT breed_code, size_code FROM dogs
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26036389_1 (mdr_no INTEGER, name_of_road VARCHAR) ### Question: What is the MDR number of Rait Charhi Dharamshala? ### Answer: SELECT MIN(mdr_no) FROM table_26036389_1 WHERE name_of_road = "Rait Charhi Dharamshala"
Below is an context that describes a sql 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 (crowd INTEGER, home_team VARCHAR) ### Question: What is the highest crowd number for the home team Richmond? ### Answer: SELECT MAX(crowd) FROM table_name_5 WHERE home_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_28367242_1 (corporate_name VARCHAR, area__km²_ VARCHAR) ### Question: What is the name of the corporation with an area of 15.63 km? ### Answer: SELECT corporate_name FROM table_28367242_1 WHERE area__km²_ = "15.63"
Below is an context that describes a sql 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 (court_rank VARCHAR, revenues VARCHAR, lineage VARCHAR) ### Question: What's the court ranking of 5th son of tadayori and has revenues of 10,000 koku? ### Answer: SELECT court_rank FROM table_name_32 WHERE revenues = "10,000 koku" AND lineage = "5th son of tadayori"
Below is an context that describes a sql 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 (bush_number INTEGER, others_number VARCHAR, bush_percentage VARCHAR) ### Question: What is the average value of Bush# when the value for Others# is greater than 57, and the value for Bush% is 49.2%? ### Answer: SELECT AVG(bush_number) FROM table_name_70 WHERE others_number > 57 AND bush_percentage = "49.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_94 (games VARCHAR, drawn VARCHAR, lost VARCHAR) ### Question: How many Games have a Drawn larger than 0, and a Lost of 1? ### Answer: SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 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_7 (historical_references VARCHAR, run_time VARCHAR) ### Question: What is the topic of the episode that runs 6:07? ### Answer: SELECT historical_references FROM table_name_7 WHERE run_time = "6: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 party (minister VARCHAR, party_name VARCHAR, took_office VARCHAR) ### Question: Show all ministers and parties they belong to in descending order of the time they took office. ### Answer: SELECT minister, party_name FROM party ORDER BY took_office DESC
Below is an context that describes a sql 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 (league_cup INTEGER, championship VARCHAR) ### Question: What is the lowest number of league cups with 4 championships? ### Answer: SELECT MIN(league_cup) FROM table_name_9 WHERE championship = 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_22962745_12 (league_finish VARCHAR, w VARCHAR) ### Question: Name the league finish for w being 11 ### Answer: SELECT league_finish FROM table_22962745_12 WHERE w = 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_27484208_1 (world_rank_by_arwu_ VARCHAR, _2013 VARCHAR, members VARCHAR) ### Question: What was the world rank by ARWU in 2013 of the University of Tübingen? ### Answer: SELECT world_rank_by_arwu_, _2013 FROM table_27484208_1 WHERE members = "University of Tübingen"
Below is an context that describes a sql 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 (planet VARCHAR, sanskrit_word VARCHAR) ### Question: Which Planet has a Sanskrit word of budha? ### Answer: SELECT planet FROM table_name_31 WHERE sanskrit_word = "budha"
Below is an context that describes a sql 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 (collaboration VARCHAR, indication VARCHAR) ### Question: What company collaborated in non-hodgkin lymphoma? ### Answer: SELECT collaboration FROM table_name_63 WHERE indication = "non-hodgkin lymphoma"
Below is an context that describes a sql 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 (weight VARCHAR, name VARCHAR) ### Question: What is Alexandr Elke's Weight? ### Answer: SELECT weight FROM table_name_59 WHERE name = "alexandr elke"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16323766_3 (preliminary_average VARCHAR, state VARCHAR) ### Question: What was the preliminary average for Miss Mississippi? ### Answer: SELECT preliminary_average FROM table_16323766_3 WHERE state = "Mississippi"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_58 (lost INTEGER, points VARCHAR, against VARCHAR) ### Question: What is the highest number lost with more than 29 points and an against less than 19? ### Answer: SELECT MAX(lost) FROM table_name_58 WHERE points > 29 AND against < 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_19 (to_par INTEGER, place VARCHAR, player VARCHAR) ### Question: What is the highest to par of player mark brooks, who has a t2 place? ### Answer: SELECT MAX(to_par) FROM table_name_19 WHERE place = "t2" AND player = "mark brooks"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_41 (acquisition_via VARCHAR, number VARCHAR, season VARCHAR) ### Question: What is the Acquisition that has less than 22, in the 2002 season? ### Answer: SELECT acquisition_via FROM table_name_41 WHERE number < 22 AND season = "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_77 (economic_class VARCHAR, barangay VARCHAR) ### Question: Which Economic Class has a Barangay of imelda bliss village? ### Answer: SELECT economic_class FROM table_name_77 WHERE barangay = "imelda bliss village"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_58 (attendance INTEGER, home_team VARCHAR) ### Question: What was the Attendance when Oxford United was the Home team? ### Answer: SELECT SUM(attendance) FROM table_name_58 WHERE home_team = "oxford 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_87 (date VARCHAR, opponents VARCHAR) ### Question: What date was the game against Royal Antwerp? ### Answer: SELECT date FROM table_name_87 WHERE opponents = "royal antwerp"
Below is an context that describes a sql 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 (year INTEGER, venue VARCHAR) ### Question: What's the average of all years tournaments were hosted in Doha, Qatar? ### Answer: SELECT AVG(year) FROM table_name_81 WHERE venue = "doha, qatar"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23338693_1 (points VARCHAR, series VARCHAR, f_laps VARCHAR) ### Question: How many points have a series of british formula renault 2.0 winter cup and f/laps of 0? ### Answer: SELECT points FROM table_23338693_1 WHERE series = "British Formula Renault 2.0 Winter Cup" AND f_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_70 (agg VARCHAR, team_1 VARCHAR) ### Question: What is the agg when team 1 is Milan? ### Answer: SELECT agg FROM table_name_70 WHERE team_1 = "milan"
Below is an context that describes a sql 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 (date VARCHAR, region VARCHAR) ### Question: Which Date has a Region of france? ### Answer: SELECT date FROM table_name_90 WHERE region = "france"
Below is an context that describes a sql 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 (total INTEGER, second VARCHAR) ### Question: What is the lowest Total, when Second is "55"? ### Answer: SELECT MIN(total) FROM table_name_2 WHERE second = 55
Below is an context that describes a sql 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 (text_symbol VARCHAR, border VARCHAR, type_of_sign VARCHAR) ### Question: Which sign has a red border and a warning sign? ### Answer: SELECT text_symbol FROM table_name_68 WHERE border = "red" AND type_of_sign = "warning"
Below is an context that describes a sql 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 (label VARCHAR, year INTEGER) ### Question: What label had the album after 1978? ### Answer: SELECT label FROM table_name_70 WHERE 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_6 (goals INTEGER, nat VARCHAR, ends VARCHAR) ### Question: What is the highest goal for a GEO nat., that ended after 2010? ### Answer: SELECT MAX(goals) FROM table_name_6 WHERE nat = "geo" AND ends > 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_149330_1 (change_in_seat VARCHAR, _percentage_of_votes VARCHAR) ### Question: What was the number of seat changes when the % of votes was 23.75? ### Answer: SELECT change_in_seat FROM table_149330_1 WHERE _percentage_of_votes = "23.75"
Below is an context that describes a sql 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 (cycle INTEGER, number_of_contestants VARCHAR, premiere_date VARCHAR) ### Question: What is the highest Cycle, when the Number of Constestants is 11, and when Premiere Date is September 3, 2012? ### Answer: SELECT MAX(cycle) FROM table_name_57 WHERE number_of_contestants = "11" AND premiere_date = "september 3, 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_77 (score VARCHAR, money___$__ VARCHAR) ### Question: Which score has a prize of $400? ### Answer: SELECT score FROM table_name_77 WHERE money___$__ = 400
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1672976_6 (television VARCHAR, time VARCHAR) ### Question: What station aired a game at 9:00pm? ### Answer: SELECT television FROM table_1672976_6 WHERE time = "9:00PM"
Below is an context that describes a sql 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 (location VARCHAR, opponent VARCHAR) ### Question: What was the location where the opponent was Jae Young Kim? ### Answer: SELECT location FROM table_name_9 WHERE opponent = "jae young kim"
Below is an context that describes a sql 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 (nation VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: Which country had 1 Bronze, 1 Silver, with a total of 3 medals? ### Answer: SELECT nation FROM table_name_10 WHERE bronze = 1 AND total = 3 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_52 (decile INTEGER, area VARCHAR, roll VARCHAR) ### Question: Can you tell me the lowest Decile that has the Area of matakohe, and the Roll larger than 86? ### Answer: SELECT MIN(decile) FROM table_name_52 WHERE area = "matakohe" AND roll > 86
Below is an context that describes a sql 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 (series_leader VARCHAR, date VARCHAR) ### Question: What is the Series leader with a Date that is october 9? ### Answer: SELECT series_leader FROM table_name_93 WHERE date = "october 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_37 (lner_class VARCHAR, passed_to_lner VARCHAR, date_introduced VARCHAR) ### Question: Which LNER class has been Passed to LNER larger than 3 and a introduced in 1895–98? ### Answer: SELECT lner_class FROM table_name_37 WHERE passed_to_lner > 3 AND date_introduced = "1895–98"
Below is an context that describes a sql 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 (overall INTEGER, round VARCHAR) ### Question: What is the overall pick number for the player who was picked on round 8? ### Answer: SELECT MIN(overall) FROM table_name_91 WHERE round = 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 candidate (people_id VARCHAR, support_rate INTEGER, oppose_rate VARCHAR); CREATE TABLE people (name VARCHAR, people_id VARCHAR) ### Question: Find the names of the candidates whose support percentage is lower than their oppose rate. ### Answer: SELECT t1.name FROM people AS t1 JOIN candidate AS t2 ON t1.people_id = t2.people_id WHERE t2.support_rate < t2.oppose_rate
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_22 (nation VARCHAR, places VARCHAR) ### Question: What Nation Placed 122.5? ### Answer: SELECT nation FROM table_name_22 WHERE places = 122.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_27782699_3 (manner_of_departure VARCHAR, replaced_by VARCHAR) ### Question: How did the manager who was replaced by Jakob Michelsen depart? ### Answer: SELECT manner_of_departure FROM table_27782699_3 WHERE replaced_by = "Jakob Michelsen"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27279050_3 (last_current_driver_s__3_november_2013 VARCHAR, first_driver_s_ VARCHAR) ### Question: Who is the last/current driver(s) 3 november 2013 when first driver(s) is marlon stöckinger , kotaro sakurai ( 2011 )? ### Answer: SELECT last_current_driver_s__3_november_2013 FROM table_27279050_3 WHERE first_driver_s_ = "Marlon Stöckinger , Kotaro Sakurai ( 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_name_28 (artist VARCHAR, place VARCHAR) ### Question: What is the Artist of the Song with a Place of withdrawn? ### Answer: SELECT artist FROM table_name_28 WHERE place = "withdrawn"
Below is an context that describes a sql 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 (operates VARCHAR, terminus VARCHAR, name VARCHAR) ### Question: Where does the Bayou Blvd./12th Avenue route that has a terminus at the downtown transit center operate? ### Answer: SELECT operates FROM table_name_5 WHERE terminus = "downtown transit center" AND name = "bayou blvd./12th avenue"
Below is an context that describes a sql 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 (series_11 VARCHAR, series_1 VARCHAR) ### Question: Who in series 11 corresponds to Peter Jones in series 1? ### Answer: SELECT series_11 FROM table_name_51 WHERE series_1 = "peter jones"
Below is an context that describes a 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_40 (party VARCHAR, incumbent VARCHAR) ### Question: what is the party with the incumbent jim demint? ### Answer: SELECT party FROM table_1341423_40 WHERE incumbent = "Jim DeMint"
Below is an context that describes a sql 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 (drawn VARCHAR, points_for VARCHAR) ### Question: What is the drawn when there are 402 points? ### Answer: SELECT drawn FROM table_name_85 WHERE points_for = "402"
Below is an context that describes a sql 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 (date VARCHAR, outcome VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the date of the match with a winner outcome and jim courier as the opponent in the final? ### Answer: SELECT date FROM table_name_27 WHERE outcome = "winner" AND opponent_in_the_final = "jim courier"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_94 (week INTEGER, opponent VARCHAR) ### Question: What is the lowest week number where they played against the Detroit Lions? ### Answer: SELECT MIN(week) FROM table_name_94 WHERE opponent = "detroit lions"
Below is an context that describes a sql 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 (team VARCHAR, name VARCHAR, rebounds VARCHAR, games VARCHAR) ### Question: In game 34 Curtis Borchardt played on which team with less than 275 rebounds? ### Answer: SELECT team FROM table_name_70 WHERE rebounds < 275 AND games < 34 AND name = "curtis borchardt"
Below is an context that describes a sql 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 (points VARCHAR, driver VARCHAR) ### Question: How many points does driver kosuke matsuura have? ### Answer: SELECT points FROM table_name_17 WHERE driver = "kosuke matsuura"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_29 (opponents_in_final VARCHAR, date VARCHAR) ### Question: Who were the opponents in the final on 9 January 1994? ### Answer: SELECT opponents_in_final FROM table_name_29 WHERE date = "9 january 1994"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342426_5 (district VARCHAR, incumbent VARCHAR) ### Question: Name the district for william j. driver ### Answer: SELECT district FROM table_1342426_5 WHERE incumbent = "William J. Driver"
Below is an context that describes a sql 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 (venue VARCHAR, weight__kg_ VARCHAR, result VARCHAR) ### Question: What venue has a weight (kg) greater than 55, and won as the result? ### Answer: SELECT venue FROM table_name_64 WHERE weight__kg_ > 55 AND result = "won"
Below is an context that describes a sql 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 (Id VARCHAR) ### Question: What is 1987, when 1986 is "1R"? ### Answer: SELECT 1987 FROM table_name_15 WHERE 1986 = "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_name_55 (goals_against INTEGER, played INTEGER) ### Question: What is the average goals against when there are more than 42 played? ### Answer: SELECT AVG(goals_against) FROM table_name_55 WHERE played > 42
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_16 (goals VARCHAR, ratio VARCHAR) ### Question: Which Goals have a Ratio of 0.29? ### Answer: SELECT goals FROM table_name_16 WHERE ratio = 0.29
Below is an context that describes a sql 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 (marriage VARCHAR, became_dauphine VARCHAR) ### Question: when was the marriage when became dauphine is 31 august 1412? ### Answer: SELECT marriage FROM table_name_79 WHERE became_dauphine = "31 august 1412"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26160007_1 (total_trade VARCHAR, exports VARCHAR) ### Question: Where the number of exports are 6,099.06, what is the total trade? ### Answer: SELECT total_trade FROM table_26160007_1 WHERE exports = "6,099.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_name_79 (word_form VARCHAR, ala_lc VARCHAR) ### Question: What is the word form for the ALA-LC transliteration of muay bân? ### Answer: SELECT word_form FROM table_name_79 WHERE ala_lc = "muay bân"
Below is an context that describes a sql 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 (sn_sb___percentage_ VARCHAR, liquid_at__°c_ VARCHAR) ### Question: What is the Sn/Sb percentage that is liquid at 258 degrees C? ### Answer: SELECT sn_sb___percentage_ FROM table_name_4 WHERE liquid_at__°c_ = "258"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_94 (goal_diff INTEGER, losses VARCHAR, wins VARCHAR) ### Question: Which team has a Losses value larger than 1 and a Wins value smaller than 0? ### Answer: SELECT SUM(goal_diff) FROM table_name_94 WHERE losses > 1 AND wins < 0
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_15 (name VARCHAR, bodyweight VARCHAR) ### Question: Which person has a bodyweight of 73.6? ### Answer: SELECT name FROM table_name_15 WHERE bodyweight = 73.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_81 (silver VARCHAR, bronze VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: What is number of silver for the country with more than 0 gold, rank of 14, and more than 4 bronze? ### Answer: SELECT COUNT(silver) FROM table_name_81 WHERE gold > 0 AND rank = "14" AND bronze > 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_25794010_1 (name VARCHAR, county VARCHAR) ### Question: Name the name for desha ### Answer: SELECT name FROM table_25794010_1 WHERE county = "Desha"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_16 (ipsos_5_30_09 VARCHAR, bva_6_1_09 VARCHAR) ### Question: When BVA was 3%, what was the Ipsos? ### Answer: SELECT ipsos_5_30_09 FROM table_name_16 WHERE bva_6_1_09 = "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_87 (genbank_id VARCHAR) ### Question: Which 3’UTR sequence has the GenBank ID at hq021440? ### Answer: SELECT 3 AS ’utr_sequence FROM table_name_87 WHERE genbank_id = "hq021440"
Below is an context that describes a sql 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 (opponent VARCHAR, loss VARCHAR) ### Question: Which opponent has a loss of erickson (8-19)? ### Answer: SELECT opponent FROM table_name_46 WHERE loss = "erickson (8-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_80 (laps INTEGER, year VARCHAR) ### Question: How many laps were in 1958? ### Answer: SELECT SUM(laps) FROM table_name_80 WHERE year = "1958"
Below is an context that describes a sql 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 (money___ INTEGER, to_par VARCHAR, score VARCHAR) ### Question: Which money is the highest one that has a To par of –1, and a Score of 73-70-73-71=287? ### Answer: SELECT MAX(money___) AS $__ FROM table_name_56 WHERE to_par = "–1" AND score = 73 - 70 - 73 - 71 = 287
Below is an context that describes a sql 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 (score VARCHAR, year VARCHAR, tournament VARCHAR) ### Question: What is Score, when Year is before 2007, and when Tournament is "Sydney"? ### Answer: SELECT score FROM table_name_88 WHERE year < 2007 AND tournament = "sydney"
Below is an context that describes a sql 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 (opponent VARCHAR, date VARCHAR) ### Question: Which team did they play on September 19? ### Answer: SELECT opponent FROM table_name_66 WHERE date = "september 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_65 (song VARCHAR, draw VARCHAR, place VARCHAR) ### Question: What song has a draw more than 4 in 1st place? ### Answer: SELECT song FROM table_name_65 WHERE draw > 4 AND place = "1st"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1226250_1 (bleeding_time VARCHAR, condition VARCHAR) ### Question: What kind of bleeding does aspirin cause? ### Answer: SELECT bleeding_time FROM table_1226250_1 WHERE condition = "Aspirin"
Below is an context that describes a sql 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 (nominating_festival VARCHAR, country VARCHAR) ### Question: Which nominating festival did United Kingdom enter? ### Answer: SELECT nominating_festival FROM table_name_72 WHERE country = "united kingdom"
Below is an context that describes a sql 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 (successes INTEGER, launches VARCHAR, failures VARCHAR) ### Question: What is the highest number of successful launches associated with over 1 launch and under 0 fails? ### Answer: SELECT MAX(successes) FROM table_name_36 WHERE launches > 1 AND failures < 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_13 (district VARCHAR, constituency_number VARCHAR) ### Question: What is the district with 79 constituency number? ### Answer: SELECT district FROM table_name_13 WHERE constituency_number = "79"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342249_13 (candidates VARCHAR, incumbent VARCHAR) ### Question: Who were the candidates when Noah M. Mason was incumbent? ### Answer: SELECT candidates FROM table_1342249_13 WHERE incumbent = "Noah M. Mason"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_43 (order_sung VARCHAR, artist VARCHAR) ### Question: What order was the performance of a Richard Marx song? ### Answer: SELECT order_sung FROM table_name_43 WHERE artist = "richard marx"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_206217_2 (epoch__utc_ VARCHAR, periselene__km_ VARCHAR) ### Question: What is every entry for epoch if periselene is 2,291.250? ### Answer: SELECT epoch__utc_ FROM table_206217_2 WHERE periselene__km_ = "2,291.250"
Below is an context that describes a sql 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 (team VARCHAR, arena VARCHAR) ### Question: What team is in the dhl-höllin arena? ### Answer: SELECT team FROM table_name_5 WHERE arena = "dhl-höllin"
Below is an context that describes a sql 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 (date VARCHAR, region VARCHAR, catalog VARCHAR) ### Question: What Date has the Region Europe and a Catalog of 74321 45851 2? ### Answer: SELECT date FROM table_name_33 WHERE region = "europe" AND catalog = "74321 45851 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_15 (against INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR) ### Question: How many against for the Moyston-Willaura team with 4 losses and fewer than 2 byes? ### Answer: SELECT MAX(against) FROM table_name_15 WHERE losses = 4 AND mininera_dfl = "moyston-willaura" AND byes < 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_90 (base_pairs VARCHAR, strain VARCHAR) ### Question: How many base pairs are there in the tohamai strain? ### Answer: SELECT base_pairs FROM table_name_90 WHERE strain = "tohamai"
Below is an context that describes a sql 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 (year VARCHAR, team VARCHAR, pos VARCHAR) ### Question: How many years was Audi Sport Team Joest in 3rd position? ### Answer: SELECT COUNT(year) FROM table_name_8 WHERE team = "audi sport team joest" AND pos = "3rd"
Below is an context that describes a sql 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 (total VARCHAR, player VARCHAR) ### Question: What is the total for player karrie webb? ### Answer: SELECT COUNT(total) FROM table_name_1 WHERE player = "karrie webb"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26458137_2 (partner VARCHAR, opponents_in_the_final VARCHAR) ### Question: Who is the partner when the opponents in the final is stephanie dubois olga savchuk? ### Answer: SELECT partner FROM table_26458137_2 WHERE opponents_in_the_final = "Stephanie Dubois Olga Savchuk"
Below is an context that describes a sql 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 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What's the Score with a Home of Scotland and Date of 24 February? ### Answer: SELECT score FROM table_name_12 WHERE home = "scotland" AND date = "24 february"
Below is an context that describes a sql 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 (highest_rank VARCHAR, total VARCHAR, name VARCHAR) ### Question: What rank is Takatōriki having less than 30 total? ### Answer: SELECT highest_rank FROM table_name_60 WHERE total < 30 AND name = "takatōriki"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13258851_2 (date VARCHAR, opponent VARCHAR) ### Question: On what date was the game against San Diego Chargers played? ### Answer: SELECT date FROM table_13258851_2 WHERE opponent = "San Diego Chargers"
Below is an context that describes a sql 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 (name VARCHAR, rank VARCHAR) ### Question: What is the Name of the Players with a Rank of 18? ### Answer: SELECT name FROM table_name_67 WHERE rank = 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_256286_19 (meas_num INTEGER, _percentage_yes VARCHAR) ### Question: What is the lowest measure number for the measure with a 33.57% yes percentage? ### Answer: SELECT MIN(meas_num) FROM table_256286_19 WHERE _percentage_yes = "33.57%"
Below is an context that describes a sql 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 (top_10 INTEGER, cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR) ### Question: What is the best top-10 result when events are fewer than 39, top-5 is 1 and more than 5 cuts are made? ### Answer: SELECT MAX(top_10) FROM table_name_89 WHERE events < 39 AND top_5 = 1 AND cuts_made > 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_26 (Id VARCHAR) ### Question: Which car won the same award in 2001 that the bmw m67d39 3.9l v8 e38 740d won in 1999? ### Answer: SELECT 2001 FROM table_name_26 WHERE 1999 = "bmw m67d39 3.9l v8 e38 740d"
Below is an context that describes a sql 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 (placings INTEGER, name VARCHAR, points VARCHAR) ### Question: What is the highest placing for marie mcneil / robert mccall, with less than 168.58? ### Answer: SELECT MAX(placings) FROM table_name_82 WHERE name = "marie mcneil / robert mccall" AND points < 168.58
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25519358_1 (hypotenuse_0_c VARCHAR, vertices VARCHAR) ### Question: Name the hypotenuse for vertices 月山泛 δymf ### Answer: SELECT hypotenuse_0_c FROM table_25519358_1 WHERE vertices = "月山泛 ΔYMF"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21321804_3 (cfl_team VARCHAR, college VARCHAR) ### Question: What team does the player who went to Nebraska play for? ### Answer: SELECT cfl_team FROM table_21321804_3 WHERE college = "Nebraska"