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_44 (age_category VARCHAR, name VARCHAR) ### Question: In which Age Category is Marco Manenti? ### Answer: SELECT age_category FROM table_name_44 WHERE name = "marco manenti"
Below is an context that describes a sql 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 (bronze INTEGER, silver INTEGER) ### Question: What is the sum of bronze when silver is greater than 3? ### Answer: SELECT SUM(bronze) FROM table_name_45 WHERE silver > 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_10650711_1 (nfl_team VARCHAR, player VARCHAR) ### Question: what's the nfl team where player is clifford charlton ### Answer: SELECT nfl_team FROM table_10650711_1 WHERE player = "Clifford Charlton"
Below is an context that describes a sql 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 (country VARCHAR, player VARCHAR) ### Question: What country has player Scott Verplank? ### Answer: SELECT country FROM table_name_64 WHERE player = "scott verplank"
Below is an context that describes a sql 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 (hometown VARCHAR, school VARCHAR) ### Question: Where is the Hometown of the person that attended Kennedy-Kenrick Catholic High School? ### Answer: SELECT hometown FROM table_name_64 WHERE school = "kennedy-kenrick catholic high school"
Below is an context that describes a sql 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 (team_2 VARCHAR, team_1 VARCHAR) ### Question: Which team has far rabat as the team 1? ### Answer: SELECT team_2 FROM table_name_64 WHERE team_1 = "far rabat"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12001616_4 (status VARCHAR, entrant VARCHAR) ### Question: What is the status of joe gibbs racing? ### Answer: SELECT status FROM table_12001616_4 WHERE entrant = "Joe Gibbs Racing"
Below is an context that describes a sql 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 (pct VARCHAR, total_games INTEGER) ### Question: What is the PCT when the total number of games is less than 944? ### Answer: SELECT pct FROM table_name_84 WHERE total_games < 944
Below is an context that describes a 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_7 (name VARCHAR, school_club_team VARCHAR) ### Question: Name the name for san beda ### Answer: SELECT name FROM table_15463188_7 WHERE school_club_team = "San Beda"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11464746_1 (composition VARCHAR, colours VARCHAR) ### Question: What is the green house made of? ### Answer: SELECT composition FROM table_11464746_1 WHERE colours = "Green"
Below is an context that describes a sql 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 (rank VARCHAR, name VARCHAR) ### Question: What is the rank of Point Hyllie? ### Answer: SELECT rank FROM table_name_52 WHERE name = "point hyllie"
Below is an context that describes a 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 (first_place INTEGER, third_place VARCHAR) ### Question: What is the maximum number of 1st places for the country with exactly 1 third place? ### Answer: SELECT MAX(first_place) FROM table_2876467_3 WHERE third_place = 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_46 (opponent VARCHAR, record VARCHAR, week VARCHAR, game_site VARCHAR) ### Question: Which Opponent has a Week larger than 3, and a Game site of mile high stadium, and a Record of 3–3? ### Answer: SELECT opponent FROM table_name_46 WHERE week > 3 AND game_site = "mile high stadium" AND record = "3–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_36 (visiting_team VARCHAR, stadium VARCHAR) ### Question: Who was the visiting team at Raymond James Stadium? ### Answer: SELECT visiting_team FROM table_name_36 WHERE stadium = "raymond james stadium"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE shop (LOCATION VARCHAR, Open_Year INTEGER) ### Question: Show the locations shared by shops with open year later than 2012 and shops with open year before 2008. ### Answer: SELECT LOCATION FROM shop WHERE Open_Year > 2012 INTERSECT SELECT LOCATION FROM shop WHERE Open_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_1831262_2 (pinoresinol INTEGER, foodstuff VARCHAR) ### Question: what is the maximum number of pinorinol in wheat bran? ### Answer: SELECT MAX(pinoresinol) FROM table_1831262_2 WHERE foodstuff = "Wheat bran"
Below is an context that describes a sql 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 (country VARCHAR, catalogue__number VARCHAR) ### Question: What Country is Catalogue # ASW 50248 (724385024825) from? ### Answer: SELECT country FROM table_name_77 WHERE catalogue__number = "asw 50248 (724385024825)"
Below is an context that describes a sql 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 (decile INTEGER, area VARCHAR, roll VARCHAR) ### Question: What is the total decile in the area of Normanby with a roller smaller than 157? ### Answer: SELECT SUM(decile) FROM table_name_99 WHERE area = "normanby" AND roll < 157
Below is an context that describes a sql 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 (player VARCHAR, to_par VARCHAR, score VARCHAR) ### Question: What is the Player that has a To standard of –4, and a Score of 74-70-68=212? ### Answer: SELECT player FROM table_name_45 WHERE to_par = "–4" AND score = 74 - 70 - 68 = 212
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_42 (site INTEGER, sex_and_other_data VARCHAR) ### Question: Which Site that has a Sex and other data of old male? ### Answer: SELECT MAX(site) FROM table_name_42 WHERE sex_and_other_data = "old male"
Below is an context that describes a sql 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 (year_s__won VARCHAR, total INTEGER) ### Question: What year won has a total less than 281? ### Answer: SELECT year_s__won FROM table_name_71 WHERE total < 281
Below is an context that describes a sql 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 (name_v_t_e VARCHAR, jersey_number VARCHAR, weight__kg_ VARCHAR, position VARCHAR) ### Question: What was the Name v t e, of the player whose Weight (kg) was 84, whose Position was D, and whose Jersey number was 2? ### Answer: SELECT name_v_t_e FROM table_name_32 WHERE weight__kg_ = 84 AND position = "d" AND jersey_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_80 (judge_e VARCHAR, judge_c VARCHAR, rider VARCHAR) ### Question: what is the judge e when judge c is 56.67 and the rider is dag albert? ### Answer: SELECT judge_e FROM table_name_80 WHERE judge_c = "56.67" AND rider = "dag albert"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_20500097_1 (team VARCHAR, series VARCHAR) ### Question: What team did he compete for in the GP3 series? ### Answer: SELECT team FROM table_20500097_1 WHERE series = "GP3 series"
Below is an context that describes a sql 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 (record VARCHAR, score VARCHAR) ### Question: What was the record for the game that had a score of 105-72? ### Answer: SELECT record FROM table_name_45 WHERE score = "105-72"
Below is an context that describes a sql 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 (gpu_frequency VARCHAR, frequency VARCHAR, sspec_number VARCHAR) ### Question: What is GPU Frequency, when Frequency is 1.67 GHz, and when sSpec Number is SLBX9(A0)? ### Answer: SELECT gpu_frequency FROM table_name_71 WHERE frequency = "1.67 ghz" AND sspec_number = "slbx9(a0)"
Below is an context that describes a sql 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 (week VARCHAR, attendance VARCHAR) ### Question: Which week's game was attended by 65,272 people? ### Answer: SELECT week FROM table_name_18 WHERE attendance = "65,272"
Below is an context that describes a sql 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 (constructor VARCHAR, driver VARCHAR) ### Question: What is the constructor for Jackie Stewart's car? ### Answer: SELECT constructor FROM table_name_3 WHERE driver = "jackie stewart"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_26 (site VARCHAR, game VARCHAR) ### Question: Name the site for game of game 2 ### Answer: SELECT site FROM table_name_26 WHERE game = "game 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_85 (opening VARCHAR, worldwide VARCHAR) ### Question: WHAT IS THE OPENING WITH A WORLDWIDE NUMBER OF $559,852,396? ### Answer: SELECT opening FROM table_name_85 WHERE worldwide = "$559,852,396"
Below is an context that describes a sql 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 (tournament VARCHAR, opponent VARCHAR) ### Question: What tournament is lesley joseph the opponent? ### Answer: SELECT tournament FROM table_name_11 WHERE opponent = "lesley joseph"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19930660_1 (winner VARCHAR, marcus_guest VARCHAR) ### Question: Name the winner for jason byrne ### Answer: SELECT winner FROM table_19930660_1 WHERE marcus_guest = "Jason Byrne"
Below is an context that describes a sql 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 (code VARCHAR, population INTEGER) ### Question: What is the total code number for places with a population greater than 87,585? ### Answer: SELECT COUNT(code) FROM table_name_41 WHERE population > 87 OFFSET 585
Below is an context that describes a sql 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 (record VARCHAR, game VARCHAR, score VARCHAR) ### Question: What is the Record for a game less than 3 and the score was l 91–96 (ot)? ### Answer: SELECT record FROM table_name_19 WHERE game < 3 AND score = "l 91–96 (ot)"
Below is an context that describes a sql 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 (pick VARCHAR, round VARCHAR, player VARCHAR) ### Question: What was the pick number for the compensation-a round, for player Frank Catalanotto? ### Answer: SELECT pick FROM table_name_93 WHERE round = "compensation-a" AND player = "frank catalanotto"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24136814_3 (record VARCHAR, date VARCHAR) ### Question: What was the record for the Argonauts on September 7? ### Answer: SELECT record FROM table_24136814_3 WHERE date = "September 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_51 (laps VARCHAR, driver VARCHAR) ### Question: How many laps does roberto moreno have? ### Answer: SELECT laps FROM table_name_51 WHERE driver = "roberto moreno"
Below is an context that describes 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 (first_name VARCHAR, last_name VARCHAR, birth_date VARCHAR) ### Question: Who is the youngest employee in the company? List employee's first and last name. ### Answer: SELECT first_name, last_name FROM employees ORDER BY birth_date DESC LIMIT 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_42 (text_symbol VARCHAR, border VARCHAR) ### Question: Which sign has a red border? ### Answer: SELECT text_symbol FROM table_name_42 WHERE border = "red"
Below is an context that describes a sql 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 (lost VARCHAR, points VARCHAR) ### Question: What lost has 86 points? ### Answer: SELECT lost FROM table_name_67 WHERE points = "86"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14945112_1 (opponent VARCHAR, date VARCHAR) ### Question: Who were all of the opponents when the date was November 12, 1978? ### Answer: SELECT opponent FROM table_14945112_1 WHERE date = "November 12, 1978"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27914076_1 (frequency VARCHAR, branding VARCHAR) ### Question: Name the frequency for 103.7 energy fm dipolog* ### Answer: SELECT frequency FROM table_27914076_1 WHERE branding = "103.7 Energy FM Dipolog*"
Below is an context that describes a sql 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 (club VARCHAR, home_ground VARCHAR) ### Question: Which club, had a home ground of n/a? ### Answer: SELECT club FROM table_name_95 WHERE home_ground = "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_16331144_1 (runner_up VARCHAR, third_place VARCHAR) ### Question: Who was the runner-up when Mohamed Ali got third? ### Answer: SELECT runner_up FROM table_16331144_1 WHERE third_place = "Mohamed Ali"
Below is an context that describes a sql 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 (train_no VARCHAR, origin VARCHAR) ### Question: What is number of the train that originated in Secunderabad Junction? ### Answer: SELECT train_no FROM table_name_87 WHERE origin = "secunderabad junction"
Below is an context that describes a sql 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 (pick INTEGER, college VARCHAR) ### Question: What is the highest pick when the college is saginaw valley state? ### Answer: SELECT MAX(pick) FROM table_name_61 WHERE college = "saginaw valley state"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1147705_1 (model VARCHAR, engine_type VARCHAR) ### Question: How many engine b5234 t3? ### Answer: SELECT COUNT(model) FROM table_1147705_1 WHERE engine_type = "B5234 T3"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22853654_9 (result VARCHAR, opponent VARCHAR) ### Question: Name the result for wesley moodie ### Answer: SELECT result FROM table_22853654_9 WHERE opponent = "Wesley Moodie"
Below is an context that describes a sql 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 (national_final_main_host VARCHAR, semi_final_heat_host VARCHAR, year_s_ VARCHAR) ### Question: What is the name of the national final main host when the semi final/heat host shows internal selection in 2011? ### Answer: SELECT national_final_main_host FROM table_name_83 WHERE semi_final_heat_host = "internal selection" AND year_s_ = "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_91 (area VARCHAR, name VARCHAR) ### Question: What area is Central Takaka School in? ### Answer: SELECT area FROM table_name_91 WHERE name = "central takaka school"
Below is an context that describes a sql 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 (leading_scorer VARCHAR, date VARCHAR) ### Question: Name the leading scorer for 12 january 2008 ### Answer: SELECT leading_scorer FROM table_name_40 WHERE date = "12 january 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_25675509_1 (latitude VARCHAR, time__utc_ VARCHAR) ### Question: At what latitude did the shock at time 13:10:02 occur? ### Answer: SELECT latitude FROM table_25675509_1 WHERE time__utc_ = "13:10: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_name_21 (score_in_final VARCHAR, date VARCHAR) ### Question: What was the Final Score on February 24, 2002? ### Answer: SELECT score_in_final FROM table_name_21 WHERE date = "february 24, 2002"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_27 (competition VARCHAR, score VARCHAR) ### Question: What Competition had a Score of 3–3? ### Answer: SELECT competition FROM table_name_27 WHERE score = "3–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 people (Nationality VARCHAR) ### Question: What are the nationalities that are shared by at least two people? ### Answer: SELECT Nationality FROM people GROUP BY Nationality HAVING COUNT(*) >= 2
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE cinema (LOCATION VARCHAR, capacity INTEGER) ### Question: Show all the locations where no cinema has capacity over 800. ### Answer: SELECT LOCATION FROM cinema EXCEPT SELECT LOCATION FROM cinema WHERE capacity > 800
Below is an context that describes a sql 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 (country VARCHAR, to_par VARCHAR, player VARCHAR) ### Question: What is Country, when To par is "1", and when Player is "Seve Ballesteros"? ### Answer: SELECT country FROM table_name_20 WHERE to_par = 1 AND player = "seve ballesteros"
Below is an context that describes a sql 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 (d_48 VARCHAR, d_44 VARCHAR) ### Question: Name the D 48 when it has a D 44 of d 33 ### Answer: SELECT d_48 FROM table_name_29 WHERE d_44 = "d 33"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18365784_3 (operator VARCHAR, departure VARCHAR) ### Question: Who was the train operator when the train departed at 11.02 in 1922? ### Answer: SELECT operator FROM table_18365784_3 WHERE departure = "11.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_name_29 (date VARCHAR, match VARCHAR) ### Question: What date was match 5? ### Answer: SELECT date FROM table_name_29 WHERE match = 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_29217650_1 (december_28 VARCHAR, movies VARCHAR) ### Question: What is the figure for December 28 for ang tanging ina mo (last na 'to!)? ### Answer: SELECT december_28 FROM table_29217650_1 WHERE movies = "Ang Tanging Ina Mo (Last na 'To!)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE useracct (Id VARCHAR) ### Question: How many users are there? ### Answer: SELECT COUNT(*) FROM useracct
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Apartment_Buildings (building_address VARCHAR, building_phone VARCHAR, building_manager VARCHAR) ### Question: Show the addresses and phones of all the buildings managed by "Brenden". ### Answer: SELECT building_address, building_phone FROM Apartment_Buildings WHERE building_manager = "Brenden"
Below is an context that describes a sql 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 (length VARCHAR, name VARCHAR) ### Question: What is the Length, when the Name is Himos? ### Answer: SELECT length FROM table_name_68 WHERE name = "himos"
Below is an context that describes a sql 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 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR) ### Question: Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3? ### Answer: SELECT performer_3 FROM table_name_79 WHERE performer_1 = "stephen frost" AND performer_2 = "josie lawrence" AND date = "15 september 1995"
Below is an context that describes a sql 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 (round INTEGER, player VARCHAR) ### Question: What round was Corey Cowick picked? ### Answer: SELECT AVG(round) FROM table_name_8 WHERE player = "corey cowick"
Below is an context that describes a sql 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 (season VARCHAR, runner_up VARCHAR, title VARCHAR) ### Question: What season has a runner-up of waseda, and a title of 47th? ### Answer: SELECT season FROM table_name_25 WHERE runner_up = "waseda" AND title = "47th"
Below is an context that describes a sql 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 (record VARCHAR, opponent VARCHAR) ### Question: What was the record at the game against the Los Angeles Rams? ### Answer: SELECT record FROM table_name_25 WHERE opponent = "los angeles rams"
Below is an context that describes a sql 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 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR) ### Question: What city of license has A as a class, and cbec-fm as the identifier? ### Answer: SELECT city_of_license FROM table_name_86 WHERE class = "a" AND identifier = "cbec-fm"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_2 (surface VARCHAR, track VARCHAR) ### Question: What is the surface of the track at the indianapolis speedrome? ### Answer: SELECT surface FROM table_name_2 WHERE track = "indianapolis speedrome"
Below is an context that describes a sql 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 (captain VARCHAR, manager VARCHAR) ### Question: Which captain has howard wilkinson as the manager? ### Answer: SELECT captain FROM table_name_52 WHERE manager = "howard wilkinson"
Below is an context that describes a sql 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 (position VARCHAR, jersey_number_s_ VARCHAR) ### Question: What position does the player with jersey number 22 play? ### Answer: SELECT position FROM table_name_65 WHERE jersey_number_s_ = "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_83 (place INTEGER, draw VARCHAR) ### Question: What is the highest place for song that was draw number 6? ### Answer: SELECT MAX(place) FROM table_name_83 WHERE draw = 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_13836704_4 (airport VARCHAR, total_passengers_2009 VARCHAR) ### Question: what's the airport with total passengers 2009 being 157933 ### Answer: SELECT airport FROM table_13836704_4 WHERE total_passengers_2009 = 157933
Below is an context that describes a sql 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 (frequency VARCHAR, city VARCHAR, name VARCHAR) ### Question: What is the frequency of the newspaper, el diario de nuevo laredo in the city of nuevo laredo ? ### Answer: SELECT frequency FROM table_name_70 WHERE city = "nuevo laredo" AND name = "el diario de nuevo laredo"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_26 (date VARCHAR, score VARCHAR) ### Question: What was the date for the 130-56 game? ### Answer: SELECT date FROM table_name_26 WHERE score = "130-56"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14219514_2 (home__2nd_leg_ VARCHAR) ### Question: When platense is the home (2nd leg) what is the 2nd leg? ### Answer: SELECT 2 AS nd_leg FROM table_14219514_2 WHERE home__2nd_leg_ = "Platense"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26853172_1 (player_1 VARCHAR, player_3 VARCHAR, prevailing_wind VARCHAR) ### Question: What is player 1 when player 3 is South and the prevailing wind is South? ### Answer: SELECT player_1 FROM table_26853172_1 WHERE player_3 = "South" AND prevailing_wind = "South"
Below is an context that describes a sql 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 (round VARCHAR, position VARCHAR, player VARCHAR) ### Question: What is the total number of rounds that Center position Denis Arkhipov have? ### Answer: SELECT COUNT(round) FROM table_name_33 WHERE position = "center" AND player = "denis arkhipov"
Below is an context that describes a sql 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 (away_team VARCHAR) ### Question: What was North Melbourne's score when they were the home team? ### Answer: SELECT away_team AS score FROM table_name_52 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_name_12 (iata VARCHAR, country VARCHAR, city VARCHAR) ### Question: What is City of Sandefjord in Norway's IATA? ### Answer: SELECT iata FROM table_name_12 WHERE country = "norway" AND city = "sandefjord"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE university (enrollment VARCHAR, primary_conference VARCHAR, founded VARCHAR) ### Question: Show the enrollment and primary_conference of the oldest college. ### Answer: SELECT enrollment, primary_conference FROM university ORDER BY founded LIMIT 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_25 (Id VARCHAR) ### Question: What is the 2010 Lukoil oil prodroduction when in 2009 oil production 21.662 million tonnes? ### Answer: SELECT 2010 FROM table_name_25 WHERE 2009 = "21.662"
Below is an context that describes a sql 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 (erp_w VARCHAR, city_of_license VARCHAR) ### Question: Name the ERP W for glens falls, new york ### Answer: SELECT erp_w FROM table_name_56 WHERE city_of_license = "glens falls, 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_77 (events INTEGER, tournament VARCHAR, top_25 VARCHAR) ### Question: What is the largest number of events with the Masters Tournament and less than 4 in the top-25? ### Answer: SELECT MAX(events) FROM table_name_77 WHERE tournament = "masters tournament" AND top_25 < 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_80 (ordained_bishop VARCHAR, born VARCHAR) ### Question: When was the archbishop that was born on February 10, 1858 ordained a bishop? ### Answer: SELECT ordained_bishop FROM table_name_80 WHERE born = "february 10, 1858"
Below is an context that describes a sql 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 (final_rank INTEGER, lose VARCHAR, point VARCHAR) ### Question: Tell me the average final rank for loe more than 10 and point less than 43 ### Answer: SELECT AVG(final_rank) FROM table_name_8 WHERE lose > 10 AND point < 43
Below is an context that describes a sql 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 (res VARCHAR, record VARCHAR) ### Question: What was the result when his record was 25-15? ### Answer: SELECT res FROM table_name_83 WHERE record = "25-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_22673872_1 (rnd INTEGER, winning_driver VARCHAR, track VARCHAR) ### Question: In what round did Al Unser win at Wisconsin State Fair Park Speedway? ### Answer: SELECT MIN(rnd) FROM table_22673872_1 WHERE winning_driver = "Al Unser" AND track = "Wisconsin State Fair Park Speedway"
Below is an context that describes a sql 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 (bronze INTEGER, gold VARCHAR, silver VARCHAR, sport VARCHAR) ### Question: What is the highest bronze value with silvers over 2, golds under 16, and in Cycling? ### Answer: SELECT MAX(bronze) FROM table_name_58 WHERE silver > 2 AND sport = "cycling" AND gold < 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_19897294_16 (original_air_date VARCHAR, family_families VARCHAR) ### Question: Name the original air date for the potter family ### Answer: SELECT original_air_date FROM table_19897294_16 WHERE family_families = "The Potter Family"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22839669_1 (year INTEGER, score_in_the_final VARCHAR) ### Question: What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7? ### Answer: SELECT MAX(year) FROM table_22839669_1 WHERE score_in_the_final = "4–6, 3–6, 6–4, 5–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_69 (appliances VARCHAR, location VARCHAR) ### Question: What is the appliance at the station in St Neots? ### Answer: SELECT appliances FROM table_name_69 WHERE location = "st neots"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE countrylanguage (Percentage INTEGER, CountryCode VARCHAR, LANGUAGE VARCHAR) ### Question: What is the total number of countries where Spanish is spoken by the largest percentage of people? ### Answer: SELECT COUNT(*), MAX(Percentage) FROM countrylanguage WHERE LANGUAGE = "Spanish" GROUP BY CountryCode
Below is an context that describes 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 (Name VARCHAR, Wrestler_ID VARCHAR); CREATE TABLE elimination (Elimination_Move VARCHAR, Wrestler_ID VARCHAR) ### Question: What are the names of wrestlers and the elimination moves? ### Answer: SELECT T2.Name, T1.Elimination_Move FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_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_30 (airport VARCHAR, country VARCHAR, iata VARCHAR) ### Question: What is the name of the airport located in Russia with an IATA of KRR? ### Answer: SELECT airport FROM table_name_30 WHERE country = "russia" AND iata = "krr"
Below is an context that describes a sql 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 (player VARCHAR, place VARCHAR) ### Question: What is the T8 Place Player? ### Answer: SELECT player FROM table_name_78 WHERE place = "t8"
Below is an context that describes a sql 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 (rank INTEGER, notes VARCHAR, time VARCHAR) ### Question: What is the lowest rank for the team that raced a time of 6:17.62 and a notes of sa/b? ### Answer: SELECT MIN(rank) FROM table_name_87 WHERE notes = "sa/b" AND time = "6:17.62"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_78 (l2_cache VARCHAR, frequency VARCHAR) ### Question: What's amount of L2 Cache on a device that has a Frequency of 1500mhz? ### Answer: SELECT l2_cache FROM table_name_78 WHERE frequency = "1500mhz"
Below is an context that describes a sql 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 (ipsos_3_14_09 VARCHAR, ifop_11_12_08 VARCHAR, opinionway_4_17_09 VARCHAR) ### Question: Name the lpsos 3/14/09 for opinionway of 4/17/09 of 5% and lfof 11/12/08 of 7% ### Answer: SELECT ipsos_3_14_09 FROM table_name_33 WHERE ifop_11_12_08 = "7%" AND opinionway_4_17_09 = "5%"