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_34 (Birth VARCHAR, end_of_reign VARCHAR) ### Question: What is the Birth Name of the Archbishop with a C...
Below is an context that describes a sql 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 (points VARCHAR, draws VARCHAR, wins VARCHAR, goal_difference VARCHAR) ### Question: How many points ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (LName VARCHAR, StuID VARCHAR); CREATE TABLE GRADE...
Below is an context that describes a sql 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 (date VARCHAR, visitor VARCHAR) ### Question: What was the date of the game when St. Louis was the vi...
Below is an context that describes a sql 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 (latest_stable_release VARCHAR, name VARCHAR) ### Question: What is the latest stable release date fo...
Below is an context that describes a sql 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 (country VARCHAR, date VARCHAR) ### Question: What was the nationality of the winner on December 8, 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_37 (date VARCHAR, competition VARCHAR) ### Question: What is the date of Competition of 2008 africa cup ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13018091_1 (position INTEGER, club VARCHAR) ### Question: What position did the sheffield eagles finish in? #...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12261714_2 (general_classification VARCHAR, stage VARCHAR) ### Question: Who's leading in the general classif...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2626495_1 (title VARCHAR, written_by VARCHAR) ### Question: what is the title of the episode daphne field wro...
Below is an context that describes a sql 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 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 3-4? ### Answer: SELECT date ...
Below is an context that describes a sql 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 (subjunctive VARCHAR, indicative VARCHAR) ### Question: What subjunctive has the indicative of se måc...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Customers (customer_code INTEGER) ### Question: What is the largest and smallest customer codes? ### Answer: SELECT...
Below is an context that describes a sql 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 (venue VARCHAR, result VARCHAR) ### Question: Where was the game with result 7-2 played? ### Answer: ...
Below is an context that describes a sql 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, player VARCHAR) ### Question: What is the score of Player Tom Kite? ### Answer: SELEC...
Below is an context that describes a sql 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 (gold INTEGER, rank VARCHAR, bronze VARCHAR) ### Question: What is the most gold when the rank is 7 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_name_21 (aam_member VARCHAR, city VARCHAR, astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR) ### Qu...
Below is an context that describes a sql 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 (gold VARCHAR, year VARCHAR) ### Question: What Gold has the Year of 2006? ### Answer: SELECT gold FR...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_37 (to_par VARCHAR, total INTEGER) ### Question: What was the score to par for 156 strokes? ### Answer: ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1350350_2 (county VARCHAR, per_capita_income VARCHAR) ### Question: how many county with per capita income b...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1949746_1 (format VARCHAR, frequency VARCHAR) ### Question: When 790 am is the frequency what is the format? ...
Below is an context that describes a sql 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 (team VARCHAR, points VARCHAR) ### Question: What is the name of the team that has 13 points? ### Ans...
Below is an context that describes a sql 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 (circuit VARCHAR, class VARCHAR, date VARCHAR) ### Question: What circuit was on June 1 with a class ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE actor (Name VARCHAR, Musical_ID VARCHAR); CREATE TABLE musical (Name VARCHAR, Musical_ID VARCHAR) ### Question: Lis...
Below is an context that describes a sql 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 (name VARCHAR, position VARCHAR) ### Question: Who was the head coach? ### Answer: SELECT name FROM t...
Below is an context that describes a sql 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 (quarterback VARCHAR, team_wins VARCHAR, career_wins VARCHAR, teams VARCHAR) ### Question: Which Seat...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE technician (Name VARCHAR, Age VARCHAR) ### Question: Show the name of technicians aged either 36 or 37 ### Answer: ...
Below is an context that describes a sql 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 (away_team VARCHAR, home_team VARCHAR) ### Question: In the game against Essendon at home, what did t...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24222929_3 (original_airdate VARCHAR, live VARCHAR, sd_total_viewers VARCHAR) ### Question: When did the epis...
Below is an context that describes a sql 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 (crowd INTEGER, away_team VARCHAR) ### Question: What is the biggest crowd when carlton is the away s...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2102714_1 (archive VARCHAR, run_time VARCHAR) ### Question: What is he archive for the episode with a run tim...
Below is an context that describes a sql 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 (standing_broad_jump__cm_ VARCHAR, grade VARCHAR) ### Question: Which standing broad jump (cm) had th...
Below is an context that describes a sql 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 (crowd INTEGER, home_team VARCHAR) ### Question: When the home team was Richmond, what was the larges...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11965481_13 (game VARCHAR, date VARCHAR) ### Question: Name the number of games on june 12 ### Answer: SELECT...
Below is an context that describes a sql 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 (league VARCHAR, play_off VARCHAR, year VARCHAR) ### Question: Which League that has no playoffs in t...
Below is an context that describes a sql 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 (launched INTEGER, name VARCHAR) ### Question: Tell me the highest launced for trn ### Answer: SELECT ...
Below is an context that describes a sql 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 (week INTEGER, opponent VARCHAR, attendance VARCHAR) ### Question: What is the average week for the g...
Below is an context that describes a sql 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 (club VARCHAR) ### Question: Where did the Vitória de Setúbal club place in the 2006-2007 season? ###...
Below is an context that describes a sql 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 (skipper VARCHAR, points VARCHAR) ### Question: Which skipper has 78 points? ### Answer: SELECT skipp...
Below is an context that describes a sql 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 (country VARCHAR, to_par VARCHAR, money___$__ VARCHAR, score VARCHAR) ### Question: Which Country has...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE ref_colors (color_code VARCHAR, color_description VARCHAR); CREATE TABLE products (product_name VARCHAR, color_code...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14242137_4 (oberliga_baden_württemberg VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR) ### Questi...
Below is an context that describes a sql 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 (date VARCHAR, name VARCHAR) ### Question: When is vanderbilt cup in? ### Answer: SELECT date FROM ta...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_88 (score VARCHAR, country VARCHAR) ### Question: What was the score for the golfer from the country of ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23285805_8 (high_assists VARCHAR, team VARCHAR) ### Question: Who has the high assists when the team is Oklah...
Below is an context that describes a sql 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 (race VARCHAR, track VARCHAR) ### Question: What race happened at Iowa Speedway? ### Answer: SELECT 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_1341690_5 (party VARCHAR, district VARCHAR) ### Question: How many parties won the election in the California...
Below is an context that describes a sql 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 (venue VARCHAR, away_team VARCHAR) ### Question: Where did Essendon play as the away team? ### Answer...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19017269_5 (asia VARCHAR, latin_america_caribbean VARCHAR) ### Question: what will the population of Asia be ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE phone (Company_name VARCHAR) ### Question: How many phone hardware models are produced by the company named "Nokia ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE matches (loser_name VARCHAR) ### Question: Find the number of distinct name of losers. ### Answer: SELECT COUNT(DIS...
Below is an context that describes a sql 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 (date VARCHAR, competition VARCHAR) ### Question: On what date was the Competition of Friendly held? ...
Below is an context that describes a sql 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 (team VARCHAR, year VARCHAR, overall_pick VARCHAR) ### Question: In 1981 which team picked overall 148...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17355716_10 (high_rebounds VARCHAR, date VARCHAR) ### Question: what is the high rebounds stat on april 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_28068063_3 (proceed_to_quarter_final VARCHAR, eliminated_from_competition VARCHAR) ### Question: Who proceede...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_29163303_2 (score VARCHAR, championship VARCHAR) ### Question: What are the results of those matches where th...
Below is an context that describes a sql 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 (year_left INTEGER, location VARCHAR) ### Question: How much Year Left has a Location of howe? ### An...
Below is an context that describes a sql 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 (time_retired VARCHAR, grid INTEGER) ### Question: What was the time of the driver in grid 2? ### Ans...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE swimmer (nationality VARCHAR) ### Question: How many different countries are all the swimmers from? ### Answer: SEL...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE INVOICE (BillingCountry VARCHAR) ### Question: What are the distinct billing countries of the invoices? ### Answer:...
Below is an context that describes a sql 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 (draw INTEGER, english_translation VARCHAR, place VARCHAR) ### Question: What is the lowest draw that...
Below is an context that describes a sql 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 (final_score VARCHAR, date VARCHAR) ### Question: What is the Final score on november 22? ### Answer:...
Below is an context that describes a sql 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 (team__number2 VARCHAR, team__number1 VARCHAR) ### Question: Which Team #2 has a Team #1 of gambrinus...
Below is an context that describes a sql 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 (set_2 VARCHAR, total VARCHAR) ### Question: What set 2 has a total of 97–74? ### Answer: SELECT set_...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_57 (lost INTEGER, pct VARCHAR, tied VARCHAR, years VARCHAR) ### Question: What is the highest number los...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_261927_2 (football_conference VARCHAR, location VARCHAR) ### Question: What is the football conference for He...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341453_20 (candidates VARCHAR, first_elected VARCHAR) ### Question: How many candidates were elected first i...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1342370_41 (candidates VARCHAR, district VARCHAR) ### Question: Who were the candidates in the election in th...
Below is an context that describes a sql 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 (country VARCHAR, notes VARCHAR, athlete VARCHAR) ### Question: Which country is the athlete latt shw...
Below is an context that describes a sql 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 (years_in_the_acc VARCHAR, founded VARCHAR, location VARCHAR) ### Question: What are the years in the...
Below is an context that describes a sql 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 (home_ground VARCHAR, position_in_2012_13 VARCHAR) ### Question: When the position in 2012-12 is 7th,...
Below is an context that describes a sql 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 (host_team VARCHAR, stadium VARCHAR) ### Question: What was the name of the host team at Texas 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 table_name_22 (home_team VARCHAR, attendance INTEGER) ### Question: What is the home team of the match with an atte...
Below is an context that describes a sql 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 (engine VARCHAR, displacement VARCHAR, model VARCHAR) ### Question: Which of the engines has a displa...
Below is an context that describes a sql 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 (position VARCHAR, school VARCHAR) ### Question: What position did the school of alabama draft? ### 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_name_20 (representative_work VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR) ### Question: What is the ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2279413_1 (conversion_from_patent_application VARCHAR, maximum_term VARCHAR, pct_route_available VARCHAR) ###...
Below is an context that describes a sql 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 (third_runner_up VARCHAR, year VARCHAR) ### Question: Can you tell me the Third runner-up that has th...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19722436_2 (lmp1_winning_team VARCHAR, gt1_winning_team VARCHAR) ### Question: When peter kox roman rusinov i...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_55 (website VARCHAR, license VARCHAR) ### Question: What is Website, when License is Apache License 2.0?...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_25146455_1 (position INTEGER, winnings VARCHAR) ### Question: In what position was the driver who won $60,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_55 (tyre VARCHAR, drivers VARCHAR, rounds VARCHAR, team VARCHAR) ### Question: What is the tyre of nismo...
Below is an context that describes a sql 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 (score VARCHAR, opponent VARCHAR) ### Question: What was the score of the game against 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 table_22822468_2 (share INTEGER, viewers__millions_ VARCHAR) ### Question: Name the most share for 2.76 million vie...
Below is an context that describes a sql 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 (soccer VARCHAR, cross_country VARCHAR, school_year VARCHAR) ### Question: What is Soccer, when Cross...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE vocals (bandmate VARCHAR); CREATE TABLE band (id VARCHAR) ### Question: Which vocal type has the band mate with fir...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22034853_1 (language_s_ VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: What was the language f...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_3 (k_league_classic VARCHAR, teams INTEGER) ### Question: What K League classic had less than 10 teams? ...
Below is an context that describes a sql 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 (nation VARCHAR, bronze VARCHAR, gold VARCHAR) ### Question: What is the Nation, when the number of B...
Below is an context that describes a sql 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 (away VARCHAR, score VARCHAR) ### Question: What is the Away with a Score that is 46-82? ### Answer: ...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22670216_1 (rnd VARCHAR, location VARCHAR, pole_position VARCHAR) ### Question: If the location is Brooklyn, ...
Below is an context that describes a sql 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 (bask VARCHAR, indoor_track VARCHAR, school VARCHAR) ### Question: What is the basketball status for ...
Below is an context that describes a sql 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 (gold_medals VARCHAR, appearances VARCHAR, silver_medals VARCHAR) ### Question: What is the total num...
Below is an context that describes a sql 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 (position VARCHAR, years_for_grizzlies VARCHAR) ### Question: What position did the person who was wi...
Below is an context that describes a sql 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 (fastest_lap VARCHAR, winning_driver VARCHAR) ### Question: What was Jimmy Vasser's fastest lap? ### ...
Below is an context that describes a sql 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 (lineup VARCHAR, competition VARCHAR, match VARCHAR) ### Question: What was the lineup for match 12 t...
Below is an context that describes a sql 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 (goals_for INTEGER, lost VARCHAR) ### Question: What is the highest number of goals for for teams wit...
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1205598_1 (nhl_team_s_ VARCHAR, nba_team_s_ VARCHAR) ### Question: What is the the name of the NHL team that ...
Below is an context that describes a sql 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 (pl_gp INTEGER, pick__number VARCHAR, rd__number VARCHAR) ### Question: What was the PI GP fpr pick# ...
Below is an context that describes a sql 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 (overall_record VARCHAR, team VARCHAR) ### Question: What is the overall record of the Ravens? ### An...