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_97 (place INTEGER, artist VARCHAR, draw VARCHAR) ### Question: What was the highest place a song by Jacques Raymond reached, with a draw over 14? ### Answer: SELECT MAX(place) FROM table_name_97 WHERE artist = "jacques raymond" AND draw > 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_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR) ### Question: What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points? ### Answer: SELECT COUNT(year) FROM table_name_96 WHERE team = "yamaha" AND wins = 0 AND rank = "8th" AND points > 22
Below is an context that describes a sql 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 (opponent_in_the_final VARCHAR, tournament VARCHAR, date VARCHAR) ### Question: Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994? ### Answer: SELECT opponent_in_the_final FROM table_name_93 WHERE tournament = "taipei, taiwan" AND date = "november 14, 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_59 (company VARCHAR, built VARCHAR, ship VARCHAR) ### Question: What company built the ship named excellent in 1998? ### Answer: SELECT company FROM table_name_59 WHERE built = 1998 AND ship = "excellent"
Below is an context that describes a sql 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 (round VARCHAR, school_club_team VARCHAR, pick VARCHAR) ### Question: Which Round has a School/Club Team of north carolina, and a Pick larger than 131? ### Answer: SELECT COUNT(round) FROM table_name_84 WHERE school_club_team = "north carolina" AND pick > 131
Below is an context that describes a sql 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 (lost VARCHAR, points VARCHAR) ### Question: How many losses did the club with 47 points have ? ### Answer: SELECT lost FROM table_name_7 WHERE points = "47"
Below is an context that describes a sql 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 (city___state VARCHAR, winner VARCHAR, date VARCHAR) ### Question: What is City / State, when Winner is Mal Rose, and when Date is 20 Jul? ### Answer: SELECT city___state FROM table_name_93 WHERE winner = "mal rose" AND date = "20 jul"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1601027_2 (headphone_model VARCHAR, succeeded_by VARCHAR) ### Question: Name the headphone model for succeeded by sr125 ### Answer: SELECT headphone_model FROM table_1601027_2 WHERE succeeded_by = "SR125"
Below is an context that describes a sql 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 (date VARCHAR, score VARCHAR) ### Question: On what date was the score 2-1? ### Answer: SELECT date FROM table_name_38 WHERE score = "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 table_name_86 (score VARCHAR, home VARCHAR, visitor VARCHAR) ### Question: Name the score when the home is ny islanders and the visitor is montreal ### Answer: SELECT score FROM table_name_86 WHERE home = "ny islanders" AND visitor = "montreal"
Below is an context that describes a sql 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 (score VARCHAR, loss VARCHAR) ### Question: What was the score of the game when there was a loss of Kern (0-2)? ### Answer: SELECT score FROM table_name_44 WHERE loss = "kern (0-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_93 (league_goals VARCHAR, fa_cup_goals VARCHAR, league_apps VARCHAR) ### Question: How many league goals did the player with 10 league apps and 0 FA cup goals have? ### Answer: SELECT COUNT(league_goals) FROM table_name_93 WHERE fa_cup_goals = 0 AND league_apps = "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_name_95 (team VARCHAR, state_province VARCHAR, league VARCHAR) ### Question: Which mlb team is located in maryland? ### Answer: SELECT team FROM table_name_95 WHERE state_province = "maryland" AND league = "mlb"
Below is an context that describes a sql 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 (year INTEGER, engine VARCHAR) ### Question: What was the lowest year that the engine Ilmor 2175a 3.5 v10 was used? ### Answer: SELECT MIN(year) FROM table_name_64 WHERE engine = "ilmor 2175a 3.5 v10"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_15 (londonborough VARCHAR, dialcode VARCHAR) ### Question: What Londongborough has a Dialcode of 01992? ### Answer: SELECT londonborough FROM table_name_15 WHERE dialcode = "01992"
Below is an context that describes a sql 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 (total_score VARCHAR, year VARCHAR) ### Question: What is the total score for the year 2012? ### Answer: SELECT total_score FROM table_name_14 WHERE year = 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_27887723_1 (winner VARCHAR, location VARCHAR) ### Question: who was the winner for souderton, pa? ### Answer: SELECT winner FROM table_27887723_1 WHERE location = "Souderton, PA"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE wrestler (Wrestler_ID VARCHAR, Days_held VARCHAR); CREATE TABLE elimination (Time VARCHAR, Wrestler_ID VARCHAR) ### Question: List the time of elimination of the wrestlers with largest days held. ### Answer: SELECT T1.Time FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID ORDER BY T2.Days_held 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_1108394_43 (brooklyn VARCHAR, queens VARCHAR) ### Question: what's the brooklyn with queens value of 16.8% ### Answer: SELECT brooklyn FROM table_1108394_43 WHERE queens = "16.8_percentage"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Documents (document_id VARCHAR); CREATE TABLE Documents_with_expenses (document_id VARCHAR) ### Question: How many documents do not have any expense? ### Answer: SELECT COUNT(*) FROM Documents WHERE NOT document_id IN (SELECT document_id FROM Documents_with_expenses)
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10399701_2 (class_aAA VARCHAR, school_year VARCHAR) ### Question: Who was Class AAA during the school year of 2000-01? ### Answer: SELECT class_aAA FROM table_10399701_2 WHERE school_year = "2000-01"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11964047_7 (date VARCHAR, leading_scorer VARCHAR) ### Question: what is the total number of dates where the scorer is gordon : 32 ### Answer: SELECT COUNT(date) FROM table_11964047_7 WHERE leading_scorer = "Gordon : 32"
Below is an context that describes a sql 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 (opponent VARCHAR, record VARCHAR) ### Question: Which Opponent has a Record of 38–20–12–2? ### Answer: SELECT opponent FROM table_name_20 WHERE record = "38–20–12–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_19188562_2 (season VARCHAR, us_viewers__in_millions_ VARCHAR) ### Question: What season finale date has 2.02 million u.s. Viewers? ### Answer: SELECT season AS finale FROM table_19188562_2 WHERE us_viewers__in_millions_ = "2.02"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18602462_22 (round_of_16 VARCHAR, athlete VARCHAR) ### Question: What is the round of 16 result for Jiske Griffioen Esther Vergeer? ### Answer: SELECT round_of_16 FROM table_18602462_22 WHERE athlete = "Jiske Griffioen Esther Vergeer"
Below is an context that describes a sql 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 (pasadena VARCHAR, tujunga VARCHAR) ### Question: What is the figure for Pasadena when Tujunga is 36? ### Answer: SELECT pasadena FROM table_name_11 WHERE tujunga = "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_28298471_14 (stage VARCHAR, winner VARCHAR) ### Question: When hayden roulston is the winner what is the stage? ### Answer: SELECT stage FROM table_28298471_14 WHERE winner = "Hayden Roulston"
Below is an context that describes a sql 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 (total INTEGER, to_par VARCHAR) ### Question: What is the highest total to par of +9? ### Answer: SELECT MAX(total) FROM table_name_40 WHERE to_par = "+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 FACULTY (Fname VARCHAR, Lname VARCHAR, FacID VARCHAR); CREATE TABLE COURSE (Instructor VARCHAR, CName VARCHAR) ### Question: Find the first name and last name of the instructor of course that has course name ### Answer: SELECT T2.Fname, T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID WHERE T1.CName = "COMPUTER LITERACY"
Below is an context that describes a sql 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 (a_league VARCHAR, finals VARCHAR, name VARCHAR) ### Question: What A-League has 6 (1) for the finals, and leigh broxham as the name? ### Answer: SELECT a_league FROM table_name_54 WHERE finals = "6 (1)" AND name = "leigh broxham"
Below is an context that describes a sql 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 (first INTEGER, total VARCHAR, gold VARCHAR) ### Question: What is the latest first year with 0 total medals and over 0 golds? ### Answer: SELECT MAX(first) FROM table_name_5 WHERE total > 0 AND gold > 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_19 (score VARCHAR, visitor VARCHAR, record VARCHAR) ### Question: Which Score has a Visitor of ny rangers, and a Record of 19–28–15? ### Answer: SELECT score FROM table_name_19 WHERE visitor = "ny rangers" AND record = "19–28–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_69 (date VARCHAR, record VARCHAR) ### Question: What was the date of the record of 43-28? ### Answer: SELECT date FROM table_name_69 WHERE record = "43-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_45 (position INTEGER, losses VARCHAR, played VARCHAR) ### Question: Which Position has Losses of 11, and a Played larger than 22? ### Answer: SELECT SUM(position) FROM table_name_45 WHERE losses = 11 AND played > 22
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE weekly_weather (low_temperature INTEGER, precipitation INTEGER, station_id VARCHAR); CREATE TABLE station (id VARCHAR, network_name VARCHAR) ### Question: Give me the maximum low temperature and average precipitation at the Amersham station. ### Answer: SELECT MAX(t1.low_temperature), AVG(t1.precipitation) FROM weekly_weather AS t1 JOIN station AS t2 ON t1.station_id = t2.id WHERE t2.network_name = "Amersham"
Below is an context that describes a sql 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 (silver VARCHAR, nation VARCHAR, total VARCHAR) ### Question: how many times is the nation listed as united states with the total more than 1? ### Answer: SELECT COUNT(silver) FROM table_name_44 WHERE nation = "united states" AND total > 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_6 (date VARCHAR, home_team VARCHAR) ### Question: What is Date, when Home Team is "Everton"? ### Answer: SELECT date FROM table_name_6 WHERE home_team = "everton"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11019212_1 (monday VARCHAR, tuesday VARCHAR) ### Question: what's the monday time with tuesday being 9:00-6:00 ### Answer: SELECT monday FROM table_11019212_1 WHERE tuesday = "9:00-6: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_12564633_1 (title VARCHAR, directed_by VARCHAR) ### Question: What is the name of the episode that Richard Thorpe directed? ### Answer: SELECT title FROM table_12564633_1 WHERE directed_by = "Richard Thorpe"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2840500_2 (player VARCHAR, nhl_team VARCHAR) ### Question: Who was drafted by the Washington Capitals? ### Answer: SELECT player FROM table_2840500_2 WHERE nhl_team = "Washington Capitals"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2639433_4 (timeslot VARCHAR, year VARCHAR) ### Question: What was the timeslot for the episode in the year 2008? ### Answer: SELECT timeslot FROM table_2639433_4 WHERE year = 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 user_profiles (name VARCHAR, email VARCHAR, followers INTEGER) ### Question: Find the name and email of the users who have more than 1000 followers. ### Answer: SELECT name, email FROM user_profiles WHERE followers > 1000
Below is an context that describes a sql 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 (tries_against VARCHAR, tries_for VARCHAR) ### Question: How many tries against did the club with 48 tries for have? ### Answer: SELECT tries_against FROM table_name_90 WHERE tries_for = "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_33 (wickets INTEGER, best_bowling VARCHAR, matches VARCHAR) ### Question: what is the highest wickets when the best bowling is 2/32 and matches is less than 5? ### Answer: SELECT MAX(wickets) FROM table_name_33 WHERE best_bowling = "2/32" AND matches < 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 phone (Name VARCHAR, Carrier VARCHAR) ### Question: Show the names of phones with carrier either "Sprint" or "TMobile". ### Answer: SELECT Name FROM phone WHERE Carrier = "Sprint" OR Carrier = "TMobile"
Below is an context that describes a sql 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 (sport VARCHAR, year_of_award VARCHAR) ### Question: In 2011 which sport had the year award? ### Answer: SELECT sport FROM table_name_92 WHERE year_of_award = 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_21 (year INTEGER, miss_fire__3rd_runner_up_ VARCHAR) ### Question: What year was Caroline Medina Miss Fire (3rd Runner-up)? ### Answer: SELECT AVG(year) FROM table_name_21 WHERE miss_fire__3rd_runner_up_ = "caroline medina"
Below is an context that describes a sql 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 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR) ### Question: What engine is used by Colin Bennett Racing with an 811 chassis? ### Answer: SELECT engine FROM table_name_48 WHERE entrant = "colin bennett racing" AND chassis = "811"
Below is an context that describes a sql 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 (score VARCHAR, tournament VARCHAR) ### Question: What is the Score of the Pingguo Tournament? ### Answer: SELECT score FROM table_name_94 WHERE tournament = "pingguo"
Below is an context that describes a sql 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 (score VARCHAR, lineup VARCHAR) ### Question: What is the score with the Lineup match reports? ### Answer: SELECT score FROM table_name_5 WHERE lineup = "match reports"
Below is an context that describes a sql 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 (events INTEGER, player VARCHAR, earnings___$__ VARCHAR) ### Question: Which Events have a Player of tom kite, and Earnings ($) smaller than 760,405? ### Answer: SELECT AVG(events) FROM table_name_60 WHERE player = "tom kite" AND earnings___$__ < 760 OFFSET 405
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_85 (hanja VARCHAR, revised VARCHAR) ### Question: Tell me the hanja of eum ### Answer: SELECT hanja FROM table_name_85 WHERE revised = "eum"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27303975_2 (studio VARCHAR, catalog_number VARCHAR) ### Question: Name the studio for catalog number 81063 ### Answer: SELECT studio FROM table_27303975_2 WHERE catalog_number = "81063"
Below is an context that describes a sql 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 (time VARCHAR, set_1 VARCHAR) ### Question: What time has a Set 1 of 18–25? ### Answer: SELECT time FROM table_name_30 WHERE set_1 = "18–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_name_54 (_number___county VARCHAR, school VARCHAR) ### Question: Name the # country for new palestine ### Answer: SELECT _number___county FROM table_name_54 WHERE school = "new palestine"
Below is an context that describes a sql 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 (opponent_team VARCHAR, scorers VARCHAR) ### Question: Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'? ### Answer: SELECT opponent_team FROM table_name_84 WHERE scorers = "jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1289860_2 (background VARCHAR, hometown VARCHAR) ### Question: What background does the person from New york, New york, have? ### Answer: SELECT background FROM table_1289860_2 WHERE hometown = "New York, New York"
Below is an context that describes a sql 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 (score_in_the_final VARCHAR, championship VARCHAR) ### Question: what was the score of the Championship match played in Estoril, Portugal? ### Answer: SELECT score_in_the_final FROM table_name_92 WHERE championship = "estoril, portugal"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28797906_3 (wickets VARCHAR, economy VARCHAR) ### Question: How many wickets was there when the economy was 3.64? ### Answer: SELECT wickets FROM table_28797906_3 WHERE economy = "3.64"
Below is an context that describes a sql 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 (player VARCHAR, round INTEGER) ### Question: Which Player has a Round larger than 8? ### Answer: SELECT player FROM table_name_87 WHERE round > 8
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_13 (wins INTEGER, year VARCHAR, points VARCHAR) ### Question: How many wins did the team, which had more than 110 points, have in 1989? ### Answer: SELECT SUM(wins) FROM table_name_13 WHERE year = 1989 AND points > 110
Below is an context that describes a sql 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 (time VARCHAR, react VARCHAR, rank VARCHAR) ### Question: How many total Time listings have a 0.209 React entry and a Rank that is greater than 7? ### Answer: SELECT COUNT(time) FROM table_name_76 WHERE react = 0.209 AND rank > 7
Below is an context that describes a sql 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 (record VARCHAR, location_attendance VARCHAR) ### Question: What is Record, when Location Attendance, is Madison Square Garden 19,009? ### Answer: SELECT record FROM table_name_32 WHERE location_attendance = "madison square garden 19,009"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1745843_2 (part_4 VARCHAR, part_2 VARCHAR) ### Question: For part 2 *lauk, what is listed for part 4? ### Answer: SELECT part_4 FROM table_1745843_2 WHERE part_2 = "*lauk"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_10621256_1 (player VARCHAR, n_o VARCHAR) ### Question: what's the player where 50 is 2 and n/o is 0 ### Answer: SELECT player FROM table_10621256_1 WHERE 50 = 2 AND n_o = 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_7 (earnings___$__ VARCHAR, top_10s VARCHAR) ### Question: What amount of earnings corresponds with a Top 10s rank of 23? ### Answer: SELECT earnings___$__ FROM table_name_7 WHERE top_10s = 23
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19722664_5 (assists VARCHAR, player VARCHAR) ### Question: How many assists did Delisha Milton-Jones make? ### Answer: SELECT assists FROM table_19722664_5 WHERE player = "DeLisha Milton-Jones"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18600760_13 (ansi_code INTEGER) ### Question: What is the smallest ansi code? ### Answer: SELECT MIN(ansi_code) FROM table_18600760_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_85 (attendance INTEGER, record VARCHAR, opponents VARCHAR) ### Question: What was the highest attendance for the game where the record was 0-5 and the opponents scored more than 20 points? ### Answer: SELECT MAX(attendance) FROM table_name_85 WHERE record = "0-5" AND opponents > 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_24216139_2 (enrollment INTEGER, sport VARCHAR) ### Question: Name the least enrollment for field hockey, men's swimming ### Answer: SELECT MIN(enrollment) FROM table_24216139_2 WHERE sport = "Field hockey, men's swimming"
Below is an context that describes a sql 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 (placings VARCHAR, total VARCHAR, name VARCHAR) ### Question: How many placings did Jacqueline du Bief earn where her total score is greater than 131.26? ### Answer: SELECT placings FROM table_name_72 WHERE total > 131.26 AND name = "jacqueline du bief"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341930_38 (candidates VARCHAR, incumbent VARCHAR) ### Question: How many incumbents come from alvin bush's district? ### Answer: SELECT COUNT(candidates) FROM table_1341930_38 WHERE incumbent = "Alvin Bush"
Below is an context that describes a sql 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 (event VARCHAR, record VARCHAR) ### Question: Which event led to a 4-0 record? ### Answer: SELECT event FROM table_name_98 WHERE record = "4-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_92 (director VARCHAR, language VARCHAR) ### Question: Who is the director of the film in Italian? ### Answer: SELECT director FROM table_name_92 WHERE language = "italian"
Below is an context that describes a sql 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 (bronze VARCHAR, gold INTEGER) ### Question: How many bronze medals for the nation with over 9 golds? ### Answer: SELECT COUNT(bronze) FROM table_name_8 WHERE gold > 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_4 (original_name VARCHAR, designer VARCHAR, location VARCHAR) ### Question: What is the original name of the place by designer Glen Peloso with a Location of n/a? ### Answer: SELECT original_name FROM table_name_4 WHERE designer = "glen peloso" AND location = "n/a"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26769_1 (population__july_2009_est_ VARCHAR, population_density_per_km² VARCHAR) ### Question: What was the population of a country with a population density of 14.3/km² (/sqmi)? ### Answer: SELECT population__july_2009_est_ FROM table_26769_1 WHERE population_density_per_km² = "14.3/km² (/sqmi)"
Below is an context that describes a sql 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 (high_assists VARCHAR, record VARCHAR) ### Question: Who had the highest assists when the nuggets record was 2-4? ### Answer: SELECT high_assists FROM table_name_64 WHERE record = "2-4"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_12 (score VARCHAR, loss VARCHAR) ### Question: Which score has a Loss of hiller (22–15–1)? ### Answer: SELECT score FROM table_name_12 WHERE loss = "hiller (22–15–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_8 (championship VARCHAR, opponent_in_the_final VARCHAR) ### Question: Which championship had an oppenent of mario ančić in the final? ### Answer: SELECT championship FROM table_name_8 WHERE opponent_in_the_final = "mario anč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_name_39 (enrollment INTEGER, school VARCHAR) ### Question: What is the lowest enrollment at the pioneer school? ### Answer: SELECT MIN(enrollment) FROM table_name_39 WHERE school = "pioneer"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_22 (extra VARCHAR, result VARCHAR, year VARCHAR) ### Question: What is the extra result associated with 6th place in 1972? ### Answer: SELECT extra FROM table_name_22 WHERE result = "6th" AND year = 1972
Below is an context that describes a sql 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 (year INTEGER, earnings___$__ VARCHAR, tournaments_played VARCHAR, cuts_made VARCHAR) ### Question: what is the year when tournaments played is less than 2, cuts made is 1 and earnings ($) is less than 10,547? ### Answer: SELECT SUM(year) FROM table_name_89 WHERE tournaments_played < 2 AND cuts_made = 1 AND earnings___$__ < 10 OFFSET 547
Below is an context that describes a sql 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 (weight__kg_ INTEGER, race VARCHAR) ### Question: What is the highest weight for the Farnley Stakes race? ### Answer: SELECT MAX(weight__kg_) FROM table_name_67 WHERE race = "farnley stakes"
Below is an context that describes a sql 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 (winner VARCHAR, stage VARCHAR) ### Question: Who won at stage 22? ### Answer: SELECT winner FROM table_name_85 WHERE stage = "22"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2409041_4 (no_in_series VARCHAR, no_in_season VARCHAR) ### Question: Name the number of number in the season for 11 ### Answer: SELECT COUNT(no_in_series) FROM table_2409041_4 WHERE no_in_season = 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_84 (order VARCHAR, species_authority VARCHAR) ### Question: What order has the Species Authority of hydrochaeris hydrochaeris (linnaeus, 1766)? ### Answer: SELECT order FROM table_name_84 WHERE species_authority = "hydrochaeris hydrochaeris (linnaeus, 1766)"
Below is an context that describes a sql 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 (time VARCHAR, laps VARCHAR, manufacturer VARCHAR, grid VARCHAR) ### Question: How long did it take for the rider of a Yamaha with a grid less than 8 and laps less than 23? ### Answer: SELECT time FROM table_name_47 WHERE manufacturer = "yamaha" AND grid < 8 AND laps < 23
Below is an context that describes a sql 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 (year__ceremony_ VARCHAR, original_title VARCHAR) ### Question: what year did naga bonar take place ### Answer: SELECT year__ceremony_ FROM table_name_82 WHERE original_title = "naga bonar"
Below is an context that describes a sql 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 (area__km²_ INTEGER, mean_household_size__in_2006_ VARCHAR) ### Question: What is the highest Area that has a Mean Household Size of 3.1 persons? ### Answer: SELECT MAX(area__km²_) FROM table_name_17 WHERE mean_household_size__in_2006_ = "3.1 persons"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27614707_1 (original_artist VARCHAR, theme VARCHAR) ### Question: Who was the original artist of the Top 12 Men theme? ### Answer: SELECT original_artist FROM table_27614707_1 WHERE theme = "Top 12 Men"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_81 (team VARCHAR, country VARCHAR, uci_points VARCHAR) ### Question: What team in France had 15 UCi points? ### Answer: SELECT team FROM table_name_81 WHERE country = "france" AND uci_points = "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_22546460_4 (best_female_artist VARCHAR, best_male_lyricist VARCHAR) ### Question: Who won the Best Female Artist where Best R&B Contributor won the Best Male Lyricist? ### Answer: SELECT best_female_artist FROM table_22546460_4 WHERE best_male_lyricist = "Best R&B Contributor"
Below is an context that describes a sql 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 (author___editor___source VARCHAR, world_ranking__1_ VARCHAR, countries_sampled VARCHAR) ### Question: Who is the Author/Editor/Source for more than 100 countries sampled and has a 35 world ranking? ### Answer: SELECT author___editor___source FROM table_name_86 WHERE world_ranking__1_ = "35" AND countries_sampled > 100
Below is an context that describes a sql 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 (record VARCHAR, date VARCHAR) ### Question: Name the record for august 31 ### Answer: SELECT record FROM table_name_65 WHERE date = "august 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_78 (place VARCHAR, points_jury VARCHAR) ### Question: Which Place has a Points Jury of 34 (7,8,9,10)? ### Answer: SELECT place FROM table_name_78 WHERE points_jury = "34 (7,8,9,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_name_91 (result VARCHAR, group VARCHAR, film_series VARCHAR, year VARCHAR) ### Question: What was the result for Thirst in 2010 at the Green Globe Film Awards? ### Answer: SELECT result FROM table_name_91 WHERE film_series = "thirst" AND year = 2010 AND group = "green globe film awards"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2279413_1 (pct_route_available VARCHAR, type_of_protection VARCHAR) ### Question: For small patent type of protections, what type of PCT route is available? ### Answer: SELECT pct_route_available FROM table_2279413_1 WHERE type_of_protection = "small patent"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Employees (employee_name VARCHAR, role_code VARCHAR, date_of_birth VARCHAR, employee_Name VARCHAR) ### Question: Show the name, role code, and date of birth for the employee with name 'Armani'. ### Answer: SELECT employee_name, role_code, date_of_birth FROM Employees WHERE employee_Name = 'Armani'
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2850912_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) ### Question: Which junior team is associated with an NHL pick by the Buffalo Sabres? ### Answer: SELECT college_junior_club_team FROM table_2850912_4 WHERE nhl_team = "Buffalo Sabres"