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_79 (birthplace VARCHAR, jersey_number VARCHAR, position VARCHAR, height__cm_ VARCHAR) ### Question: What is the birthplace of the player who is 190 CM tall, plays the D position, and wears number 11? ### Answer: SELECT birthplace FROM table_name_79 WHERE position = "d" AND height__cm_ = 190 AND jersey_number = 11
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_43 (category VARCHAR, nominated_work VARCHAR, award VARCHAR) ### Question: What category is the nominated work of cecilie, winner of the robert award? ### Answer: SELECT category FROM table_name_43 WHERE nominated_work = "cecilie" AND award = "robert award"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25762852_1 (top_elevation__feet_ VARCHAR, name VARCHAR) ### Question: If the name is Steamboat, what is the top elevation? ### Answer: SELECT top_elevation__feet_ FROM table_25762852_1 WHERE name = "Steamboat"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23730973_5 (no INTEGER, rating VARCHAR) ### Question: What number episode had a 4.2 rating? ### Answer: SELECT MIN(no) FROM table_23730973_5 WHERE rating = "4.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_53 (score VARCHAR, date VARCHAR) ### Question: What was the score of the game that took place on october 22, 1976? ### Answer: SELECT score FROM table_name_53 WHERE date = "october 22, 1976"
Below is an context that describes a sql 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 (displacement_ VARCHAR, _configuration VARCHAR, emissions_co2 VARCHAR) ### Question: What is the displacement & configuration with CO2 of 204 g/km emissions? ### Answer: SELECT displacement_ & _configuration FROM table_name_18 WHERE emissions_co2 = "204 g/km"
Below is an context that describes a sql 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 (tournament VARCHAR, date VARCHAR) ### Question: What tournament has nov. 21, 1999 as the date? ### Answer: SELECT tournament FROM table_name_79 WHERE date = "nov. 21, 1999"
Below is an context that describes a sql 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 (rank VARCHAR) ### Question: the sum of 2009 with rank of 5 and 2010 less than 76.5 is what? ### Answer: SELECT SUM(2009) FROM table_name_70 WHERE rank = 5 AND 2010 < 76.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_26736342_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Who directed the eposide that was watched by 1.95 million US viewers? ### Answer: SELECT directed_by FROM table_26736342_1 WHERE us_viewers__millions_ = "1.95"
Below is an context that describes a sql 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 (date VARCHAR, venue VARCHAR) ### Question: What date was the game played at the venue of Hrazdan Stadium, Yerevan, Armenia? ### Answer: SELECT date FROM table_name_70 WHERE venue = "hrazdan stadium, yerevan, armenia"
Below is an context that describes a sql 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 (goals_against INTEGER, goals_for VARCHAR, points VARCHAR) ### Question: How many Goals against have Goals for smaller than 33, and Points smaller than 16? ### Answer: SELECT SUM(goals_against) FROM table_name_54 WHERE goals_for < 33 AND points < 16
Below is an context that describes a sql 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 (position VARCHAR, pick VARCHAR) ### Question: Which Position has a Pick of 174? ### Answer: SELECT position FROM table_name_66 WHERE pick = 174
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22801331_1 (opponents INTEGER, cowboys_points VARCHAR) ### Question: What is the fewest points opponents have scored when the Cowboys score 36? ### Answer: SELECT MIN(opponents) FROM table_22801331_1 WHERE cowboys_points = 36
Below is an context that describes a sql 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 (points_against VARCHAR, try_bonus VARCHAR, lost VARCHAR) ### Question: For a Lost of 10 and a Try Bonus of 4, what are the points against them? ### Answer: SELECT points_against FROM table_name_54 WHERE try_bonus = "4" AND lost = "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_18646111_13 (round_3 VARCHAR, class VARCHAR) ### Question: Name the total number of round 3 for class tt1 ### Answer: SELECT COUNT(round_3) FROM table_18646111_13 WHERE class = "TT1"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2562572_5 (population__1991_ VARCHAR, population__2011_ VARCHAR) ### Question: Name the total number of population for 1991 for 9564 for 2011 ### Answer: SELECT COUNT(population__1991_) FROM table_2562572_5 WHERE population__2011_ = 9564
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17355628_10 (high_assists VARCHAR, date VARCHAR) ### Question: Name the high assists for april 8 ### Answer: SELECT high_assists FROM table_17355628_10 WHERE date = "April 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_93 (others VARCHAR, fidesz VARCHAR, jobbik VARCHAR) ### Question: What is the percentage of others with a Fidesz of 62% and a Jobbik of 4%? ### Answer: SELECT others FROM table_name_93 WHERE fidesz = "62%" AND jobbik = "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_1 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR) ### Question: What is the kit manufacturer with Walkers as the shirt sponsor? ### Answer: SELECT kit_manufacturer FROM table_name_1 WHERE shirt_sponsor = "walkers"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10748727_1 (position VARCHAR, races VARCHAR) ### Question: What place is the team that completed 6 races? ### Answer: SELECT position FROM table_10748727_1 WHERE races = 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_60 (venue VARCHAR, date VARCHAR) ### Question: On 10 November 2007, what was the venue? ### Answer: SELECT venue FROM table_name_60 WHERE date = "10 november 2007"
Below is an context that describes a sql 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 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) ### Question: Which Score in the final has a Surface of hard on august 20, 1989? ### Answer: SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard" AND date = "august 20, 1989"
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR) ### Question: Name the score for october 9 ### Answer: SELECT score FROM table_name_35 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_33 (floors INTEGER, rank VARCHAR, building VARCHAR) ### Question: What is the lowest amount of floors after rank 1 in the Trillium (residential) building? ### Answer: SELECT MIN(floors) FROM table_name_33 WHERE rank > 1 AND building = "the trillium (residential)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15824796_3 (title VARCHAR, original_air_date VARCHAR) ### Question: What is the title of the episode that aired on december 12, 1953? ### Answer: SELECT title FROM table_15824796_3 WHERE original_air_date = "December 12, 1953"
Below is an context that describes a sql 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 (west_ham_wins INTEGER, drawn INTEGER) ### Question: What is the least number of wins West Ham got when they tied 27 times? ### Answer: SELECT MIN(west_ham_wins) FROM table_name_54 WHERE drawn > 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_88 (name VARCHAR, location VARCHAR, novelty VARCHAR) ### Question: What is Name, when Location is Tanzania, and when Novelty is Gen Nov? ### Answer: SELECT name FROM table_name_88 WHERE location = "tanzania" AND novelty = "gen nov"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_45 (drawn INTEGER, played VARCHAR, points_1 VARCHAR, goals_against VARCHAR) ### Question: For entries with fewer than 28 played, with 45 goals against and points 1 of 33, what is the average drawn? ### Answer: SELECT AVG(drawn) FROM table_name_45 WHERE points_1 = "33" AND goals_against = 45 AND played < 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_69 (winning_score VARCHAR, date VARCHAR) ### Question: For the tournament played on Oct 17, 1982, what was the winning score? ### Answer: SELECT winning_score FROM table_name_69 WHERE date = "oct 17, 1982"
Below is an context that describes a sql 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 (election VARCHAR) ### Question: What is the 2nd party in the 1874 election? ### Answer: SELECT 2 AS nd_party FROM table_name_16 WHERE election = "1874"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12134383_1 (end_of_term VARCHAR, age_at_inauguration VARCHAR) ### Question: how many end of term with age at inauguration being 64-066 64years, 66days ### Answer: SELECT COUNT(end_of_term) FROM table_12134383_1 WHERE age_at_inauguration = "64-066 64years, 66days"
Below is an context that describes a sql 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 (position VARCHAR, school VARCHAR) ### Question: What position did the player from East Texas State play? ### Answer: SELECT position FROM table_name_33 WHERE school = "east texas state"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14601528_2 (class_aA VARCHAR, class_aAA VARCHAR, Bridgeport VARCHAR, school_year VARCHAR) ### Question: Name the number of class aa for bridgeport and 1999-2000 ### Answer: SELECT COUNT(class_aA) FROM table_14601528_2 WHERE class_aAA = Bridgeport AND school_year = "1999-2000"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_34 (incumbent VARCHAR, first_elected VARCHAR, district VARCHAR) ### Question: Who is the incumbent for the Oregon 5 District that was elected in 1996? ### Answer: SELECT incumbent FROM table_name_34 WHERE first_elected = 1996 AND district = "oregon 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_1341453_45 (results VARCHAR, incumbent VARCHAR) ### Question: How many times did incumbent ruben hinojosa get elected? ### Answer: SELECT COUNT(results) FROM table_1341453_45 WHERE incumbent = "Ruben Hinojosa"
Below is an context that describes a sql 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 (in_production VARCHAR, codename VARCHAR) ### Question: Is Jasper being producted? ### Answer: SELECT in_production FROM table_name_66 WHERE codename = "jasper"
Below is an context that describes a sql 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 (home_team VARCHAR, venue VARCHAR) ### Question: What is the Home Team Score at Windy Hill? ### Answer: SELECT home_team AS score FROM table_name_64 WHERE venue = "windy hill"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE products (price INTEGER, Manufacturer VARCHAR) ### Question: Compute the average price of all products with manufacturer code equal to 2. ### Answer: SELECT AVG(price) FROM products WHERE Manufacturer = 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_60 (title VARCHAR, termination_of_mission VARCHAR) ### Question: What Title has a Termination of Mission of November 4, 1861? ### Answer: SELECT title FROM table_name_60 WHERE termination_of_mission = "november 4, 1861"
Below is an context that describes a sql 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 (frequency VARCHAR, model_number VARCHAR) ### Question: What is the frequency of the Turion 64 X2 TL-62? ### Answer: SELECT frequency FROM table_name_8 WHERE model_number = "turion 64 x2 tl-62"
Below is an context that describes a sql 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 (date_of_appointment VARCHAR, replaced_by VARCHAR) ### Question: What is the date of appointment of the manager who was replaced by markus babbel? ### Answer: SELECT date_of_appointment FROM table_name_94 WHERE replaced_by = "markus babbel"
Below is an context that describes a sql 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 (total VARCHAR, swimming_time__pts_ VARCHAR) ### Question: How many athletes had a Swimming Time (pts) of 2:20.93 (1232)? ### Answer: SELECT COUNT(total) FROM table_name_92 WHERE swimming_time__pts_ = "2:20.93 (1232)"
Below is an context that describes a sql 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 (result VARCHAR, date VARCHAR) ### Question: What was the result of the December 15, 2002 game? ### Answer: SELECT result FROM table_name_66 WHERE date = "december 15, 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_12 (tries_for VARCHAR, losing_bonus VARCHAR, points VARCHAR) ### Question: How many tries for did the club with a 3 losing bonus and 45 points have? ### Answer: SELECT tries_for FROM table_name_12 WHERE losing_bonus = "3" AND points = "45"
Below is an context that describes a sql 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 (laps VARCHAR, driver VARCHAR) ### Question: How many laps did antônio pizzonia do? ### Answer: SELECT COUNT(laps) FROM table_name_32 WHERE driver = "antônio pizzonia"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17304504_1 (grid VARCHAR, points VARCHAR) ### Question: What is the grid for the driver who earned 14 points? ### Answer: SELECT grid FROM table_17304504_1 WHERE points = "14"
Below is an context that describes a sql 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 VARCHAR, completions VARCHAR) ### Question: What team did James Vanderberg belong to when the Completions had a status of redshirt? ### Answer: SELECT team FROM table_name_21 WHERE completions = "redshirt"
Below is an context that describes a sql 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 (state VARCHAR, member VARCHAR) ### Question: What is State, when Member is "Gil Duthie"? ### Answer: SELECT state FROM table_name_6 WHERE member = "gil duthie"
Below is an context that describes a sql 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 (frequency VARCHAR, owner VARCHAR, call_sign VARCHAR) ### Question: Which Frequency has an Owner of rogers communications rogers radio, and a Call sign of cikz-fm? ### Answer: SELECT frequency FROM table_name_77 WHERE owner = "rogers communications rogers radio" AND call_sign = "cikz-fm"
Below is an context that describes a sql 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 (site VARCHAR, opponent VARCHAR) ### Question: Where did the game(s) against Iowa take place? ### Answer: SELECT site FROM table_name_94 WHERE opponent = "iowa"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_229059_2 (dates VARCHAR, tournament_location VARCHAR) ### Question: When was the tournament in Forest Lake Country Club held? ### Answer: SELECT dates FROM table_229059_2 WHERE tournament_location = "Forest Lake country Club"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27833186_1 (rider_names VARCHAR, horse_name VARCHAR) ### Question: How many different riders are there that won riding Omr Tsunami? ### Answer: SELECT COUNT(rider_names) FROM table_27833186_1 WHERE horse_name = "OMR Tsunami"
Below is an context that describes a sql 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 (away_team VARCHAR) ### Question: What is the away team score for South Melbourne? ### Answer: SELECT away_team AS score FROM table_name_86 WHERE away_team = "south melbourne"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_94 (visitor VARCHAR, date VARCHAR) ### Question: Who was the visitor on december 15, 1976? ### Answer: SELECT visitor FROM table_name_94 WHERE date = "december 15, 1976"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1132600_3 (fastest_lap VARCHAR, grand_prix VARCHAR) ### Question: Who had the fastest lap in the Belgian Grand Prix? ### Answer: SELECT fastest_lap FROM table_1132600_3 WHERE grand_prix = "Belgian grand_prix"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17257687_1 (air_date VARCHAR, event_2 VARCHAR) ### Question: On what date was the episode aired where event 2 was Hang Tough? ### Answer: SELECT air_date FROM table_17257687_1 WHERE event_2 = "Hang Tough"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2367847_2 (district_wide INTEGER, other_programs_ VARCHAR, _adjustments VARCHAR) ### Question: Name the most district wide for 1639 other programs ### Answer: SELECT MAX(district_wide) FROM table_2367847_2 WHERE other_programs_ & _adjustments = 1639
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR) ### Question: Name the location for 2-1 record ### Answer: SELECT location FROM table_23192661_3 WHERE record = "2-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 products (product_type_code VARCHAR) ### Question: Show the product type codes which have at least two products. ### Answer: SELECT product_type_code FROM products GROUP BY product_type_code HAVING COUNT(*) >= 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_97 (week INTEGER, date VARCHAR) ### Question: What is the lowest week number that had a game on December 3, 1967? ### Answer: SELECT MIN(week) FROM table_name_97 WHERE date = "december 3, 1967"
Below is an context that describes a sql 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 (draws INTEGER, points VARCHAR, position VARCHAR, wins VARCHAR) ### Question: What was the sum of the draws for the team that had 11 wins, less than 38 points, and a position smaller than 4? ### Answer: SELECT SUM(draws) FROM table_name_19 WHERE position < 4 AND wins = 11 AND points < 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_77 (location VARCHAR, callsign VARCHAR) ### Question: Where is the place that has a Callsign of DWRJ-FM? ### Answer: SELECT location FROM table_name_77 WHERE callsign = "dwrj-fm"
Below is an context that describes a sql 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 (money___$__ VARCHAR, place VARCHAR, score VARCHAR) ### Question: What was the money when the place was t8 and the score was 74-72-75-71=292? ### Answer: SELECT money___$__ FROM table_name_21 WHERE place = "t8" AND score = 74 - 72 - 75 - 71 = 292
Below is an context that describes a sql 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 (highest_average_point_ratings INTEGER, genre VARCHAR, number_of_episodes VARCHAR) ### Question: What was the highest average point rating for a modern suspense show with 21 episodes? ### Answer: SELECT SUM(highest_average_point_ratings) FROM table_name_29 WHERE genre = "modern suspense" AND number_of_episodes = 21
Below is an context that describes a sql 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 (original_west_end_cast VARCHAR, original_broadway_cast VARCHAR) ### Question: Who was in the Original West End Cast when the Original Broadway Cast was audrie neenan? ### Answer: SELECT original_west_end_cast FROM table_name_1 WHERE original_broadway_cast = "audrie neenan"
Below is an context that describes a sql 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 (points INTEGER, opponent VARCHAR, january VARCHAR) ### Question: What is the average number of points of the game after January 3 against the Cleveland Barons? ### Answer: SELECT AVG(points) FROM table_name_23 WHERE opponent = "cleveland barons" AND january > 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_90 (shuji_kondo VARCHAR, mazada VARCHAR, ryuji_hijikata VARCHAR) ### Question: Tell me the Shuji Kondo for MAZADA of X with Ryuji Hijikata of hijikata (14:24) ### Answer: SELECT shuji_kondo FROM table_name_90 WHERE mazada = "x" AND ryuji_hijikata = "hijikata (14:24)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_45 (date VARCHAR, time___gmt__ VARCHAR) ### Question: Which date has time (GMT) of 23:34? ### Answer: SELECT date FROM table_name_45 WHERE time___gmt__ = "23: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_8 (high_rebounds VARCHAR, date VARCHAR) ### Question: What is High Rebounds, when Date is "March 12"? ### Answer: SELECT high_rebounds FROM table_name_8 WHERE date = "march 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_68 (score VARCHAR, high_points VARCHAR) ### Question: What was the score of the game where Wallace (17) had the highest points? ### Answer: SELECT score FROM table_name_68 WHERE high_points = "wallace (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_37 (place VARCHAR, score VARCHAR) ### Question: What is the Place of the Player with a Score of 67-76-74-67=284? ### Answer: SELECT place FROM table_name_37 WHERE score = 67 - 76 - 74 - 67 = 284
Below is an context that describes a sql 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 (country VARCHAR, money___$__ VARCHAR, score VARCHAR) ### Question: What county has less than $188 and a score of 74-76-73-75=298? ### Answer: SELECT country FROM table_name_3 WHERE money___$__ < 188 AND score = 74 - 76 - 73 - 75 = 298
Below is an context that describes a sql 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 (location_attendance VARCHAR, team VARCHAR) ### Question: What were the location and attendance for the game against New Jersey? ### Answer: SELECT location_attendance FROM table_name_33 WHERE team = "new jersey"
Below is an context that describes a sql 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 (west VARCHAR, east VARCHAR) ### Question: Who was in the West when ESV Gebensbach was in the East? ### Answer: SELECT west FROM table_name_32 WHERE east = "esv gebensbach"
Below is an context that describes a sql 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 (losses VARCHAR, last_appearance VARCHAR, wins VARCHAR) ### Question: What is the total number of Losses, when Last Appearance is 2003, and when Wins is greater than 2? ### Answer: SELECT COUNT(losses) FROM table_name_85 WHERE last_appearance = "2003" 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_name_89 (tie_no INTEGER, away_team VARCHAR) ### Question: What was the tie number for the round against visiting opponent Chelsea? ### Answer: SELECT SUM(tie_no) FROM table_name_89 WHERE away_team = "chelsea"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17641314_3 (location_denotes_location_of_school_by_seattle_neighborhood VARCHAR, _does_not_necessary_correspond_with_attendance_area VARCHAR, school VARCHAR) ### Question: Name the location for school eckstein ### Answer: SELECT location_denotes_location_of_school_by_seattle_neighborhood, _does_not_necessary_correspond_with_attendance_area FROM table_17641314_3 WHERE school = "Eckstein"
Below is an context that describes a sql 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 (score VARCHAR, money___$__ VARCHAR) ### Question: What's the score for $22,500? ### Answer: SELECT score FROM table_name_62 WHERE money___$__ = "22,500"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17525955_2 (episode__number VARCHAR, us_air_date VARCHAR) ### Question: How many episodes aired Saturday, July 11, 2009 ### Answer: SELECT COUNT(episode__number) FROM table_17525955_2 WHERE us_air_date = "Saturday, July 11, 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_75 (time__cst_ VARCHAR, nfl_recap VARCHAR, date VARCHAR) ### Question: What time (cst) has and NFL recap of recap with october 19, 2008 as the date? ### Answer: SELECT time__cst_ FROM table_name_75 WHERE nfl_recap = "recap" AND date = "october 19, 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_65 (date VARCHAR, runner_s__up VARCHAR) ### Question: What is Date, when Runner(s)-Up is "Bo-Mee Lee"? ### Answer: SELECT date FROM table_name_65 WHERE runner_s__up = "bo-mee lee"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE college (cName VARCHAR, enr INTEGER, state VARCHAR) ### Question: Find names of all colleges whose enrollment is greater than that of all colleges in the FL state. ### Answer: SELECT cName FROM college WHERE enr > (SELECT MAX(enr) FROM college WHERE state = 'FL')
Below is an context that describes a sql 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 (away VARCHAR, ground VARCHAR) ### Question: What is the Away with a Ground that is humber college north? ### Answer: SELECT away FROM table_name_9 WHERE ground = "humber college north"
Below is an context that describes a sql 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 (champions_league INTEGER, coppa_italia VARCHAR, serie_a VARCHAR, total VARCHAR) ### Question: What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1? ### Answer: SELECT SUM(champions_league) FROM table_name_40 WHERE serie_a = 1 AND total > 1 AND coppa_italia > 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_30 (winner VARCHAR, surface VARCHAR, week VARCHAR) ### Question: Who was the winner on a hard surface on the week of November 13? ### Answer: SELECT winner FROM table_name_30 WHERE surface = "hard" AND week = "november 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_43 (date VARCHAR, record VARCHAR) ### Question: When were the Brewers 27-31? ### Answer: SELECT date FROM table_name_43 WHERE record = "27-31"
Below is an context that describes a sql 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 (overall INTEGER, pick VARCHAR, college VARCHAR) ### Question: What is the overall sum of the game with a pick less than 8 from the college of western michigan? ### Answer: SELECT SUM(overall) FROM table_name_23 WHERE pick < 8 AND college = "western michigan"
Below is an context that describes a sql 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 (ukraine_career VARCHAR, lost VARCHAR, drawn VARCHAR) ### Question: What years had a manager who lost more than 1 and drawn more than 11? ### Answer: SELECT ukraine_career FROM table_name_26 WHERE lost > 1 AND drawn > 11
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_1 (song VARCHAR, weeks_on_top VARCHAR, artist VARCHAR) ### Question: Which song by David Essex spent 2 weeks on top of the charts? ### Answer: SELECT song FROM table_name_1 WHERE weeks_on_top = 2 AND artist = "david essex"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (slalom VARCHAR, super_g VARCHAR) ### Question: Which Slalom has a Super G of 4? ### Answer: SELECT slalom FROM table_name_98 WHERE super_g = "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_20251343_4 (competition VARCHAR, head_to_head VARCHAR) ### Question: Name the competition for australia 13, new zealand 40, drawn 3 ### Answer: SELECT competition FROM table_20251343_4 WHERE head_to_head = "Australia 13, New Zealand 40, Drawn 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_98 (f_laps VARCHAR, final_placing VARCHAR, podiums VARCHAR, season VARCHAR) ### Question: Which F/Laps has Podiums of 1, and a Season of 2000, and a Final Placing of nc? ### Answer: SELECT f_laps FROM table_name_98 WHERE podiums = "1" AND season = 2000 AND final_placing = "nc"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11447995_2 (ben_tahir VARCHAR, bello VARCHAR) ### Question: What is Ben-Tahir when Bello is 51? ### Answer: SELECT ben_tahir FROM table_11447995_2 WHERE bello = "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_98 (r_bacon VARCHAR, county VARCHAR) ### Question: What is the number for R Bacon in Passaic County? ### Answer: SELECT r_bacon FROM table_name_98 WHERE county = "passaic"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14330096_3 (series_number VARCHAR, writer VARCHAR) ### Question: What number from the total number of episodes is the episode written by Julian Unthank? ### Answer: SELECT series_number FROM table_14330096_3 WHERE writer = "Julian Unthank"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_222448_1 (long_term_c_pk VARCHAR, short_term_c_pk VARCHAR) ### Question: What is long-term C PK when the short-term C PK is 2.00? ### Answer: SELECT long_term_c_pk FROM table_222448_1 WHERE short_term_c_pk = "2.00"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18299148_1 (Missions VARCHAR, notability VARCHAR) ### Question: How many missions countries have notability with president of burundi? ### Answer: SELECT COUNT(Missions) AS country FROM table_18299148_1 WHERE notability = "President of Burundi"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1859269_1 (round VARCHAR, new_entries_this_round VARCHAR) ### Question: If new entries this round is 65, what is the round? ### Answer: SELECT COUNT(round) FROM table_1859269_1 WHERE new_entries_this_round = "65"
Below is an context that describes a sql 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 (pick INTEGER, player VARCHAR, round VARCHAR) ### Question: How many picks on average did Jay Bruchak have before round 6? ### Answer: SELECT AVG(pick) FROM table_name_7 WHERE player = "jay bruchak" AND round < 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_1231316_6 (wind__m_s_ VARCHAR, athlete VARCHAR) ### Question: Name the total number of wind m/s for sunday emmanuel ### Answer: SELECT COUNT(wind__m_s_) FROM table_1231316_6 WHERE athlete = "Sunday Emmanuel"