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_54 (wins VARCHAR, total_final_appearances VARCHAR, club VARCHAR) ### Question: How manywins for dunfermline athletic that has a total final appearances less than 2? ### Answer: SELECT wins FROM table_name_54 WHERE total_final_appearances < 2 AND club = "dunfermline athletic"
Below is an context that describes a sql 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 (january VARCHAR, opponent VARCHAR) ### Question: What is the number in January for Philadelphia Flyers as opponents? ### Answer: SELECT COUNT(january) FROM table_name_30 WHERE opponent = "philadelphia flyers"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17356873_1 (venue VARCHAR, head_coach VARCHAR) ### Question: Erdoğan Arıca is the head coach at what venue? ### Answer: SELECT venue FROM table_17356873_1 WHERE head_coach = "Erdoğan Arıca"
Below is an context that describes a sql 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 (city_of_license VARCHAR, frequency_mhz VARCHAR) ### Question: Tell me the city of license with frequency of Mhz of 90.3 fm ### Answer: SELECT city_of_license FROM table_name_26 WHERE frequency_mhz = "90.3 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_88 (enrollment INTEGER, ihsaa_class VARCHAR, mascot VARCHAR) ### Question: What's the most enrolled having the dragons for a mascot and an AAA for the IHSAA Class? ### Answer: SELECT MAX(enrollment) FROM table_name_88 WHERE ihsaa_class = "aaa" AND mascot = "dragons"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25271777_1 (index INTEGER, forcible_rape VARCHAR) ### Question: What was the largest index the year/s forcible rapes numbered 1084? ### Answer: SELECT MAX(index) FROM table_25271777_1 WHERE forcible_rape = 1084
Below is an context that describes a sql 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 (ntfs VARCHAR, refs VARCHAR, hpfs VARCHAR) ### Question: Which NTFS has a no for ReFS and a yes for HPFS? ### Answer: SELECT ntfs FROM table_name_50 WHERE refs = "no" AND hpfs = "yes"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_58 (authority VARCHAR, gender VARCHAR, area VARCHAR) ### Question: What authority is the coed school in pinehaven? ### Answer: SELECT authority FROM table_name_58 WHERE gender = "coed" AND area = "pinehaven"
Below is an context that describes a sql 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 (played INTEGER, difference VARCHAR, position VARCHAR) ### Question: What is the largest played number when the difference is - 8 and position is more than 8? ### Answer: SELECT MAX(played) FROM table_name_42 WHERE difference = "- 8" AND position > 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_2159506_3 (state__class_ VARCHAR, reason_for_change VARCHAR) ### Question: Name the state class for resigned november 3, 1964 ### Answer: SELECT state__class_ FROM table_2159506_3 WHERE reason_for_change = "Resigned November 3, 1964"
Below is an context that describes a sql 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 (gold INTEGER, nation VARCHAR, total VARCHAR) ### Question: How much Gold has a Nation of mongolia, and a Total larger than 18? ### Answer: SELECT SUM(gold) FROM table_name_37 WHERE nation = "mongolia" AND total > 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_16 (podiums VARCHAR, wins VARCHAR, points VARCHAR) ### Question: What is the number of podiums with 0 wins and 6 points? ### Answer: SELECT podiums FROM table_name_16 WHERE wins = "0" AND points = "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_59 (record VARCHAR, date VARCHAR) ### Question: What record has September 21 as the date? ### Answer: SELECT record FROM table_name_59 WHERE date = "september 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_80 (surface VARCHAR, date VARCHAR) ### Question: On what type of surface did they play on 13 February 1994? ### Answer: SELECT surface FROM table_name_80 WHERE date = "13 february 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_name_64 (character VARCHAR, duration VARCHAR, soap_opera VARCHAR) ### Question: What character was portrayed by the same actor for 12 years on Neighbours? ### Answer: SELECT character FROM table_name_64 WHERE duration = "12 years" AND soap_opera = "neighbours"
Below is an context that describes a sql 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 (round VARCHAR, school VARCHAR) ### Question: What is the total number of rounds that UCLA has? ### Answer: SELECT COUNT(round) FROM table_name_41 WHERE school = "ucla"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE customer (acc_type VARCHAR, acc_bal INTEGER, credit_score INTEGER) ### Question: For each account type, find the average account balance of customers with credit score lower than 50. ### Answer: SELECT AVG(acc_bal), acc_type FROM customer WHERE credit_score < 50 GROUP BY acc_type
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27155678_2 (genus_species VARCHAR, accession_number VARCHAR) ### Question: Name the genus/species of accession number bx897699.1 ### Answer: SELECT genus_species FROM table_27155678_2 WHERE accession_number = "BX897699.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_11 (opponent VARCHAR, attendance VARCHAR) ### Question: What team did the Flames play against when 526 people attended the game? ### Answer: SELECT opponent FROM table_name_11 WHERE attendance = 526
Below is an context that describes a sql 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 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score when the away team was Carlton? ### Answer: SELECT home_team AS score FROM table_name_43 WHERE away_team = "carlton"
Below is an context that describes a sql 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 (power_notation VARCHAR, long_scale VARCHAR) ### Question: For a long scale of one million, what is the power notion? ### Answer: SELECT power_notation FROM table_name_35 WHERE long_scale = "one million"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, sex VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR) ### Question: Find all the male members of club "Hopkins Student Enterprises". Show the first name and last name. ### Answer: SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Hopkins Student Enterprises" AND t3.sex = "M"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18332845_2 (departure VARCHAR, going_to VARCHAR, arrival VARCHAR) ### Question: What is the departure for Peterborough East whose arrival time is 12.40? ### Answer: SELECT departure FROM table_18332845_2 WHERE going_to = "Peterborough East" AND arrival = "12.40"
Below is an context that describes a sql 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 (opponents VARCHAR, surface VARCHAR, date VARCHAR) ### Question: who is the opponents when the surface is clay and the date is 12 july 1992? ### Answer: SELECT opponents FROM table_name_93 WHERE surface = "clay" AND date = "12 july 1992"
Below is an context that describes a sql 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 (competition VARCHAR, date VARCHAR) ### Question: What is the Competition with a Date with 6 december 2011? ### Answer: SELECT competition FROM table_name_72 WHERE date = "6 december 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_53 (survived INTEGER, destroyed VARCHAR, to_iran VARCHAR, aircraft VARCHAR) ### Question: What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft? ### Answer: SELECT AVG(survived) FROM table_name_53 WHERE to_iran < 1 AND aircraft = "brazil tucano" AND destroyed > 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_12 (title VARCHAR, catalog__number VARCHAR) ### Question: What CD has a catalog # of PCR 502? ### Answer: SELECT title FROM table_name_12 WHERE catalog__number = "pcr 502"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_83 (date VARCHAR, home_team VARCHAR) ### Question: On what date were the Melbourne Tigers the home team? ### Answer: SELECT date FROM table_name_83 WHERE home_team = "melbourne tigers"
Below is an context that describes a sql 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 (variant_id VARCHAR, genbank_id VARCHAR) ### Question: Which Variant id has the GenBank id of nm_005411.4? ### Answer: SELECT variant_id FROM table_name_40 WHERE genbank_id = "nm_005411.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_1176371_1 (fc_matches INTEGER) ### Question: What is the maximum fc matches? ### Answer: SELECT MAX(fc_matches) FROM table_1176371_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 Claims (Amount_Settled VARCHAR, Amount_Claimed VARCHAR) ### Question: Among all the claims, what is the settlement amount of the claim with the largest claim amount? List both the settlement amount and claim amount. ### Answer: SELECT Amount_Settled, Amount_Claimed FROM Claims ORDER BY Amount_Claimed 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_41 (platforms VARCHAR, stations VARCHAR) ### Question: Name the total number of platforms that waddon railway station has ### Answer: SELECT COUNT(platforms) FROM table_name_41 WHERE stations = "waddon railway station"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1566852_5 (date VARCHAR, interview_subject VARCHAR) ### Question: Name the date for oliver stone ### Answer: SELECT date FROM table_1566852_5 WHERE interview_subject = "Oliver Stone"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_71 (rank VARCHAR, points VARCHAR) ### Question: What is the rank associated with 141.48 points? ### Answer: SELECT rank FROM table_name_71 WHERE points = 141.48
Below is an context that describes a sql 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 (rounds VARCHAR, engine_† VARCHAR) ### Question: what is the rounds when the engine is mercedes fo110m? ### Answer: SELECT rounds FROM table_name_17 WHERE engine_† = "mercedes fo110m"
Below is an context that describes a sql 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 (member VARCHAR, state VARCHAR, electorate VARCHAR) ### Question: Which member is from the state of SA and the grey electorate? ### Answer: SELECT member FROM table_name_74 WHERE state = "sa" AND electorate = "grey"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_96 (attendance VARCHAR, week VARCHAR) ### Question: What was the total attendance in week 8? ### Answer: SELECT COUNT(attendance) FROM table_name_96 WHERE week = 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_48 (Id VARCHAR) ### Question: Which 2008 has a 2005 of 13–3? ### Answer: SELECT 2008 FROM table_name_48 WHERE 2005 = "13–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_16225511_2 (school VARCHAR, percent VARCHAR) ### Question: How many schools had the win loss ratio of 0.667? ### Answer: SELECT COUNT(school) FROM table_16225511_2 WHERE percent = "0.667"
Below is an context that describes a sql 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 (torque VARCHAR, name VARCHAR, capacity VARCHAR) ### Question: What torque does 1.9 diesel with 1905 cc have? ### Answer: SELECT torque FROM table_name_30 WHERE name = "1.9 diesel" AND capacity = "1905 cc"
Below is an context that describes a sql 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 (laps INTEGER, grid VARCHAR) ### Question: What is the mean number of laps when the grid was 8? ### Answer: SELECT AVG(laps) FROM table_name_8 WHERE grid = 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_2679061_2 (pick__number INTEGER, nhl_team VARCHAR, college_junior_club_team VARCHAR) ### Question: what is the pick # when the nhl team is montreal canadiens and the college/junior/club team is trois-rivières draveurs (qmjhl)? ### Answer: SELECT MIN(pick__number) FROM table_2679061_2 WHERE nhl_team = "Montreal Canadiens" AND college_junior_club_team = "Trois-Rivières Draveurs (QMJHL)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25675509_1 (longitude VARCHAR, date__yyyy_mm_dd_ VARCHAR) ### Question: What was the longitude for the shock that occured on 2010-01-09? ### Answer: SELECT longitude FROM table_25675509_1 WHERE date__yyyy_mm_dd_ = "2010-01-09"
Below is an context that describes a sql 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 (shooter VARCHAR, rank_points VARCHAR, score_points VARCHAR) ### Question: Who is the shooter with 15 rank points, and 0 score points? ### Answer: SELECT shooter FROM table_name_56 WHERE rank_points = "15" AND score_points = "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_98 (died VARCHAR, spouse_to VARCHAR) ### Question: When did the consort who had talal i as a spouse die? ### Answer: SELECT died FROM table_name_98 WHERE spouse_to = "talal i"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1507852_5 (cancelable VARCHAR, bubbles VARCHAR) ### Question: what's the cancelable with bubbles being yes ### Answer: SELECT cancelable FROM table_1507852_5 WHERE bubbles = "Yes"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341395_44 (district VARCHAR, incumbent VARCHAR) ### Question: What district has Ron Paul? ### Answer: SELECT district FROM table_1341395_44 WHERE incumbent = "Ron Paul"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_67 (date VARCHAR, pictorials VARCHAR) ### Question: Which Date has a Pictorials of mercedes mcnab, girls of hawaiian tropic? ### Answer: SELECT date FROM table_name_67 WHERE pictorials = "mercedes mcnab, girls of hawaiian tropic"
Below is an context that describes a sql 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 (laps INTEGER, rider VARCHAR, grid VARCHAR) ### Question: What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha ### Answer: SELECT MIN(laps) FROM table_name_10 WHERE rider = "andrew pitt" AND grid < 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_1 (reversal_symmetry VARCHAR, clone_independence VARCHAR, non_dictatorship VARCHAR, consistency_ VARCHAR, _participation VARCHAR) ### Question: what is the reversal symmetry when non-dictatorship is yes, consistency & participation is no, and clone independence is yes? ### Answer: SELECT reversal_symmetry FROM table_name_1 WHERE non_dictatorship = "yes" AND consistency_ & _participation = "no" AND clone_independence = "yes"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27862483_3 (overall_record VARCHAR, win VARCHAR) ### Question: What was the overall record in the game won by D. Klein (2-0)? ### Answer: SELECT overall_record FROM table_27862483_3 WHERE win = "D. Klein (2-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_71 (countries_sampled INTEGER, ranking_in_latin_america__2_ VARCHAR, year_of_publication VARCHAR, world_ranking__1_ VARCHAR) ### Question: How many countries sampled has a world ranking of 33 in 2010 and less than 3 ranking in Latin America? ### Answer: SELECT SUM(countries_sampled) FROM table_name_71 WHERE year_of_publication = "2010" AND world_ranking__1_ = "33" AND ranking_in_latin_america__2_ < 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_23 (earnings__ INTEGER, player VARCHAR) ### Question: What's the most jim colbert got paid? ### Answer: SELECT MAX(earnings__) AS $__ FROM table_name_23 WHERE player = "jim colbert"
Below is an context that describes a sql 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 (akira VARCHAR, prince_devitt VARCHAR) ### Question: What is the Akira when Prince Devitt is Devitt (7:20)? ### Answer: SELECT akira FROM table_name_99 WHERE prince_devitt = "devitt (7: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_64 (round VARCHAR, time VARCHAR) ### Question: How many rounds have a time of 2:18? ### Answer: SELECT COUNT(round) FROM table_name_64 WHERE time = "2: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_62 (home_team VARCHAR, venue VARCHAR) ### Question: What home team plays at Princes Park? ### Answer: SELECT home_team FROM table_name_62 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_73 (authors VARCHAR, location VARCHAR) ### Question: Which author is located in Mexico? ### Answer: SELECT authors FROM table_name_73 WHERE location = "mexico"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15187735_4 (episode INTEGER, segment_d VARCHAR) ### Question: What is the last episode which has segment d as blown glass? ### Answer: SELECT MAX(episode) FROM table_15187735_4 WHERE segment_d = "Blown Glass"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17289604_38 (round_of_64 VARCHAR, athlete VARCHAR, event VARCHAR, round_of_16 VARCHAR) ### Question: What was round of 64 of the singles event when the result of round 16 was did not advance and the athlete was Iveta Benešová? ### Answer: SELECT round_of_64 FROM table_17289604_38 WHERE event = "Singles" AND round_of_16 = "Did not advance" AND athlete = "Iveta Benešová"
Below is an context that describes a sql 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 (h___a VARCHAR, date VARCHAR) ### Question: What is the H/A on 5 August 1990? ### Answer: SELECT h___a FROM table_name_46 WHERE date = "5 august 1990"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11207040_5 (highest INTEGER, team VARCHAR) ### Question: What is the highest attendance at a game played by St. Johnstone? ### Answer: SELECT MAX(highest) FROM table_11207040_5 WHERE team = "St. Johnstone"
Below is an context that describes a sql 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 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR) ### Question: What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season? ### Answer: SELECT SUM(no_in_series) FROM table_name_5 WHERE written_by = "sam meikle" AND no_in_season = 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_91 (points INTEGER, score VARCHAR, game VARCHAR) ### Question: Which Points have a Score of 4–1, and a Game smaller than 39? ### Answer: SELECT SUM(points) FROM table_name_91 WHERE score = "4–1" AND game < 39
Below is an context that describes a sql 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 (opponent_in_final VARCHAR, date VARCHAR, surface VARCHAR, location VARCHAR) ### Question: What is Opponent In Final, when Surface is Hard, when Location is Wellington, New Zealand, and when Date is 6 February 2000? ### Answer: SELECT opponent_in_final FROM table_name_72 WHERE surface = "hard" AND location = "wellington, new zealand" AND date = "6 february 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_94 (genes VARCHAR, base_pairs VARCHAR) ### Question: Which gene has 4,895,836 base pairs? ### Answer: SELECT genes FROM table_name_94 WHERE base_pairs = "4,895,836"
Below is an context that describes a sql 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 (outcome VARCHAR, opponents_in_the_final VARCHAR, surface VARCHAR) ### Question: What was the outcome when the oppenent was serena williams venus williams and had a hard surface? ### Answer: SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "serena williams venus williams" AND surface = "hard"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1013129_10 (player VARCHAR, nhl_team VARCHAR, nationality VARCHAR) ### Question: NHL team player San Jose Sharks is United States nationally. ### Answer: SELECT player FROM table_1013129_10 WHERE nhl_team = "San Jose Sharks" AND nationality = "United States"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13403120_1 (writer_s_ VARCHAR, prodcode VARCHAR) ### Question: who is the writer of the episode with prod.code 30-17 ### Answer: SELECT writer_s_ FROM table_13403120_1 WHERE prodcode = "30-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 people (weight VARCHAR, people_id VARCHAR, height VARCHAR); CREATE TABLE body_builder (people_id VARCHAR, snatch VARCHAR) ### Question: List the weight of the body builders who have snatch score higher than 140 or have the height greater than 200. ### Answer: SELECT T2.weight FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T1.snatch > 140 OR T2.height > 200
Below is an context that describes a sql 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 (december VARCHAR, record VARCHAR) ### Question: Which December has a Record of 4-3-6? ### Answer: SELECT december FROM table_name_65 WHERE record = "4-3-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 (high_assists VARCHAR, game INTEGER) ### Question: With the game that was less than 16 what was the high assists? ### Answer: SELECT high_assists FROM table_name_60 WHERE game < 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_75 (track INTEGER, song_title VARCHAR) ### Question: What is the highest track for Burning Love? ### Answer: SELECT MAX(track) FROM table_name_75 WHERE song_title = "burning love"
Below is an context that describes a sql 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 (points INTEGER, games VARCHAR, goalsagainst VARCHAR, season VARCHAR) ### Question: Goalsagainst of 285, and a Season of 2006–07, and a Games smaller than 70 has what average points? ### Answer: SELECT AVG(points) FROM table_name_88 WHERE goalsagainst = 285 AND season = "2006–07" AND games < 70
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_48 (teams VARCHAR, name VARCHAR) ### Question: What is the team with the name Boumediene Abderahmane? ### Answer: SELECT teams FROM table_name_48 WHERE name = "boumediene abderahmane"
Below is an context that describes a sql 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 (series VARCHAR, poles VARCHAR, races VARCHAR) ### Question: Which Series has Poles of 0, and Races of 17? ### Answer: SELECT series FROM table_name_72 WHERE poles = "0" AND races = "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_65 (grid VARCHAR, driver VARCHAR, laps VARCHAR) ### Question: What is the number of the grid for mika häkkinen and more than 45 laps? ### Answer: SELECT COUNT(grid) FROM table_name_65 WHERE driver = "mika häkkinen" AND laps > 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_89 (player VARCHAR, team VARCHAR, position VARCHAR) ### Question: Who is the player that plays position f from Fort Wayne Pistons? ### Answer: SELECT player FROM table_name_89 WHERE team = "fort wayne pistons" AND position = "f"
Below is an context that describes a sql 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 (week VARCHAR, tournament VARCHAR) ### Question: In what Week is the Rome Tournament? ### Answer: SELECT week FROM table_name_70 WHERE tournament = "rome"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_40 (grid VARCHAR, constructor VARCHAR, laps VARCHAR) ### Question: What was the grid placement for the Maserati that completed 14 laps? ### Answer: SELECT grid FROM table_name_40 WHERE constructor = "maserati" AND laps = 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_67 (date VARCHAR, penciller VARCHAR, title VARCHAR) ### Question: What was the Date of the Cimmeria Issue for which the Penciller was Tomás Giorello? ### Answer: SELECT date FROM table_name_67 WHERE penciller = "tomás giorello" AND title = "cimmeria"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26815674_1 (wins VARCHAR, final_placing VARCHAR) ### Question: When 12th is the final placing what is the wins? ### Answer: SELECT wins FROM table_26815674_1 WHERE final_placing = "12th"
Below is an context that describes a sql 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 (freq INTEGER, owner VARCHAR, day_power___w__ VARCHAR) ### Question: What is the WPW freq with a day power of 250? ### Answer: SELECT SUM(freq) FROM table_name_55 WHERE owner = "wpw" AND day_power___w__ > 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 Ref_Incident_Type (incident_type_description VARCHAR, incident_type_code VARCHAR) ### Question: What is the incident type description for the incident type with code "VIOLENCE"? ### Answer: SELECT incident_type_description FROM Ref_Incident_Type WHERE incident_type_code = "VIOLENCE"
Below is an context that describes a sql 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 (set_3 VARCHAR, score VARCHAR, set_2 VARCHAR) ### Question: What is the Set 3 with a Score of 3–1, and has a Set 2 of 13–15? ### Answer: SELECT set_3 FROM table_name_7 WHERE score = "3–1" AND set_2 = "13–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_54 (competition VARCHAR, main_article VARCHAR, captain VARCHAR, lost VARCHAR) ### Question: What Competition in Main Article of Bradford Bulls 1997 have Robbie Paul as Captain with less than 5 Lost? ### Answer: SELECT competition FROM table_name_54 WHERE captain = "robbie paul" AND lost < 5 AND main_article = "bradford bulls 1997"
Below is an context that describes a sql 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 (date VARCHAR, opponent VARCHAR, week VARCHAR, game_site VARCHAR) ### Question: When did the Titans play the Houston Texans at LP Field before Week 13? ### Answer: SELECT date FROM table_name_68 WHERE week < 13 AND game_site = "lp field" AND opponent = "houston texans"
Below is an context that describes a sql 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 (team VARCHAR, laps VARCHAR, points VARCHAR, time_retired VARCHAR) ### Question: What team has 0 points and a contact tired/retired, and 71 laps? ### Answer: SELECT team FROM table_name_80 WHERE points = 0 AND time_retired = "contact" AND laps = 71
Below is an context that describes a sql 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 (date VARCHAR, round INTEGER) ### Question: Which date has a round more than 9? ### Answer: SELECT date FROM table_name_85 WHERE round > 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_7 (bible_gothic VARCHAR, english VARCHAR) ### Question: What's the Bible Gothic for the word hand? ### Answer: SELECT bible_gothic FROM table_name_7 WHERE english = "hand"
Below is an context that describes a sql 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 (location_attendance VARCHAR, game VARCHAR) ### Question: What was the Location and Attendance of Game 6? ### Answer: SELECT location_attendance FROM table_name_51 WHERE game = 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_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR) ### Question: What is the cyrillic name for the settlement with the population of 2125? ### Answer: SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 2125
Below is an context that describes a sql 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 (points INTEGER, wins VARCHAR, year VARCHAR) ### Question: What are the sum of points in 1989 with 0 wins? ### Answer: SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 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_18 (high_assists VARCHAR, date VARCHAR) ### Question: What is High Assists, when Date is "November 1"? ### Answer: SELECT high_assists FROM table_name_18 WHERE date = "november 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_24 (name VARCHAR, location VARCHAR, release_date VARCHAR) ### Question: What is the name in the UK, with a release date of December 1966? ### Answer: SELECT name FROM table_name_24 WHERE location = "uk" AND release_date = "december 1966"
Below is an context that describes a sql 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 (overall INTEGER, position VARCHAR, pick VARCHAR) ### Question: If the pick is under 28 and the position is k, what's the highest Overall pick? ### Answer: SELECT MAX(overall) FROM table_name_55 WHERE position = "k" AND pick < 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_26 (competition VARCHAR, location VARCHAR) ### Question: Which competition was held at Addis Ababa? ### Answer: SELECT competition FROM table_name_26 WHERE location = "addis ababa"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22982552_9 (class_year INTEGER, highlight_s_ VARCHAR) ### Question: What class year was the player whose highlights were 35 career INTs from? ### Answer: SELECT MIN(class_year) FROM table_22982552_9 WHERE highlight_s_ = "35 career INTs"
Below is an context that describes a sql 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, record VARCHAR) ### Question: What is the Date of the game with a Record of 12–7–6? ### Answer: SELECT date FROM table_name_20 WHERE record = "12–7–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_25 (cuts_made INTEGER, tournament VARCHAR, wins VARCHAR) ### Question: Which Cuts made has a Tournament of totals, and Wins smaller than 11? ### Answer: SELECT AVG(cuts_made) FROM table_name_25 WHERE tournament = "totals" AND wins < 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_74 (finish VARCHAR, start VARCHAR, year VARCHAR) ### Question: What is the Finish when the start shows 3 in the year of 2010? ### Answer: SELECT finish FROM table_name_74 WHERE start = "3" AND year = 2010