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_99 (location_attendance VARCHAR, game VARCHAR, team VARCHAR) ### Question: What is the location and attendance after game 2, and the team New Orleans? ### Answer: SELECT location_attendance FROM table_name_99 WHERE game > 2 AND team = "new orleans"
Below is an context that describes a sql 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 (name VARCHAR, license VARCHAR) ### Question: Who has a license of proprietary (available on inquiry)? ### Answer: SELECT name FROM table_name_67 WHERE license = "proprietary (available on inquiry)"
Below is an context that describes a sql 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 (adelaide VARCHAR, auckland VARCHAR, melbourne VARCHAR) ### Question: Which Adelaide has an Auckland of no and a Melbourne of no? ### Answer: SELECT adelaide FROM table_name_76 WHERE auckland = "no" AND melbourne = "no"
Below is an context that describes a sql 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 (score VARCHAR, competition VARCHAR) ### Question: What was the score for the 2014 FIFA World Cup Qual. competition? ### Answer: SELECT score FROM table_name_13 WHERE competition = "2014 fifa world cup qual."
Below is an context that describes a sql 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 (rank VARCHAR, time VARCHAR, rider VARCHAR) ### Question: How many ranks have 1:01.14.62 as the time, with michael russell as the rider? ### Answer: SELECT COUNT(rank) FROM table_name_98 WHERE time = "1:01.14.62" AND rider = "michael russell"
Below is an context that describes a sql 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 (isbn VARCHAR, year VARCHAR) ### Question: What is the ISBN in 1999? ### Answer: SELECT isbn FROM table_name_48 WHERE year = 1999
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_71 (wins VARCHAR, win__percentage VARCHAR) ### Question: Which win has 38.67% wins? ### Answer: SELECT wins FROM table_name_71 WHERE win__percentage = "38.67%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22883210_10 (location_attendance VARCHAR, team VARCHAR) ### Question: Name the location attendance for minnesota ### Answer: SELECT location_attendance FROM table_22883210_10 WHERE team = "Minnesota"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE departments (department_id VARCHAR, department_name VARCHAR); CREATE TABLE employees (first_name VARCHAR, job_id VARCHAR, department_id VARCHAR) ### Question: What is the first name and job id for all employees in the Finance department? ### Answer: SELECT T1.first_name, T1.job_id FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id WHERE T2.department_name = 'Finance'
Below is an context that describes a sql 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 (date VARCHAR) ### Question: For sep 18 what is the total number of 1 prize ($) ### Answer: SELECT COUNT(1 AS st_prize__) AS $__ FROM table_name_56 WHERE date = "sep 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_13 (site VARCHAR, opponent VARCHAR) ### Question: What is Site, when Opponent is "All times are in eastern."? ### Answer: SELECT site FROM table_name_13 WHERE opponent = "all times are in eastern."
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_32 (laps INTEGER, driver VARCHAR, grid VARCHAR) ### Question: What is the average laps for ralph firman with a grid of over 19? ### Answer: SELECT AVG(laps) FROM table_name_32 WHERE driver = "ralph firman" AND grid > 19
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_255205_1 (joined VARCHAR, type VARCHAR) ### Question: How many joined this Private/Church of God institution? ### Answer: SELECT joined FROM table_255205_1 WHERE type = "Private/Church of God"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE assignedto (scientist VARCHAR) ### Question: How many different scientists are assigned to any project? ### Answer: SELECT COUNT(DISTINCT scientist) FROM assignedto
Below is an context that describes a sql 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 (overall INTEGER, school_club_team VARCHAR) ### Question: Which was the lowest overall that Wisconsin's team managed? ### Answer: SELECT MIN(overall) FROM table_name_78 WHERE school_club_team = "wisconsin"
Below is an context that describes a sql 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 (casualties VARCHAR, location VARCHAR, circumstances VARCHAR) ### Question: Which Casualties have a Location of kunduz, and Circumstances of suicide? ### Answer: SELECT casualties FROM table_name_24 WHERE location = "kunduz" AND circumstances = "suicide"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_77 (elevated VARCHAR, cardinalatial_title VARCHAR) ### Question: What's listed for Elevatated that has Cardinalatial title of Priest of SS. XII Apostoli? ### Answer: SELECT elevated FROM table_name_77 WHERE cardinalatial_title = "priest of ss. xii apostoli"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_3 (entrant VARCHAR, year VARCHAR) ### Question: Who was the entrant in 1971? ### Answer: SELECT entrant FROM table_name_3 WHERE year = 1971
Below is an context that describes a sql 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 (rank INTEGER, population INTEGER) ### Question: Name the most rank for population more than 93,378 ### Answer: SELECT MAX(rank) FROM table_name_5 WHERE population > 93 OFFSET 378
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_2 (winners VARCHAR) ### Question: Who came in 3rd when Nicolai Klindt won? ### Answer: SELECT 3 AS rd_place FROM table_name_2 WHERE winners = "nicolai klindt"
Below is an context that describes a sql 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 (season VARCHAR, champion VARCHAR) ### Question: Which season was Manresa the champion? ### Answer: SELECT season FROM table_name_46 WHERE champion = "manresa"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_27 (l_100km_urban__cold_ INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_combined VARCHAR, engine_capacity VARCHAR, mpg_us_urban VARCHAR) ### Question: What is the average L/100km urban (cold) for engine capacities over 1910, mpg in the US (urban) under 25.3, mpg in the UK (combined) over 27.2, and mpg in the UK (urban, cold) of 22.4? ### Answer: SELECT AVG(l_100km_urban__cold_) FROM table_name_27 WHERE engine_capacity > 1910 AND mpg_us_urban < 25.3 AND mpg_uk_combined > 27.2 AND mpg_uk_urban__cold_ = 22.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_81 (rettö VARCHAR, linke VARCHAR, fritz VARCHAR) ### Question: What percent did RETTÖ get in the state where LINKE got 0.1%, and FRITZ got 1.3%? ### Answer: SELECT rettö FROM table_name_81 WHERE linke = "0.1%" AND fritz = "1.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_19897294_4 (no_in_series INTEGER) ### Question: How many series are there total? ### Answer: SELECT MAX(no_in_series) FROM table_19897294_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_13416000_3 (champions VARCHAR, first_driver_s_ VARCHAR) ### Question: How many champions were there when the first driver was hiroki yoshimoto ( 2005 )? ### Answer: SELECT champions FROM table_13416000_3 WHERE first_driver_s_ = "Hiroki Yoshimoto ( 2005 )"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_16 (ends_lost INTEGER, stolen_ends_for VARCHAR, stolen_ends_against VARCHAR) ### Question: What is the lowest ends lost when the stolen ends for is less than 13, and stolten ends against is 6? ### Answer: SELECT MIN(ends_lost) FROM table_name_16 WHERE stolen_ends_for < 13 AND stolen_ends_against = 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_10 (record VARCHAR, score VARCHAR) ### Question: What was the Record of the game with a Score of 118–105? ### Answer: SELECT record FROM table_name_10 WHERE score = "118–105"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11303072_9 (nationality VARCHAR, player VARCHAR) ### Question: Where is Adam Gilchrist from? ### Answer: SELECT nationality FROM table_11303072_9 WHERE player = "Adam Gilchrist"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR) ### Question: how many high assists stats were maade on february 4 ### Answer: SELECT COUNT(high_assists) FROM table_17311759_7 WHERE date = "February 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_14724369_1 (directed_by VARCHAR, written_by VARCHAR) ### Question: How many people directed the show written by Chris Sheridan? ### Answer: SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, position VARCHAR, round VARCHAR) ### Question: what is the college/junior/club team (league) when the position is (c) and the round is higher than 2? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_52 WHERE position = "(c)" AND round > 2
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_89 (match_report VARCHAR, date VARCHAR, competition VARCHAR, venue VARCHAR) ### Question: What was the Match Report for the Euro2008q at the Athens Olympic Stadium on November 17, 2007? ### Answer: SELECT match_report FROM table_name_89 WHERE competition = "euro2008q" AND venue = "athens olympic stadium" AND date = "november 17, 2007"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_4 (year VARCHAR, venue VARCHAR, position VARCHAR, notes VARCHAR) ### Question: Which Year has a Position of 2nd, and Notes of -63kg, and a Venue of manchester? ### Answer: SELECT year FROM table_name_4 WHERE position = "2nd" AND notes = "-63kg" AND venue = "manchester"
Below is an context that describes a sql 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 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) ### Question: What year were the Grizzlies in Providence? ### Answer: SELECT years_for_grizzlies FROM table_name_19 WHERE school_club_team = "providence"
Below is an context that describes a sql 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 (turbo VARCHAR, part_number_s_ VARCHAR) ### Question: what is the turbo when the part number is cm8062300834302bx80623i72600bxc80623i72600? ### Answer: SELECT turbo FROM table_name_62 WHERE part_number_s_ = "cm8062300834302bx80623i72600bxc80623i72600"
Below is an context that describes a sql 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 (wins INTEGER, tournament VARCHAR, events VARCHAR) ### Question: How many times did Morgan win The Masters Tournament with fewer than 12 appearances? ### Answer: SELECT AVG(wins) FROM table_name_12 WHERE tournament = "masters tournament" AND events < 12
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR, result VARCHAR) ### Question: On what date was the week less than 3 with a result of w 24-13? ### Answer: SELECT date FROM table_name_60 WHERE week < 3 AND result = "w 24-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_27722734_12 (game INTEGER) ### Question: What number was the first game? ### Answer: SELECT MIN(game) FROM table_27722734_12
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24057191_2 (start_date VARCHAR, series VARCHAR) ### Question: When did series 6 start? ### Answer: SELECT start_date FROM table_24057191_2 WHERE series = 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_86 (captain VARCHAR, team VARCHAR) ### Question: What is the captain's name of team Leeds United? ### Answer: SELECT captain FROM table_name_86 WHERE team = "leeds united"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23465864_5 (rider VARCHAR, mon_24_aug VARCHAR) ### Question: What is every rider on Monday August 24 at 21' 12.02 106.781mph? ### Answer: SELECT rider FROM table_23465864_5 WHERE mon_24_aug = "21' 12.02 106.781mph"
Below is an context that describes a sql 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 (vacator VARCHAR, reason_for_change VARCHAR) ### Question: which Vacator has a Reason for change of resigned november 10, 1965? ### Answer: SELECT vacator FROM table_name_6 WHERE reason_for_change = "resigned november 10, 1965"
Below is an context that describes a sql 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 (drawn INTEGER, games INTEGER) ### Question: What is the fewest ties the team had with fewer than 7 games? ### Answer: SELECT MIN(drawn) FROM table_name_25 WHERE games < 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_21 (raiders_first_downs VARCHAR, date VARCHAR, raiders_points VARCHAR) ### Question: What is the total number of Raiders First Downs, when Date is "Nov. 2", and when Raiders Points is greater than 42? ### Answer: SELECT COUNT(raiders_first_downs) FROM table_name_21 WHERE date = "nov. 2" AND raiders_points > 42
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16387653_1 (home_team VARCHAR) ### Question: What to Footscray score at home? ### Answer: SELECT home_team AS score FROM table_16387653_1 WHERE home_team = "Footscray"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2876467_3 (total_top_3_placements VARCHAR, region_represented VARCHAR) ### Question: How many values of total top 3 placements does Taiwan have? ### Answer: SELECT COUNT(total_top_3_placements) FROM table_2876467_3 WHERE region_represented = "Taiwan"
Below is an context that describes a sql 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 (decision VARCHAR, visitor VARCHAR) ### Question: What was the decision of the Lightning game when the Canadiens were the away team? ### Answer: SELECT decision FROM table_name_56 WHERE visitor = "canadiens"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_47 (week VARCHAR, opponent VARCHAR) ### Question: What game week did the Buccaneers play against the Minnesota Vikings? ### Answer: SELECT week FROM table_name_47 WHERE opponent = "minnesota vikings"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21676617_1 (horse VARCHAR, year VARCHAR) ### Question: How many horses are mentioned competing in 1985? ### Answer: SELECT COUNT(horse) FROM table_21676617_1 WHERE year = 1985
Below is an context that describes a sql 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 (pick__number VARCHAR, cfl_team VARCHAR) ### Question: What is the Pick # for the Edmonton Eskimos? ### Answer: SELECT COUNT(pick__number) FROM table_name_14 WHERE cfl_team = "edmonton eskimos"
Below is an context that describes a sql 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 (losses INTEGER, draws VARCHAR, season VARCHAR) ### Question: What is the least amount of losses for the team that had more than 0 draws during the seasons earlier than 1926? ### Answer: SELECT MIN(losses) FROM table_name_13 WHERE draws > 0 AND season < 1926
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21436373_8 (type_of_record VARCHAR, date_year VARCHAR) ### Question: What record was set on Tue 11/02/75? ### Answer: SELECT type_of_record FROM table_21436373_8 WHERE date_year = "Tue 11/02/75"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23284271_11 (location_attendance VARCHAR, game VARCHAR) ### Question: Name the location attendance for 4 game ### Answer: SELECT location_attendance FROM table_23284271_11 WHERE game = 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_31 (top_25 INTEGER, cuts_made INTEGER) ### Question: What is the fewest number of top-25s for events with more than 13 cuts made? ### Answer: SELECT MIN(top_25) FROM table_name_31 WHERE cuts_made > 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_13 (date VARCHAR, tie_no VARCHAR) ### Question: What is the Date of Tie no 21? ### Answer: SELECT date FROM table_name_13 WHERE tie_no = "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_73 (winning_score VARCHAR, tournament VARCHAR) ### Question: what is the winning score when the tournament is safeco classic? ### Answer: SELECT winning_score FROM table_name_73 WHERE tournament = "safeco classic"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26980923_2 (total INTEGER, team VARCHAR) ### Question: What is the total attended for kilmarnock? ### Answer: SELECT MIN(total) FROM table_26980923_2 WHERE team = "Kilmarnock"
Below is an context that describes a sql 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 (name VARCHAR, total VARCHAR, rank VARCHAR) ### Question: What is the Name of the person with a Total of 3 (15), and Rank of more than 3? ### Answer: SELECT name FROM table_name_87 WHERE total = "3 (15)" AND rank > 3
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_27 (playoffs VARCHAR, year VARCHAR) ### Question: In 1924/25, who was in the playoffs? ### Answer: SELECT playoffs FROM table_name_27 WHERE year = "1924/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_1816947_2 (division___section VARCHAR, average_attendance_home VARCHAR) ### Question: Which division has an average home attendance of 2.459? ### Answer: SELECT division___section FROM table_1816947_2 WHERE average_attendance_home = "2.459"
Below is an context that describes a sql 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 (player VARCHAR, to_par VARCHAR) ### Question: Which player had a To par of +11? ### Answer: SELECT player FROM table_name_55 WHERE to_par = "+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_27369069_4 (university VARCHAR, soccer_stadium VARCHAR) ### Question: What is the university where the soccer stadium is terrain #2 of complexe sportif claude-robillard? ### Answer: SELECT university FROM table_27369069_4 WHERE soccer_stadium = "terrain #2 of Complexe sportif Claude-Robillard"
Below is an context that describes a sql 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 (venue VARCHAR, against VARCHAR, date VARCHAR) ### Question: What is Venue, when Against is greater than 9, and when Date is "03/02/1996"? ### Answer: SELECT venue FROM table_name_58 WHERE against > 9 AND date = "03/02/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_name_92 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, std_rank VARCHAR) ### Question: Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6? ### Answer: SELECT MAX(floors) FROM table_name_92 WHERE pinnacle_height_ft__m_ = "995 (303)" AND std_rank > 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_13 (total_produced INTEGER, builder’s_model VARCHAR, wheel_arrangement VARCHAR, prr_class VARCHAR) ### Question: How many total units were built of Model ds-4-4-660 with a b-b wheel arrangement and a PRR Class of bs6? ### Answer: SELECT SUM(total_produced) FROM table_name_13 WHERE wheel_arrangement = "b-b" AND prr_class = "bs6" AND builder’s_model = "ds-4-4-660"
Below is an context that describes a sql 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 (number_of_households INTEGER, median_household_income VARCHAR) ### Question: How many households have a Median household income of $43,889? ### Answer: SELECT AVG(number_of_households) FROM table_name_71 WHERE median_household_income = "$43,889"
Below is an context that describes a sql 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 (country VARCHAR, city VARCHAR) ### Question: Where is the City of Douala? ### Answer: SELECT country FROM table_name_59 WHERE city = "douala"
Below is an context that describes a 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_7 (pop__2010_ VARCHAR, county VARCHAR, geo_id VARCHAR) ### Question: In Cavalier County and the geo id is larger than 3801931620.0, what is the population? ### Answer: SELECT pop__2010_ FROM table_18600760_7 WHERE county = "Cavalier" AND geo_id > 3801931620.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_2 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: What is the score of the match played on a hard surface with an opponent in the final of Elena Likhovtseva? ### Answer: SELECT score FROM table_name_2 WHERE surface = "hard" AND opponent_in_the_final = "elena likhovtseva"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15001572_1 (mixed_doubles VARCHAR, year VARCHAR) ### Question: Who won the mixed doubles in 1998? ### Answer: SELECT mixed_doubles FROM table_15001572_1 WHERE year = 1998
Below is an context that describes a sql 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 (team VARCHAR, first_round VARCHAR) ### Question: What Team had the first round of 1:00? ### Answer: SELECT team FROM table_name_53 WHERE first_round = "1: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_name_10 (total INTEGER, gold VARCHAR, bronze VARCHAR) ### Question: Name the sum of total with gold more than 1 and bronze more than 0 ### Answer: SELECT SUM(total) FROM table_name_10 WHERE gold > 1 AND bronze > 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_62 (year INTEGER, nominated_work VARCHAR, category VARCHAR) ### Question: In what year was The House of Blue Leaves nominated for outstanding actress in a play? ### Answer: SELECT SUM(year) FROM table_name_62 WHERE nominated_work = "the house of blue leaves" AND category = "outstanding actress in a play"
Below is an context that describes a sql 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 (region VARCHAR, name VARCHAR, area__km_2__ VARCHAR) ### Question: What was the region for Malartic with 159.31 km2? ### Answer: SELECT COUNT(region) FROM table_name_14 WHERE name = "malartic" AND area__km_2__ < 159.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_73 (ag VARCHAR, transmitter VARCHAR, d3 VARCHAR) ### Question: What is the A.G. value associated with D3&4 of 46 and transmitter of Seaham? ### Answer: SELECT ag FROM table_name_73 WHERE d3 & 4 = "46" AND transmitter = "seaham"
Below is an context that describes a sql 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 (city VARCHAR, winner VARCHAR, year VARCHAR) ### Question: What was the city where Hallescher FC won in 2008? ### Answer: SELECT city FROM table_name_74 WHERE winner = "hallescher fc" AND 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 table_name_51 (heat INTEGER, nationality VARCHAR, rank VARCHAR) ### Question: What is the earliest heat with a finisher from the Czech Republic and a rank over 41? ### Answer: SELECT MIN(heat) FROM table_name_51 WHERE nationality = "czech republic" AND rank > 41
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_9 (opponent VARCHAR, round VARCHAR) ### Question: Who was the opponent at the qf(r) round? ### Answer: SELECT opponent FROM table_name_9 WHERE round = "qf(r)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1399994_5 (outcome VARCHAR, year VARCHAR) ### Question: What was the outcome for the match in 1989? ### Answer: SELECT outcome FROM table_1399994_5 WHERE 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_22 (Id VARCHAR) ### Question: What is the 1994 finish in the event that had a 1998 finish of 2R? ### Answer: SELECT 1994 FROM table_name_22 WHERE 1998 = "2r"
Below is an context that describes a sql 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 (grand_final_television_commentator VARCHAR, spokesperson VARCHAR, year_s_ VARCHAR, grand_final_dual_television_commentator VARCHAR) ### Question: What is the grand final television commentator status after 1959 when Dave was the grand final dual television commentator and Marie Myriam was the spokesperson? ### Answer: SELECT grand_final_television_commentator FROM table_name_20 WHERE year_s_ > 1959 AND grand_final_dual_television_commentator = "dave" AND spokesperson = "marie myriam"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24353141_1 (original_tokyo___seoul_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR) ### Question: While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast? ### Answer: SELECT original_tokyo___seoul_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = "Nicci Claspell"
Below is an context that describes a sql 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 (term_of_office VARCHAR, member VARCHAR) ### Question: What was the term of office for noel beaton? ### Answer: SELECT term_of_office FROM table_name_1 WHERE member = "noel beaton"
Below is an context that describes a sql 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 (diff INTEGER, drawn VARCHAR, played VARCHAR) ### Question: What is the highest diff with drawn of 6 and play larger than 18? ### Answer: SELECT MAX(diff) FROM table_name_68 WHERE drawn = 6 AND played > 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_11677100_18 (school VARCHAR, hometown VARCHAR) ### Question: What school did the player attend who's hometown was Montvale, NJ? ### Answer: SELECT school FROM table_11677100_18 WHERE hometown = "Montvale, NJ"
Below is an context that describes a sql 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 (crowd INTEGER, venue VARCHAR) ### Question: In the Western Oval venue, what is the average crowd? ### Answer: SELECT AVG(crowd) FROM table_name_38 WHERE venue = "western oval"
Below is an context that describes a sql 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 (stations INTEGER, line VARCHAR) ### Question: What is the total number of stations with a line that is u 6? ### Answer: SELECT SUM(stations) FROM table_name_86 WHERE line = "u 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_21 (gold INTEGER, bronze VARCHAR, total VARCHAR) ### Question: Which Gold has a Bronze of 1, and a Total smaller than 3? ### Answer: SELECT AVG(gold) FROM table_name_21 WHERE bronze = 1 AND total < 3
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_90 (format VARCHAR, label VARCHAR, date VARCHAR) ### Question: What is the Format with a Label of electropolis and a Date that is 2002? ### Answer: SELECT format FROM table_name_90 WHERE label = "electropolis" AND date = "2002"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25561560_2 (yacht VARCHAR) ### Question: What is the yacht type of Icap Leopard? ### Answer: SELECT yacht AS type FROM table_25561560_2 WHERE yacht = "ICAP Leopard"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16185956_1 (elected VARCHAR, district VARCHAR) ### Question: How many times was the incumbent elected in Washington 4 district? ### Answer: SELECT COUNT(elected) FROM table_16185956_1 WHERE district = "Washington 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_73 (percentage VARCHAR, place VARCHAR) ### Question: What Percentage has a Place of 5? ### Answer: SELECT percentage FROM table_name_73 WHERE place = 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_2468961_2 (original_air_date VARCHAR, production_code VARCHAR) ### Question: What date did the episode with a production code of 447004 originally air? ### Answer: SELECT original_air_date FROM table_2468961_2 WHERE production_code = 447004
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_31 (air_date VARCHAR, test_taker VARCHAR) ### Question: On which air date was Robert the test-taker? ### Answer: SELECT air_date FROM table_name_31 WHERE test_taker = "robert"
Below is an context that describes a sql 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 (podiums INTEGER, points VARCHAR, wins VARCHAR, races VARCHAR) ### Question: What is the average Podiums, when Wins is greater than 1, when Races is 2, and when Points is greater than 150? ### Answer: SELECT AVG(podiums) FROM table_name_47 WHERE wins > 1 AND races = 2 AND points > 150
Below is an context that describes a sql 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 (expected_completion VARCHAR, capacity VARCHAR) ### Question: What is the year of expected completion when the capacity is 22,500? ### Answer: SELECT expected_completion FROM table_name_15 WHERE capacity = "22,500"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_15 (venue VARCHAR, year VARCHAR) ### Question: What is the venue with a competition in 1964? ### Answer: SELECT venue FROM table_name_15 WHERE year = 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_63 (total INTEGER, country VARCHAR) ### Question: What is Fiji's lowest total? ### Answer: SELECT MIN(total) FROM table_name_63 WHERE country = "fiji"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18173916_6 (friday VARCHAR, wednesday VARCHAR) ### Question: How many episodes were shown on Friday if 210 Kirby's Epic Yarn was shown on Wednesday? ### Answer: SELECT COUNT(friday) FROM table_18173916_6 WHERE wednesday = "210 Kirby's Epic Yarn"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1149495_1 (year VARCHAR, runner_up VARCHAR) ### Question: What year finished with Daniel Zueras as the runner-up? ### Answer: SELECT COUNT(year) FROM table_1149495_1 WHERE runner_up = "Daniel Zueras"