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_74 (february VARCHAR, opponent VARCHAR) ### Question: What is February, when Opponent is "Montreal Canadiens"? ### Answer: SELECT february FROM table_name_74 WHERE opponent = "montreal canadiens"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_14 (tournament VARCHAR, runner_s__up VARCHAR) ### Question: What tournament that Fernando Roca is the runner-up? ### Answer: SELECT tournament FROM table_name_14 WHERE runner_s__up = "fernando roca"
Below is an context that describes a sql 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 (English VARCHAR, winning_song VARCHAR) ### Question: Which winning song was sung by aku tetap milikmu? ### Answer: SELECT WINNING_SONG(English AS Title) FROM table_name_65 WHERE winning_song = "aku tetap milikmu"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE member (Name VARCHAR, Country VARCHAR) ### Question: What are the names and countries of members? ### Answer: SELECT Name, Country FROM member
Below is an context that describes a sql 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 (lane VARCHAR, time VARCHAR, rank VARCHAR) ### Question: How many Lanes have a rank higher than 3 with a time of 2:08.11? ### Answer: SELECT COUNT(lane) FROM table_name_72 WHERE time = "2:08.11" AND rank > 3
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_30 (record VARCHAR, res VARCHAR, event VARCHAR) ### Question: Which Record has the Res of win with the Event of extreme fighting 1? ### Answer: SELECT record FROM table_name_30 WHERE res = "win" AND event = "extreme fighting 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 Lessons (staff_id VARCHAR); CREATE TABLE Staff (first_name VARCHAR); CREATE TABLE Staff (first_name VARCHAR, staff_id VARCHAR) ### Question: What is the first name of the staff who did not give any lesson? ### Answer: SELECT first_name FROM Staff EXCEPT SELECT T2.first_name FROM Lessons AS T1 JOIN Staff AS T2 ON T1.staff_id = T2.staff_id
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26139405_1 (title VARCHAR, viewers__in_millions_ VARCHAR) ### Question: What is the name of the episode that had 8.51 million viewers? ### Answer: SELECT title FROM table_26139405_1 WHERE viewers__in_millions_ = "8.51"
Below is an context that describes a sql 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 (year__ceremony_ VARCHAR, director VARCHAR) ### Question: What is Year (Ceremony), when Director is "Wang Siu-Di"? ### Answer: SELECT year__ceremony_ FROM table_name_66 WHERE director = "wang siu-di"
Below is an context that describes a sql 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 (ensemble VARCHAR, silver_medals INTEGER) ### Question: Name the ensemble with silver medals more than 1 ### Answer: SELECT ensemble FROM table_name_21 WHERE silver_medals > 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_26448179_4 (production_code INTEGER) ### Question: What is the highest production code? ### Answer: SELECT MAX(production_code) FROM table_26448179_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_11 (performance VARCHAR, season VARCHAR, place VARCHAR) ### Question: What was the performance length of the 1999 season in bydgoszcz, poland? ### Answer: SELECT performance FROM table_name_11 WHERE season = 1999 AND place = "bydgoszcz, poland"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_29546030_2 (skip__club_ VARCHAR, pa VARCHAR) ### Question: Which skip (club) had 28 PA? ### Answer: SELECT skip__club_ FROM table_29546030_2 WHERE pa = 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_68 (crowd INTEGER, away_team VARCHAR) ### Question: In games where st kilda was the away team, what was the smallest crowd? ### Answer: SELECT MIN(crowd) FROM table_name_68 WHERE away_team = "st kilda"
Below is an context that describes a sql 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 (game INTEGER, points INTEGER) ### Question: What is the mean game number when the points scored were more than 99? ### Answer: SELECT AVG(game) FROM table_name_73 WHERE points > 99
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22546460_4 (best_male_mc VARCHAR, best_male_lyricist VARCHAR) ### Question: Who was the Best Male MC if Best Album won the Best Male Lyricist? ### Answer: SELECT best_male_mc FROM table_22546460_4 WHERE best_male_lyricist = "Best Album"
Below is an context that describes a sql 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 (nebraska VARCHAR, year VARCHAR) ### Question: Which Nebraska has 2004 year? ### Answer: SELECT nebraska FROM table_name_25 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_27722734_7 (date VARCHAR, team VARCHAR) ### Question: Name the date for washington ### Answer: SELECT date FROM table_27722734_7 WHERE team = "Washington"
Below is an context that describes a sql 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 (location VARCHAR, date VARCHAR) ### Question: What is the location of the race on 11 November? ### Answer: SELECT location FROM table_name_14 WHERE date = "11 november"
Below is an context that describes a sql 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 (bronze VARCHAR, nation VARCHAR, silver VARCHAR) ### Question: The Soviet Union has won more than 2 Silver, but how many Bronzes? ### Answer: SELECT COUNT(bronze) FROM table_name_44 WHERE nation = "soviet union" AND silver > 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_61 (sample_size VARCHAR, poll_source VARCHAR, date_s__administered VARCHAR) ### Question: How many people participated in the Rasmussen Reports poll on October 13, 2010? ### Answer: SELECT sample_size FROM table_name_61 WHERE poll_source = "rasmussen reports" AND date_s__administered = "october 13, 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_46 (team_1 VARCHAR) ### Question: What is the 2nd leg that Team 1 is Union Berlin? ### Answer: SELECT 2 AS nd_leg FROM table_name_46 WHERE team_1 = "union berlin"
Below is an context that describes a sql 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 (week INTEGER, result VARCHAR, attendance VARCHAR) ### Question: Which Week has a Result of l 10–30, and an Attendance larger than 57,312? ### Answer: SELECT AVG(week) FROM table_name_84 WHERE result = "l 10–30" AND attendance > 57 OFFSET 312
Below is an context that describes a sql 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 (result VARCHAR, venue VARCHAR, date VARCHAR) ### Question: Tell me the result for lincoln financial field december 11, 2005 ### Answer: SELECT result FROM table_name_90 WHERE venue = "lincoln financial field" AND date = "december 11, 2005"
Below is an context that describes a sql 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 (drawn VARCHAR, played VARCHAR, club VARCHAR) ### Question: Which Drawn has a Played of 20, and a Club of rhigos rfc? ### Answer: SELECT drawn FROM table_name_78 WHERE played = "20" AND club = "rhigos rfc"
Below is an context that describes a sql 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 (date VARCHAR, opponents_in_the_final VARCHAR) ### Question: Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final? ### Answer: SELECT date FROM table_name_20 WHERE opponents_in_the_final = "claire de gubernatis alexandra dulgheru"
Below is an context that describes a sql 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 (tries_against VARCHAR, points_against VARCHAR) ### Question: How many tries against were there when there was 961 points against? ### Answer: SELECT tries_against FROM table_name_29 WHERE points_against = "961"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1108394_47 (brooklyn VARCHAR, manhattan VARCHAR) ### Question: How many votes in Brooklyn were won by the candidate who won 321 votes in Manhattan? ### Answer: SELECT brooklyn FROM table_1108394_47 WHERE manhattan = "321"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26460435_5 (heir VARCHAR, monarch VARCHAR) ### Question: Who was the heir when the monarch was Wareru? ### Answer: SELECT heir FROM table_26460435_5 WHERE monarch = "Wareru"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR) ### Question: When Ryan Anderson won the mountains classification, and Michael Rogers won the general classification, who won the sprint classification? ### Answer: SELECT sprint_classification FROM table_25055040_22 WHERE mountains_classification = "Ryan Anderson" AND general_classification = "Michael Rogers"
Below is an context that describes a sql 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 (standard_name VARCHAR, version VARCHAR, downstream_rate VARCHAR) ### Question: What's the standard name with an ADSL2 version and a 01.5 1.5 mbit/s downstream rate? ### Answer: SELECT standard_name FROM table_name_49 WHERE version = "adsl2" AND downstream_rate = "01.5 1.5 mbit/s"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_55 (score VARCHAR, set_3 VARCHAR) ### Question: What was the overall score when the score for set 3 is 21–25? ### Answer: SELECT score FROM table_name_55 WHERE set_3 = "21–25"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, english_short_name__upper_lower_case_ VARCHAR) ### Question: What is the Alpha 2 code for Papua New Guinea? ### Answer: SELECT alpha_2_code FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = "Papua New Guinea"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE furniture_manufacte (Furniture_ID VARCHAR, Price_in_Dollar INTEGER); CREATE TABLE furniture (name VARCHAR, Furniture_ID VARCHAR); CREATE TABLE furniture_manufacte (Price_in_Dollar INTEGER) ### Question: Find the names of furnitures whose prices are lower than the highest price. ### Answer: SELECT t1.name FROM furniture AS t1 JOIN furniture_manufacte AS t2 ON t1.Furniture_ID = t2.Furniture_ID WHERE t2.Price_in_Dollar < (SELECT MAX(Price_in_Dollar) FROM furniture_manufacte)
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11734041_10 (player VARCHAR, height_in_ft VARCHAR) ### Question: What are all the names of the players who are 7-0 tall? ### Answer: SELECT player FROM table_11734041_10 WHERE height_in_ft = "7-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_46 (event VARCHAR, opponent VARCHAR) ### Question: Which event was the opponent jose carlos oliveira? ### Answer: SELECT event FROM table_name_46 WHERE opponent = "jose carlos oliveira"
Below is an context that describes a sql 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 (release_date VARCHAR, title VARCHAR, series VARCHAR, director VARCHAR, production_number VARCHAR) ### Question: What date was Apes of Wrath written by Friz Freleng, production number higher than 1496 from series mm released? ### Answer: SELECT release_date FROM table_name_37 WHERE director = "friz freleng" AND production_number > 1496 AND series = "mm" AND title = "apes of wrath"
Below is an context that describes a sql 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 (points INTEGER, engine VARCHAR, team VARCHAR) ### Question: What are the average points for the Project Indy team that has the Ford xb engine? ### Answer: SELECT AVG(points) FROM table_name_42 WHERE engine = "ford xb" AND team = "project indy"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE student (lname VARCHAR, sex VARCHAR, city_code VARCHAR, age VARCHAR) ### Question: Find the last name of students who is either female (sex is F) and living in the city of code BAL or male (sex is M) and in age of below 20. ### Answer: SELECT lname FROM student WHERE sex = 'F' AND city_code = 'BAL' UNION SELECT lname FROM student WHERE sex = 'M' AND age < 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 (class VARCHAR, city_of_license VARCHAR) ### Question: What is the Class where City of license is lake oconee, ga? ### Answer: SELECT class FROM table_name_84 WHERE city_of_license = "lake oconee, ga"
Below is an context that describes a sql 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 (month_ VARCHAR, _year VARCHAR, title VARCHAR) ### Question: Which month and year held the Bolivia Special title? ### Answer: SELECT month_ & _year FROM table_name_18 WHERE title = "bolivia special"
Below is an context that describes a sql 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 (pitcher VARCHAR, date VARCHAR) ### Question: Who was the pitcher on June 8, 1961? ### Answer: SELECT pitcher FROM table_name_88 WHERE date = "june 8, 1961"
Below is an context that describes a sql 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 (brigade VARCHAR, type VARCHAR, tankers VARCHAR) ### Question: What is the Brigade, when the Type is Rural, and when the value for Tankers is 1? ### Answer: SELECT brigade FROM table_name_10 WHERE type = "rural" AND tankers = 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_28730873_2 (charity VARCHAR, occupation VARCHAR) ### Question: What is the charity for the celebrity with an occupation title of actor and singer? ### Answer: SELECT charity FROM table_28730873_2 WHERE occupation = "Actor and Singer"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE perpetrator (Date VARCHAR, People_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR, Height VARCHAR) ### Question: Show the date of the tallest perpetrator. ### Answer: SELECT T2.Date FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height 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_14 (frequency VARCHAR, format VARCHAR) ### Question: What is the frequency of the soft adult contemporary stations? ### Answer: SELECT frequency FROM table_name_14 WHERE format = "soft adult contemporary"
Below is an context that describes a sql 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 (time VARCHAR, location VARCHAR) ### Question: What is the time for Moscow, Russia? ### Answer: SELECT time FROM table_name_62 WHERE location = "moscow, russia"
Below is an context that describes a sql 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 (match VARCHAR, player VARCHAR) ### Question: What match has Clem Hill (sa) as the player? ### Answer: SELECT match FROM table_name_9 WHERE player = "clem hill (sa)"
Below is an context that describes a sql 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 (standalone VARCHAR, console VARCHAR) ### Question: What is the Standalone in the year when Space Invaders is the Console? ### Answer: SELECT standalone FROM table_name_43 WHERE console = "space invaders"
Below is an context that describes a 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_32 (district VARCHAR, incumbent VARCHAR) ### Question: Name the district for carolyn mccarthy ### Answer: SELECT district FROM table_1341423_32 WHERE incumbent = "Carolyn McCarthy"
Below is an context that describes a sql 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 (record VARCHAR, loss VARCHAR) ### Question: What was the record at the game that had a loss of Huffman (6–18)? ### Answer: SELECT record FROM table_name_49 WHERE loss = "huffman (6–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_261931_2 (enrollment VARCHAR, location VARCHAR) ### Question: What is the enrollment at the institution in New London, Connecticut? ### Answer: SELECT enrollment FROM table_261931_2 WHERE location = "New London, Connecticut"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR) ### Question: Who was the home team at the game held at Princes Park? ### Answer: SELECT home_team FROM table_name_76 WHERE venue = "princes park"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_89 (opponent VARCHAR, h_a_n VARCHAR, score VARCHAR) ### Question: What is the Opponent of the game with a H/A/N of H and Score of 120-99? ### Answer: SELECT opponent FROM table_name_89 WHERE h_a_n = "h" AND score = "120-99"
Below is an context that describes a sql 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 (role VARCHAR, notes VARCHAR, year VARCHAR) ### Question: what is the name of the role that has co-protagonist in the notes field and the years of 2008-2009? ### Answer: SELECT role FROM table_name_8 WHERE notes = "co-protagonist" AND year = "2008-2009"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_11 (females VARCHAR, language VARCHAR) ### Question: How many females speak Ukrainian? ### Answer: SELECT females FROM table_name_11 WHERE language = "ukrainian"
Below is an context that describes a sql 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 (distance VARCHAR, athlete VARCHAR) ### Question: What is Distance, when Athlete is "Irving Saladino"? ### Answer: SELECT distance FROM table_name_57 WHERE athlete = "irving saladino"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE performance (Date VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Member_ID VARCHAR, Role VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR) ### Question: Show the dates of performances with attending members whose roles are "Violin". ### Answer: SELECT T3.Date FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID WHERE T2.Role = "Violin"
Below is an context that describes a sql 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 (prom__m_ INTEGER, height__m_ VARCHAR, class VARCHAR, peak VARCHAR) ### Question: Tell me the lowest prom for class of hewitt and peak of cushat law and height more than 615 ### Answer: SELECT MIN(prom__m_) FROM table_name_62 WHERE class = "hewitt" AND peak = "cushat law" AND height__m_ > 615
Below is an context that describes a sql 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 (silver VARCHAR, rank VARCHAR, bronze VARCHAR) ### Question: How much Silver has a Rank of 4, and a Bronze smaller than 12? ### Answer: SELECT COUNT(silver) FROM table_name_36 WHERE rank = "4" AND bronze < 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_12584173_1 (population__stanthorpe_ INTEGER) ### Question: What is the maximum population size in the town of Stanthorpe? ### Answer: SELECT MAX(population__stanthorpe_) FROM table_12584173_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_2 (score VARCHAR, place VARCHAR) ### Question: How many scores have a Place of t5? ### Answer: SELECT COUNT(score) FROM table_name_2 WHERE place = "t5"
Below is an context that describes a sql 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 (series VARCHAR, season INTEGER) ### Question: Which series has a season prior to 2009? ### Answer: SELECT series FROM table_name_46 WHERE season < 2009
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_11 (silver VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR) ### Question: What is the total number of silvers associated with 3 bronzes, a total over 6, and a rank of 3? ### Answer: SELECT COUNT(silver) FROM table_name_11 WHERE bronze = "3" AND rank = "3" AND total > 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_12547903_3 (callsign VARCHAR, location VARCHAR) ### Question: What was the callsign in Zamboanga? ### Answer: SELECT callsign FROM table_12547903_3 WHERE location = "Zamboanga"
Below is an context that describes a sql 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 (superlative VARCHAR, record_set VARCHAR) ### Question: What Superlative had a record set of 12 nominations? ### Answer: SELECT superlative FROM table_name_23 WHERE record_set = "12 nominations"
Below is an context that describes a sql 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 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR) ### Question: What is the sum of Evening Gown scores where the swimsuit score is higher than 9.4 and the average score is lower than 9.733? ### Answer: SELECT SUM(evening_gown) FROM table_name_88 WHERE swimsuit > 9.4 AND average < 9.733
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11621747_1 (tournament VARCHAR) ### Question: How many prizes were there at the transamerica? ### Answer: SELECT COUNT(1 AS st_prize__) AS $__ FROM table_11621747_1 WHERE tournament = "The Transamerica"
Below is an context that describes a sql 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 (label VARCHAR, region VARCHAR) ### Question: What is the label from the Netherlands? ### Answer: SELECT label FROM table_name_54 WHERE region = "netherlands"
Below is an context that describes a sql 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 (opponent VARCHAR, record VARCHAR) ### Question: Who is the opponent of the game that had a record of 24-26-4? ### Answer: SELECT opponent FROM table_name_50 WHERE record = "24-26-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_1473672_6 (nhl_team VARCHAR, player VARCHAR) ### Question: What NHL team drafted Rob Palmer? ### Answer: SELECT nhl_team FROM table_1473672_6 WHERE player = "Rob Palmer"
Below is an context that describes a sql 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 (home_team VARCHAR, away_team VARCHAR) ### Question: What home score has an Away team of fitzroy? ### Answer: SELECT home_team AS score FROM table_name_82 WHERE away_team = "fitzroy"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_38 (eric_johnson VARCHAR, karen_handel VARCHAR) ### Question: What is Eric Johnson at in the poll where Karen Handel is at 12%? ### Answer: SELECT eric_johnson FROM table_name_38 WHERE karen_handel = "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_40 (played INTEGER, against INTEGER) ### Question: What average played has an against less than 15? ### Answer: SELECT AVG(played) FROM table_name_40 WHERE against < 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_61 (attendance INTEGER, game_site VARCHAR) ### Question: What is the highest attendance rate at Milwaukee County Stadium? ### Answer: SELECT MAX(attendance) FROM table_name_61 WHERE game_site = "milwaukee county stadium"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_97 (opponent VARCHAR, game_site VARCHAR) ### Question: What was the Opponent at Arrowhead Stadium? ### Answer: SELECT opponent FROM table_name_97 WHERE game_site = "arrowhead stadium"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_40 (grand_finaldate VARCHAR, season VARCHAR) ### Question: I want the Grand Final Date for season 1988 ### Answer: SELECT grand_finaldate FROM table_name_40 WHERE season = 1988
Below is an context that describes a sql 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 (rec INTEGER, yards VARCHAR, avg VARCHAR) ### Question: What is the average rec that is greater than 10 and has 40 yards? ### Answer: SELECT AVG(rec) FROM table_name_2 WHERE yards = 40 AND avg > 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_1825751_4 (binibining_pilipinas_international VARCHAR, miss_universe_philippines VARCHAR) ### Question: How many winners of Binibining Pilipinas-International when Nina Ricci Alagao? ### Answer: SELECT COUNT(binibining_pilipinas_international) FROM table_1825751_4 WHERE miss_universe_philippines = "Nina Ricci Alagao"
Below is an context that describes a sql 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 (finish VARCHAR, year VARCHAR) ### Question: What place did Jimmy Reece finish in 1957? ### Answer: SELECT finish FROM table_name_29 WHERE year = "1957"
Below is an context that describes a sql 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, record VARCHAR) ### Question: What was the date of the game when the record was 53–104? ### Answer: SELECT date FROM table_name_89 WHERE record = "53–104"
Below is an context that describes a sql 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 (total_points VARCHAR, match_points VARCHAR, games VARCHAR, bonus_points VARCHAR) ### Question: What are the total points that had 68 match points, 9 bonus points and 30 games? ### Answer: SELECT total_points FROM table_name_29 WHERE games = "30" AND bonus_points = "9" AND match_points = "68"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15329030_1 (date_of_polls VARCHAR, state VARCHAR) ### Question: Which dates of polls occur in the Mizoram state? ### Answer: SELECT date_of_polls FROM table_15329030_1 WHERE state = "Mizoram"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_174491_1 (winter_olympics VARCHAR, winner VARCHAR) ### Question: What year did Thorleif Haug win the Winter Olympics? ### Answer: SELECT winter_olympics FROM table_174491_1 WHERE winner = "Thorleif Haug"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_99 (area_served VARCHAR, callsign VARCHAR) ### Question: Which area served has a Callsign of 5ddn? ### Answer: SELECT area_served FROM table_name_99 WHERE callsign = "5ddn"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_48 (venue VARCHAR, competition VARCHAR, goal VARCHAR) ### Question: What Venue had 2 or more Goals in a Friendly Competition? ### Answer: SELECT venue FROM table_name_48 WHERE competition = "friendly" AND goal > 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_1965650_4 (nationality VARCHAR, player VARCHAR) ### Question: What's Steve Langdon's naitionality? ### Answer: SELECT nationality FROM table_1965650_4 WHERE player = "Steve Langdon"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_53 (platform VARCHAR, latest_stable_release VARCHAR) ### Question: What is the platform for the latest release 5.0.3? ### Answer: SELECT platform FROM table_name_53 WHERE latest_stable_release = "5.0.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 (home VARCHAR, date VARCHAR) ### Question: Which home team was playing on January 13? ### Answer: SELECT home FROM table_name_87 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_name_52 (played INTEGER, points VARCHAR, wins VARCHAR) ### Question: What is the lowest played number when points are larger than 32, and a wins are larger than 18? ### Answer: SELECT MIN(played) FROM table_name_52 WHERE points > 32 AND 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_24 (attendance INTEGER, record VARCHAR) ### Question: Which Attendance is the highest one that has a Record of 15-28? ### Answer: SELECT MAX(attendance) FROM table_name_24 WHERE record = "15-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_2146364_2 (second_place VARCHAR, city_ VARCHAR, _nation VARCHAR) ### Question: What is the total number of second place finishes when the city & nation was Chicago, USA? ### Answer: SELECT COUNT(second_place) FROM table_2146364_2 WHERE city_ & _nation = "Chicago, USA"
Below is an context that describes a sql 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 (remarks VARCHAR, rank VARCHAR, alliance VARCHAR) ### Question: What are the remarks for the entry ranked greater than 2 with a skyteam (2012) alliance? ### Answer: SELECT remarks FROM table_name_23 WHERE rank > 2 AND alliance = "skyteam (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_1140083_2 (constructor VARCHAR, rnd VARCHAR) ### Question: What was the constructor for round 15? ### Answer: SELECT constructor FROM table_1140083_2 WHERE rnd = 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_85 (origin_of_programming VARCHAR, network VARCHAR) ### Question: Which country has the banglavision Network? ### Answer: SELECT origin_of_programming FROM table_name_85 WHERE network = "banglavision"
Below is an context that describes a sql 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 (location VARCHAR, type VARCHAR, mission VARCHAR) ### Question: what is the location when the type is embassy and the mission is panama? ### Answer: SELECT location FROM table_name_42 WHERE type = "embassy" AND mission = "panama"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE event (name VARCHAR, YEAR VARCHAR) ### Question: What is the name of the event that happened in the most recent year? ### Answer: SELECT name FROM event ORDER BY YEAR 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_65 (home_team VARCHAR) ### Question: What did the home team footscray score? ### Answer: SELECT home_team AS score FROM table_name_65 WHERE home_team = "footscray"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22897967_1 (guest_judge VARCHAR, first_audition_date VARCHAR) ### Question: Name the guest judge for first audition date being july 9, 2009 ### Answer: SELECT COUNT(guest_judge) FROM table_22897967_1 WHERE first_audition_date = "July 9, 2009"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21313498_1 (written_by VARCHAR, no_in_season VARCHAR) ### Question: in the number of episode in season is 11, who was the writer? ### Answer: SELECT written_by FROM table_21313498_1 WHERE no_in_season = 11