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_1708050_3 (wins INTEGER, position VARCHAR) ### Question: Name the most wins where position is 16th ### Answer: SELECT MAX(wins) FROM table_1708050_3 WHERE position = "16th"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17924362_1 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for december 8 ### Answer: SELECT opponent FROM table_17924362_1 WHERE date = "December 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_75 (result VARCHAR, date VARCHAR) ### Question: What was the result for 10/04/1947? ### Answer: SELECT result FROM table_name_75 WHERE date = "10/04/1947"
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR) ### Question: What was the score of the game on 27 January 1996? ### Answer: SELECT score FROM table_name_15 WHERE date = "27 january 1996"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1277350_3 (sunday_surya__the_sun_ VARCHAR, thursday_guru__jupiter_ VARCHAR) ### Question: In language where Thursday is برس وار bres'var, what is Sunday? ### Answer: SELECT sunday_surya__the_sun_ FROM table_1277350_3 WHERE thursday_guru__jupiter_ = "برس وار Bres'var"
Below is an context that describes a sql 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 (airport VARCHAR, iata VARCHAR) ### Question: Name the airport with IATA of cxb ### Answer: SELECT airport FROM table_name_64 WHERE iata = "cxb"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15463188_1 (school_club_team VARCHAR, position VARCHAR) ### Question: Name the school/club for guard ### Answer: SELECT school_club_team FROM table_15463188_1 WHERE position = "Guard"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR) ### Question: Name the district for others being 18.3 ### Answer: SELECT district FROM table_23214055_2 WHERE others = "18.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_79 (name VARCHAR, transfer_window VARCHAR, moving_from VARCHAR) ### Question: What is the name of the player with a winter transfer window moving from Roma? ### Answer: SELECT name FROM table_name_79 WHERE transfer_window = "winter" AND moving_from = "roma"
Below is an context that describes a sql 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 (tournament VARCHAR) ### Question: What's the 2008 of the Australian Open when the 2011 was 1R? ### Answer: SELECT 2008 FROM table_name_87 WHERE 2011 = "1r" AND tournament = "australian open"
Below is an context that describes a sql 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 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR) ### Question: WHich Evening Gown has a Swimsuit smaller than 7.99 and a Interview larger than 7.98? ### Answer: SELECT AVG(evening_gown) FROM table_name_21 WHERE swimsuit < 7.99 AND interview > 7.98
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_64 (engine VARCHAR, chassis VARCHAR) ### Question: What model engine has a lotus 16 chassis? ### Answer: SELECT engine FROM table_name_64 WHERE chassis = "lotus 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_17 (score VARCHAR, date VARCHAR) ### Question: What is the score of the game on November 10, 2006? ### Answer: SELECT score FROM table_name_17 WHERE date = "november 10, 2006"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342198_36 (result VARCHAR, incumbent VARCHAR) ### Question: What was the result when incumbent Tom Steed was elected? ### Answer: SELECT result FROM table_1342198_36 WHERE incumbent = "Tom Steed"
Below is an context that describes a sql 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 (record VARCHAR, date VARCHAR, round VARCHAR) ### Question: What is the record for the date 15 december, and a round of final? ### Answer: SELECT record FROM table_name_6 WHERE date = "15 december" AND round = "final"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20613292_1 (production_code VARCHAR, directed_by VARCHAR) ### Question: How many different production codes does the episode directed by Dominic Polcino have? ### Answer: SELECT COUNT(production_code) FROM table_20613292_1 WHERE directed_by = "Dominic Polcino"
Below is an context that describes a sql 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 (transcription VARCHAR, english_name VARCHAR) ### Question: What is the transcription for the English March? ### Answer: SELECT transcription FROM table_name_98 WHERE english_name = "march"
Below is an context that describes a sql 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 (verb VARCHAR) ### Question: WHICH 2/3 (P) has a Verb of khêla? ### Answer: SELECT 2 AS _3__p_ FROM table_name_76 WHERE verb = "khêla"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Financial_transactions (account_id VARCHAR) ### Question: Show the account id and the number of transactions for each account ### Answer: SELECT account_id, COUNT(*) FROM Financial_transactions GROUP BY account_id
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_29 (host VARCHAR, ratings VARCHAR) ### Question: Who was the host that garnered ratings of 9.4/27? ### Answer: SELECT host FROM table_name_29 WHERE ratings = "9.4/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_86 (name VARCHAR, age_as_of_1_february_2014 VARCHAR) ### Question: Who is 111years, 358days Age as of 1 February 2014? ### Answer: SELECT name FROM table_name_86 WHERE age_as_of_1_february_2014 = "111years, 358days"
Below is an context that describes a sql 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 (position VARCHAR, school VARCHAR) ### Question: What position did the person from Clemson school fill? ### Answer: SELECT position FROM table_name_48 WHERE school = "clemson"
Below is an context that describes a sql 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 (week VARCHAR, date VARCHAR) ### Question: October 28, 2001 was what week of the season? ### Answer: SELECT week FROM table_name_98 WHERE date = "october 28, 2001"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15185133_1 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What is the original air date for the episode with a production code of 318? ### Answer: SELECT original_air_date FROM table_15185133_1 WHERE production_code = 318
Below is an context that describes a sql 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 (location_attendance VARCHAR, record VARCHAR) ### Question: What was the location and attendance at the game when the record was 9-6? ### Answer: SELECT location_attendance FROM table_name_54 WHERE record = "9-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_44 (floors VARCHAR, street_address_in_detroit VARCHAR) ### Question: How many floors does the address 1828 jay street have? ### Answer: SELECT floors FROM table_name_44 WHERE street_address_in_detroit = "1828 jay street"
Below is an context that describes a sql 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 (class___type VARCHAR, location VARCHAR) ### Question: What is the class/type at Trieste? ### Answer: SELECT class___type FROM table_name_32 WHERE location = "trieste"
Below is an context that describes a sql 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 (attendance INTEGER, match VARCHAR, opponent VARCHAR, result VARCHAR) ### Question: How many Attendance has a Opponent of west bromwich albion, and a Result of 3 – 3, and a Match larger than 20? ### Answer: SELECT SUM(attendance) FROM table_name_79 WHERE opponent = "west bromwich albion" AND result = "3 – 3" AND match > 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_49 (score VARCHAR, player VARCHAR) ### Question: What did Sam Torrance score? ### Answer: SELECT score FROM table_name_49 WHERE player = "sam torrance"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24910737_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR) ### Question: Who wrote the episodes that had a viewership of 7.14? ### Answer: SELECT written_by FROM table_24910737_1 WHERE us_viewers__millions_ = "7.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_14 (year INTEGER, finish VARCHAR, start VARCHAR) ### Question: What is the lowest Year, when Finish is "29", and when Start is less than 24? ### Answer: SELECT MIN(year) FROM table_name_14 WHERE finish = 29 AND start < 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_19 (date VARCHAR) ### Question: what is the 1st prize for may 21 ### Answer: SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_19 WHERE date = "may 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_20046379_3 (written_by VARCHAR, no_in_series VARCHAR) ### Question: Who wrote the episode with series number 45? ### Answer: SELECT written_by FROM table_20046379_3 WHERE no_in_series = "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_59 (opened VARCHAR, country VARCHAR) ### Question: Name the opened for spain ### Answer: SELECT opened FROM table_name_59 WHERE country = "spain"
Below is an context that describes a sql 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 (batting_partners VARCHAR, fielding_team VARCHAR, season VARCHAR) ### Question: Who were the batting partners that played for India in 1997? ### Answer: SELECT batting_partners FROM table_name_96 WHERE fielding_team = "india" AND season = "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_62 (ofsted_number INTEGER, dcsf_number VARCHAR, intake VARCHAR, type VARCHAR) ### Question: What is the junior type with an intake of 60 and a DCSF number less than 3386 with the smallest Ofsted number? ### Answer: SELECT MIN(ofsted_number) FROM table_name_62 WHERE intake = 60 AND type = "junior" AND dcsf_number < 3386
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11251601_2 (carbon_dioxide_emissions_per_year__10_6_tons___2006_ VARCHAR, carbon_dioxide_emissions_per_year__tons_per_person___2007_ VARCHAR) ### Question: WHAT WAS THE AMOUNT OF CARBON DIOXIDE EMISSIONS IN 2006 IN THE COUNTRY WHOSE CO2 EMISSIONS (TONS PER PERSON) REACHED 1.4 IN 2OO7? ### Answer: SELECT carbon_dioxide_emissions_per_year__10_6_tons___2006_ FROM table_11251601_2 WHERE carbon_dioxide_emissions_per_year__tons_per_person___2007_ = "1.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_58 (attendance INTEGER, date VARCHAR, week VARCHAR) ### Question: How many people attended the Cleveland Browns game on November 11, 1979? ### Answer: SELECT MAX(attendance) FROM table_name_58 WHERE date = "november 11, 1979" AND week > 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_99 (field VARCHAR, home_away VARCHAR, opponent VARCHAR) ### Question: What Field was played at in an away game against the bayhawks? ### Answer: SELECT field FROM table_name_99 WHERE home_away = "away" AND opponent = "bayhawks"
Below is an context that describes a sql 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 (score VARCHAR, visitor VARCHAR) ### Question: What was the score for the game against Atlanta? ### Answer: SELECT score FROM table_name_6 WHERE visitor = "atlanta"
Below is an context that describes a sql 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 (place INTEGER, team VARCHAR, lost VARCHAR, points VARCHAR) ### Question: what is the highest place when lost is more than 4, points is less than 18 and team is Team of atlético veragüense? ### Answer: SELECT MAX(place) FROM table_name_18 WHERE lost > 4 AND points < 18 AND team = "atlético veragüense"
Below is an context that describes a sql 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 (points_for VARCHAR, played VARCHAR, tries_for VARCHAR) ### Question: Nam the points for when tries for is 91 and played of 22 ### Answer: SELECT points_for FROM table_name_73 WHERE played = "22" AND tries_for = "91"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27755603_2 (record VARCHAR, high_rebounds VARCHAR) ### Question: What's the record in the game where Greg Monroe (8) did the high rebounds? ### Answer: SELECT record FROM table_27755603_2 WHERE high_rebounds = "Greg Monroe (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_49 (socialist_labor_ticket VARCHAR, republican_ticket VARCHAR) ### Question: Who's the Socialist Labor ticket with a Republican ticket of cuthbert w. pound? ### Answer: SELECT socialist_labor_ticket FROM table_name_49 WHERE republican_ticket = "cuthbert w. pound"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12027364_1 (womens_singles VARCHAR, mens_singles VARCHAR) ### Question: How many womens singles winners were there when peter rasmussen won the mens singles? ### Answer: SELECT COUNT(womens_singles) FROM table_12027364_1 WHERE mens_singles = "Peter Rasmussen"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2263674_1 (romanised_name VARCHAR, portfolio VARCHAR) ### Question: What's the romanised name of the official who was Secretary for health, welfare and food? ### Answer: SELECT romanised_name FROM table_2263674_1 WHERE portfolio = "Secretary for Health, Welfare and Food"
Below is an context that describes a sql 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 (city_location VARCHAR, pole_position VARCHAR, winning_driver VARCHAR) ### Question: Where did Rick Mears win, after starting in Pole Position? ### Answer: SELECT city_location FROM table_name_70 WHERE pole_position = "rick mears" AND winning_driver = "rick mears"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE artwork (TYPE VARCHAR) ### Question: Please show different types of artworks with the corresponding number of artworks of each type. ### Answer: SELECT TYPE, COUNT(*) FROM artwork GROUP BY 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_name_35 (report VARCHAR, away_team VARCHAR) ### Question: What's the report about townsville crocodiles as an away team? ### Answer: SELECT report FROM table_name_35 WHERE away_team = "townsville crocodiles"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341663_10 (district VARCHAR, result VARCHAR, incumbent VARCHAR) ### Question: what is the district where the result is re-elected and the incumbent is richard kelly? ### Answer: SELECT district FROM table_1341663_10 WHERE result = "Re-elected" AND incumbent = "Richard Kelly"
Below is an context that describes a sql 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, date VARCHAR) ### Question: What is the round played on 13 October 1984? ### Answer: SELECT round FROM table_name_41 WHERE date = "13 october 1984"
Below is an context that describes a sql 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 (high_points VARCHAR, opponent VARCHAR) ### Question: What were phoenix's high points? ### Answer: SELECT high_points FROM table_name_83 WHERE opponent = "phoenix"
Below is an context that describes a sql 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 (record VARCHAR, result VARCHAR) ### Question: Name the record with result of w 13-11 ### Answer: SELECT record FROM table_name_51 WHERE result = "w 13-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_17103729_8 (score VARCHAR, date VARCHAR) ### Question: Namethe score for july 16 ### Answer: SELECT score FROM table_17103729_8 WHERE date = "July 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_22862203_2 (terps_points VARCHAR, date VARCHAR) ### Question: What are the terps points for the nov. 25/05 game? ### Answer: SELECT terps_points FROM table_22862203_2 WHERE date = "Nov. 25/05"
Below is an context that describes a sql 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 (week VARCHAR, record VARCHAR) ### Question: Tell me the week for record of 0-1 ### Answer: SELECT week FROM table_name_19 WHERE record = "0-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_1 (placings VARCHAR, points VARCHAR, name VARCHAR) ### Question: How many Placings have Points smaller than 330.84, and a Name of silvo svajger? ### Answer: SELECT COUNT(placings) FROM table_name_1 WHERE points < 330.84 AND name = "silvo svajger"
Below is an context that describes a sql 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 (eliminated VARCHAR, time VARCHAR) ### Question: What is the number eliminated for the person with a time of 12:38? ### Answer: SELECT eliminated AS by FROM table_name_15 WHERE time = "12: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_97 (country VARCHAR, player VARCHAR) ### Question: Which country is Lee Trevino from? ### Answer: SELECT country FROM table_name_97 WHERE player = "lee trevino"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23486853_6 (record VARCHAR, opponent VARCHAR) ### Question: What is the record when the opposing team was the Pittsburgh Penguins? ### Answer: SELECT record FROM table_23486853_6 WHERE opponent = "Pittsburgh Penguins"
Below is an context that describes a 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_6 (nationality VARCHAR, player VARCHAR) ### Question: What is the nationality of the player kevin stevens? ### Answer: SELECT nationality FROM table_2679061_6 WHERE player = "Kevin Stevens"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_61 (races INTEGER, points VARCHAR, poles VARCHAR) ### Question: what is the average races when points is 9 and poles is less than 0? ### Answer: SELECT AVG(races) FROM table_name_61 WHERE points = "9" AND poles < 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_12 (points VARCHAR, year INTEGER) ### Question: How many points are there later than 1992? ### Answer: SELECT COUNT(points) FROM table_name_12 WHERE year > 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_16 (metas_volantes_classification VARCHAR, points_classification VARCHAR) ### Question: Who won the Metas Volantes Classification in the stage in which Damiano Cunego won the points classification? ### Answer: SELECT metas_volantes_classification FROM table_name_16 WHERE points_classification = "damiano cunego"
Below is an context that describes a sql 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 (employees__world_ VARCHAR, revenue__mil€_ VARCHAR) ### Question: What is hte nuumber of employees that has a revenue of 104.000? ### Answer: SELECT employees__world_ FROM table_name_60 WHERE revenue__mil€_ = "104.000"
Below is an context that describes a sql 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 (points VARCHAR, races VARCHAR, wins VARCHAR, podiums VARCHAR) ### Question: What were the points in the year when his Wins were 0, his Podiums were 0, and he drove in 4 races? ### Answer: SELECT points FROM table_name_60 WHERE wins = "0" AND podiums = "0" AND races = "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_47 (attendance VARCHAR, date VARCHAR) ### Question: What was the attendance on August 8? ### Answer: SELECT attendance FROM table_name_47 WHERE date = "august 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_18328569_1 (clubs_remaining VARCHAR, winners_from_previous_round VARCHAR) ### Question: How many clubs are remaining when the winners from the previous round totals 4? ### Answer: SELECT clubs_remaining FROM table_18328569_1 WHERE winners_from_previous_round = "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_17 (tournament VARCHAR) ### Question: What was the result in 2009 for the US Open Tournament? ### Answer: SELECT 2009 FROM table_name_17 WHERE tournament = "us open"
Below is an context that describes a sql 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 (date VARCHAR, game_site VARCHAR) ### Question: When did they play at Candlestick Park? ### Answer: SELECT date FROM table_name_25 WHERE game_site = "candlestick 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_5 (home_team VARCHAR, away_team VARCHAR) ### Question: Which team played against North Melbourne as the home team? ### Answer: SELECT home_team FROM table_name_5 WHERE away_team = "north 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_23575917_6 (episode VARCHAR, davids_team VARCHAR) ### Question: When bill oddie and frank skinner are both on the davids team what is the episode? ### Answer: SELECT episode FROM table_23575917_6 WHERE davids_team = "Bill Oddie and Frank Skinner"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1506950_9 (us_open VARCHAR, open_ch VARCHAR) ### Question: What was the player's result at the U.S. Open of the player who finished 6th at the Open Ch? ### Answer: SELECT us_open FROM table_1506950_9 WHERE open_ch = "6th"
Below is an context that describes a sql 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, score VARCHAR) ### Question: On what date was the score 6–4, 7–5? ### Answer: SELECT date FROM table_name_69 WHERE score = "6–4, 7–5"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR) ### Question: Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver? ### Answer: SELECT MAX(season) FROM table_name_7 WHERE percentage = "67%" AND driver = "alberto ascari"
Below is an context that describes a sql 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 (start_source VARCHAR, started VARCHAR) ### Question: what is the start source when started on 2 february? ### Answer: SELECT start_source FROM table_name_47 WHERE started = "2 february"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11545282_11 (position VARCHAR, no VARCHAR) ### Question: What is the position of number 47? ### Answer: SELECT position FROM table_11545282_11 WHERE no = "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_40 (score VARCHAR, money___$__ VARCHAR) ### Question: What is the score for the player who won $3,600? ### Answer: SELECT score FROM table_name_40 WHERE money___$__ = "3,600"
Below is an context that describes a sql 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 (losses INTEGER, wins VARCHAR, position VARCHAR) ### Question: What is the total number of losses for entries with 15 wins and a position larger than 3? ### Answer: SELECT SUM(losses) FROM table_name_69 WHERE wins = 15 AND position > 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_25999087_2 (young_rider_classification VARCHAR, winner VARCHAR) ### Question: Who is every young rider classification when Jelle Vanendert is the winner? ### Answer: SELECT young_rider_classification FROM table_25999087_2 WHERE winner = "Jelle Vanendert"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26842217_4 (home_team VARCHAR, time VARCHAR, broadcast VARCHAR) ### Question: What home team is at 7:30pm in ESPN? ### Answer: SELECT home_team FROM table_26842217_4 WHERE time = "7:30pm" AND broadcast = "ESPN"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2468961_4 (title VARCHAR, written_by VARCHAR, no_in_series VARCHAR) ### Question: What was the title of the episode written by Julia Newton in series 48? ### Answer: SELECT title FROM table_2468961_4 WHERE written_by = "Julia Newton" AND no_in_series = 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_23014685_1 (area_damaged VARCHAR, target VARCHAR) ### Question: What area was damaged when King Khalid Military City was targeted? ### Answer: SELECT area_damaged FROM table_23014685_1 WHERE target = "King Khalid Military City"
Below is an context that describes a sql 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 (total INTEGER, UEfa_cup VARCHAR) ### Question: What is the sum of totals associated with a UEFA Cup score of 4? ### Answer: SELECT SUM(total) FROM table_name_48 WHERE UEfa_cup = 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_20026849_1 (winner VARCHAR, destination VARCHAR) ### Question: Who won the season with Africa as its destination? ### Answer: SELECT winner FROM table_20026849_1 WHERE destination = "Africa"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24908692_5 (steals VARCHAR, player VARCHAR) ### Question: How many steals did Tamika Williams have? ### Answer: SELECT steals FROM table_24908692_5 WHERE player = "Tamika Williams"
Below is an context that describes a sql 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 (raion__district__or_city VARCHAR, bessarabian_bulgarians VARCHAR) ### Question: What city or Raion (district) has 8,600 Bessarabian Bulgarians? ### Answer: SELECT raion__district__or_city FROM table_name_58 WHERE bessarabian_bulgarians = "8,600"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15416002_1 (saffir_simpson_category VARCHAR, name VARCHAR) ### Question: What is the Saffir-Simpson category for the hurricane named Bonnie? ### Answer: SELECT saffir_simpson_category FROM table_15416002_1 WHERE name = "Bonnie"
Below is an context that describes a sql 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 (date VARCHAR, week VARCHAR) ### Question: Which date has 1 as the week? ### Answer: SELECT date FROM table_name_22 WHERE week = 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_1342013_9 (first_elected VARCHAR, incumbent VARCHAR) ### Question: how many first elected with incumbent being charles edward bennett ### Answer: SELECT COUNT(first_elected) FROM table_1342013_9 WHERE incumbent = "Charles Edward Bennett"
Below is an context that describes a sql 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 (year VARCHAR, third VARCHAR) ### Question: What year did Kyle Newman place third? ### Answer: SELECT year FROM table_name_34 WHERE third = "kyle newman"
Below is an context that describes a sql 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 (date VARCHAR, venue VARCHAR) ### Question: On what date was the venue at Brisbane Cricket Ground? ### Answer: SELECT date FROM table_name_23 WHERE venue = "brisbane cricket ground"
Below is an context that describes a sql 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 (finish VARCHAR, to_par VARCHAR) ### Question: What is the finish when the to par is +18? ### Answer: SELECT finish FROM table_name_18 WHERE to_par = "+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_29583441_1 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: What date did the episode that was directed by Christian i. nyby ii originally air on? ### Answer: SELECT original_air_date FROM table_29583441_1 WHERE directed_by = "Christian I. Nyby II"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24446718_7 (awardee_s_ VARCHAR, name_of_award VARCHAR) ### Question: Name the awardee for best editing ### Answer: SELECT awardee_s_ FROM table_24446718_7 WHERE name_of_award = "Best Editing"
Below is an context that describes a sql 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 (played INTEGER, drawn INTEGER) ### Question: What is the largest played when the drawn is less than 1? ### Answer: SELECT MAX(played) FROM table_name_62 WHERE drawn < 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_53 (catalogue VARCHAR, region VARCHAR) ### Question: Name the catalogue for australia ### Answer: SELECT catalogue FROM table_name_53 WHERE region = "australia"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23286722_1 (directed_by VARCHAR, season__number VARCHAR) ### Question: Name the directed by season # 2 ### Answer: SELECT directed_by FROM table_23286722_1 WHERE season__number = 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_63 (date VARCHAR, opponents VARCHAR) ### Question: Opponents of sheffield wednesday had what date? ### Answer: SELECT date FROM table_name_63 WHERE opponents = "sheffield wednesday"
Below is an context that describes a sql 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 (date VARCHAR, opposing_teams VARCHAR) ### Question: What is the date when France is the opposing team? ### Answer: SELECT date FROM table_name_50 WHERE opposing_teams = "france"