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_51 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: Which Total is the lowest one that has a Bronze of 0, and a Silver larger than 0, and a Rank of 5? ### Answer: SELECT MIN(total) FROM table_name_51 WHERE bronze = 0 AND silver > 0 AND rank = 5
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_51 (players_per_console VARCHAR, genre VARCHAR, year VARCHAR) ### Question: For the strategy game in 1992, how many players were allowed per console? ### Answer: SELECT players_per_console FROM table_name_51 WHERE genre = "strategy" AND year = 1992
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_23 (semifinalists VARCHAR, tournament VARCHAR) ### Question: Which Semifinalist has a Tournament of stockholm? ### Answer: SELECT semifinalists FROM table_name_23 WHERE tournament = "stockholm"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_66 (college_junior_club_team__league_ VARCHAR, player VARCHAR) ### Question: What college did Louis LeBlanc attend? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_66 WHERE player = "louis leblanc"
Below is an context that describes a sql 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 (qual VARCHAR, start VARCHAR) ### Question: Whent he start was 15, what was the Qual? ### Answer: SELECT qual FROM table_name_4 WHERE start = "15"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_99 (game INTEGER, date VARCHAR) ### Question: What is the highest game that has January 5 as the date? ### Answer: SELECT MAX(game) FROM table_name_99 WHERE date = "january 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_21234111_10 (song VARCHAR, robin VARCHAR) ### Question: What song did Robin perform with a result of 4.0? ### Answer: SELECT song FROM table_21234111_10 WHERE robin = "4.0"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_12 (semifinalists VARCHAR, tournament VARCHAR) ### Question: who was the semifinalist for the Key Biscane tournament? ### Answer: SELECT semifinalists FROM table_name_12 WHERE tournament = "key biscane"
Below is an context that describes a sql 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 (to_par VARCHAR, score VARCHAR) ### Question: What was the to par score of the golfer that had a score of 68-70=138? ### Answer: SELECT to_par FROM table_name_91 WHERE score = 68 - 70 = 138
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15700367_6 (wickets INTEGER, name VARCHAR) ### Question: What is the lowest number of wickets for farveez maharoof? ### Answer: SELECT MIN(wickets) FROM table_15700367_6 WHERE name = "Farveez Maharoof"
Below is an context that describes a sql 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 (to_par VARCHAR, score VARCHAR) ### Question: What To par has a Score of 68-66=134? ### Answer: SELECT to_par FROM table_name_15 WHERE score = 68 - 66 = 134
Below is an context that describes a sql 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 (pick__number INTEGER, mls_team VARCHAR) ### Question: Tell me the lowest pick number for new england revolution ### Answer: SELECT MIN(pick__number) FROM table_name_84 WHERE mls_team = "new england revolution"
Below is an context that describes a sql 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 (record VARCHAR, week VARCHAR) ### Question: What is the Record for week 12? ### Answer: SELECT record FROM table_name_95 WHERE week = 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_12125069_2 (losing_pitcher VARCHAR, winning_pitcher VARCHAR) ### Question: Who is the losing pitcher when the winning pitcher is roy oswalt? ### Answer: SELECT losing_pitcher FROM table_12125069_2 WHERE winning_pitcher = "Roy Oswalt"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE station (name VARCHAR, station_id VARCHAR); CREATE TABLE train_station (station_id VARCHAR) ### Question: Show the station name with greatest number of trains. ### Answer: SELECT T2.name FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id GROUP BY T1.station_id ORDER BY COUNT(*) 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_27 (team VARCHAR, matches VARCHAR, balls VARCHAR, inns VARCHAR) ### Question: Which Team has Balls smaller than 258, and Inns of 10, and Matches smaller than 12? ### Answer: SELECT team FROM table_name_27 WHERE balls < 258 AND inns = 10 AND matches < 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_62 (avg_g VARCHAR, att_cmp_int VARCHAR, effic VARCHAR) ### Question: Avg/G that has a Att-Cmp-Int of 1–1–0, and an Effic larger than 394 is what total? ### Answer: SELECT COUNT(avg_g) FROM table_name_62 WHERE att_cmp_int = "1–1–0" AND effic > 394
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_50 (home VARCHAR, record VARCHAR) ### Question: Which Home has a Record of 11–14–4? ### Answer: SELECT home FROM table_name_50 WHERE record = "11–14–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_32 (score INTEGER, place VARCHAR) ### Question: What is the lowest Score, when Place is "1"? ### Answer: SELECT MIN(score) FROM table_name_32 WHERE 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_18600760_1 (ansi_code INTEGER, pop__2010_ VARCHAR) ### Question: Name the least ansi code for 609 population 2010 ### Answer: SELECT MIN(ansi_code) FROM table_18600760_1 WHERE pop__2010_ = 609
Below is an context that describes a sql 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 (home_team VARCHAR, away_team VARCHAR) ### Question: Who played against away team hereford united? ### Answer: SELECT home_team FROM table_name_4 WHERE away_team = "hereford 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_name_63 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR) ### Question: Who was the Kit manufacturer that was has shirts sponsored by Walkers? ### Answer: SELECT kit_manufacturer FROM table_name_63 WHERE shirt_sponsor = "walkers"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17918238_1 (maximum_diameter VARCHAR, owner_operator VARCHAR) ### Question: What is Esperance pipeline co total diameter? ### Answer: SELECT maximum_diameter FROM table_17918238_1 WHERE owner_operator = "Esperance Pipeline Co"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23097214_1 (production_code INTEGER, series__number VARCHAR) ### Question: What is the production code for Episode 153 in the series? ### Answer: SELECT MIN(production_code) FROM table_23097214_1 WHERE series__number = 153
Below is an context that describes a sql 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 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent on October 14, 1984? ### Answer: SELECT opponent FROM table_name_62 WHERE date = "october 14, 1984"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_51 (bronze INTEGER, nation VARCHAR) ### Question: How many bronzes have west germany as the nation? ### Answer: SELECT SUM(bronze) FROM table_name_51 WHERE nation = "west germany"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21035326_1 (golden_bears_points INTEGER, opponents VARCHAR) ### Question: What was the least amount of points scored by the golden bears when the opponent scored 15 points? ### Answer: SELECT MIN(golden_bears_points) FROM table_21035326_1 WHERE opponents = 15
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_42 (series__number INTEGER, directed_by VARCHAR) ### Question: What is the average of the Series #s that were directed by Matthew Penn? ### Answer: SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = "matthew penn"
Below is an context that describes a sql 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 (built VARCHAR, location VARCHAR, county VARCHAR, listed VARCHAR) ### Question: In which year did Blount County build a bridge in Cleveland that was listed on 1981-08-20? ### Answer: SELECT built FROM table_name_78 WHERE county = "blount" AND listed = "1981-08-20" AND location = "cleveland"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_28 (budget VARCHAR, film VARCHAR) ### Question: WHAT IS THE BUDGET FOR THE INCREDIBLES? ### Answer: SELECT budget FROM table_name_28 WHERE film = "the incredibles"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22282917_26 (dates VARCHAR, control_site_condition_owner VARCHAR) ### Question: When is every date that control site condition or owner is machine shop on Martin Dr.? ### Answer: SELECT dates FROM table_22282917_26 WHERE control_site_condition_owner = "machine shop on Martin Dr."
Below is an context that describes a sql 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 (gold INTEGER, bronze VARCHAR, total VARCHAR) ### Question: Can you tell me the highest Gold that has the Bronze smaller than 1, and the Total larger than 4? ### Answer: SELECT MAX(gold) FROM table_name_87 WHERE bronze < 1 AND total > 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 (us_hot_100 VARCHAR, album VARCHAR) ### Question: Name the US Hot 100 for album of I like you ### Answer: SELECT us_hot_100 FROM table_name_81 WHERE album = "i like you"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_96 (cover_model VARCHAR, date VARCHAR) ### Question: Who was the Cover model on 11-03? ### Answer: SELECT cover_model FROM table_name_96 WHERE date = "11-03"
Below is an context that describes a sql 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 (school_year VARCHAR, class_aAAA VARCHAR, dickinson VARCHAR) ### Question: What School Year has a Class AAAA of Dickinson? ### Answer: SELECT school_year FROM table_name_61 WHERE class_aAAA = dickinson
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_24535095_2 (_number INTEGER, listed_owner_s_ VARCHAR) ### Question: Name the least listed owner for pete raymer ### Answer: SELECT MIN(_number) FROM table_24535095_2 WHERE listed_owner_s_ = "Pete Raymer"
Below is an context that describes a sql 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 (mountain_peak VARCHAR, rank VARCHAR) ### Question: Name the mountain peak of 49 rank ### Answer: SELECT mountain_peak FROM table_name_67 WHERE rank = 49
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13741576_6 (drawn VARCHAR, tries_for VARCHAR) ### Question: Risca RFC has 54 tries for and how many draws? ### Answer: SELECT drawn FROM table_13741576_6 WHERE tries_for = "54"
Below is an context that describes a sql 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 (place VARCHAR, silver VARCHAR) ### Question: In what Place was the Silver won by vladimir vesselov ( urs )? ### Answer: SELECT place FROM table_name_3 WHERE silver = "vladimir vesselov ( urs )"
Below is an context that describes a sql 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 (round INTEGER, record VARCHAR) ### Question: Which round has a record of 5-3 (1)? ### Answer: SELECT MIN(round) FROM table_name_51 WHERE record = "5-3 (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_65 (constructor VARCHAR, race VARCHAR) ### Question: What is the constructor at the United States Grand Prix? ### Answer: SELECT constructor FROM table_name_65 WHERE race = "united states grand prix"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_28 (game VARCHAR, record VARCHAR) ### Question: Which game had a 9-7 record? ### Answer: SELECT game FROM table_name_28 WHERE record = "9-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_23286158_11 (score VARCHAR, game VARCHAR) ### Question: What is the score in game 3? ### Answer: SELECT score FROM table_23286158_11 WHERE game = 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_48 (season VARCHAR, margin VARCHAR) ### Question: Which season had a margin of 10? ### Answer: SELECT season FROM table_name_48 WHERE margin = 10
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_1 (opponent_in_the_final VARCHAR, year VARCHAR, championship VARCHAR) ### Question: What is the Opponent in the final after 2008 at the Paul Hunter Classic? ### Answer: SELECT opponent_in_the_final FROM table_name_1 WHERE year > 2008 AND championship = "paul hunter 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_name_1 (race_winner VARCHAR, round VARCHAR) ### Question: Who won the round in Europe? ### Answer: SELECT race_winner FROM table_name_1 WHERE round = "europe"
Below is an context that describes a sql 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 (japanese_voice_actor VARCHAR, eagle_riders VARCHAR) ### Question: Who is the Japanese voice actor of Eagle Rider Ollie Keeawani? ### Answer: SELECT japanese_voice_actor FROM table_name_25 WHERE eagle_riders = "ollie keeawani"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2731431_1 (elevation__m_ INTEGER, location VARCHAR, peak VARCHAR) ### Question: What is the elevation for the peak wildspitze in Austria? ### Answer: SELECT MIN(elevation__m_) FROM table_2731431_1 WHERE location = "Austria" AND peak = "Wildspitze"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23958917_1 (owner_s___2009_ VARCHAR, location VARCHAR) ### Question: Name the owners 2009 for south side indianapolis ### Answer: SELECT owner_s___2009_ FROM table_23958917_1 WHERE location = "South Side Indianapolis"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1157867_2 (name VARCHAR, notes VARCHAR, builder VARCHAR) ### Question: Which locomotives 12" x 17" are both ex-industrial and built by Manning Wardle? ### Answer: SELECT name FROM table_1157867_2 WHERE notes = "Ex-industrial" AND builder = "Manning Wardle"
Below is an context that describes a sql 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 (attendance INTEGER, opponent VARCHAR, week VARCHAR) ### Question: What is the attendance for the game against the Kansas City Chiefs earlier than week 13? ### Answer: SELECT AVG(attendance) FROM table_name_32 WHERE opponent = "kansas city chiefs" AND week < 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_11603006_1 (score VARCHAR, location VARCHAR, purse__$__ VARCHAR) ### Question: What was the score for the tournament in Michigan where the purse was smaller than 1813335.221493934? ### Answer: SELECT score FROM table_11603006_1 WHERE location = "Michigan" AND purse__$__ < 1813335.221493934
Below is an context that describes a sql 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 (goals_for INTEGER, tied INTEGER) ### Question: What's the least amount of goals for a game that had a tied bigger than 15? ### Answer: SELECT MIN(goals_for) FROM table_name_73 WHERE tied > 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_15796100_1 (original_artist VARCHAR, theme VARCHAR) ### Question: Who is the original artist for the theme "Year they were born?" ### Answer: SELECT original_artist FROM table_15796100_1 WHERE theme = "Year They Were Born"
Below is an context that describes a sql 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 (location VARCHAR, frequency VARCHAR) ### Question: What's the location of the 1197khz frequency? ### Answer: SELECT location FROM table_name_22 WHERE frequency = "1197khz"
Below is an context that describes a sql 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 (grid INTEGER, laps INTEGER) ### Question: With Laps greater than 78, what is the lowest Grid? ### Answer: SELECT MIN(grid) FROM table_name_30 WHERE laps > 78
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_72 (no8 VARCHAR, no9 VARCHAR) ### Question: Who this the no. 8 team that has a no. 9 player, Telmo? ### Answer: SELECT no8 FROM table_name_72 WHERE no9 = "telmo"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_75 (school VARCHAR, conference_joined VARCHAR, mascot VARCHAR) ### Question: Which school has a mascot of the Blazers and in the Northeast Corner conference? ### Answer: SELECT school FROM table_name_75 WHERE conference_joined = "northeast corner" AND mascot = "blazers"
Below is an context that describes a sql 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 (season VARCHAR, team VARCHAR, number VARCHAR, league VARCHAR) ### Question: What season has a number less than 90, Mitte as the league and spvgg ruhmannsfelden as the team? ### Answer: SELECT season FROM table_name_95 WHERE number < 90 AND league = "mitte" AND team = "spvgg ruhmannsfelden"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_28 (position VARCHAR, team VARCHAR, against VARCHAR) ### Question: What is the number of Position when the team was são paulo railway and the against is less than 46? ### Answer: SELECT COUNT(position) FROM table_name_28 WHERE team = "são paulo railway" AND against < 46
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_15187794_1 (race_winner VARCHAR, no VARCHAR) ### Question: How many people won in No. 12 ### Answer: SELECT COUNT(race_winner) FROM table_15187794_1 WHERE no = 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_47 (year VARCHAR, award VARCHAR) ### Question: How many years have an Award of press award? ### Answer: SELECT COUNT(year) FROM table_name_47 WHERE award = "press award"
Below is an context that describes a sql 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 (winning_constructor VARCHAR, name VARCHAR) ### Question: Tell me the winning constructor for the paris cup ### Answer: SELECT winning_constructor FROM table_name_42 WHERE name = "paris 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_name_16 (pick VARCHAR, overall VARCHAR, college VARCHAR) ### Question: what is the pick when the overall is less than 297 and the college is alabama? ### Answer: SELECT pick FROM table_name_16 WHERE overall < 297 AND college = "alabama"
Below is an context that describes a sql 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 (years_in_orlando VARCHAR, school_club_team VARCHAR) ### Question: Which Years in Orlando has a School/Club Team of texas tech? ### Answer: SELECT years_in_orlando FROM table_name_74 WHERE school_club_team = "texas tech"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27922491_11 (runs INTEGER, average VARCHAR) ### Question: How few runs does the 97.00 average have? ### Answer: SELECT MIN(runs) FROM table_27922491_11 WHERE average = "97.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_26466528_1 (join_date INTEGER) ### Question: Name the least join date ### Answer: SELECT MIN(join_date) FROM table_26466528_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_30120566_1 (area__acres__ VARCHAR, townland VARCHAR) ### Question: How many different sizes (in acres) are noted for Rathcoola East? ### Answer: SELECT COUNT(area__acres__) FROM table_30120566_1 WHERE townland = "Rathcoola East"
Below is an context that describes a sql 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 (club VARCHAR, number_of_seasons_in_liga_mx VARCHAR, number_of_seasons_in_top_division VARCHAR) ### Question: Which club has fewer than 40 seasons in Liga MX and 65 seasons in the top division? ### Answer: SELECT club FROM table_name_32 WHERE number_of_seasons_in_liga_mx < 40 AND number_of_seasons_in_top_division = 65
Below is an context that describes a sql 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 (english_translation VARCHAR, articles VARCHAR) ### Question: Can you tell me the English Translation that has the Articles of 24? ### Answer: SELECT english_translation FROM table_name_44 WHERE articles = 24
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16799784_7 (name VARCHAR, diameter__km_ VARCHAR) ### Question: what's the name origin of feature of diameter (km) 2,155.0 ### Answer: SELECT name AS origin FROM table_16799784_7 WHERE diameter__km_ = "2,155.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_4 (result VARCHAR, opponent VARCHAR) ### Question: Which Result has an Opponent of steve walker? ### Answer: SELECT result FROM table_name_4 WHERE opponent = "steve walker"
Below is an context that describes a sql 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 (bronze INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR) ### Question: What's the lowest bronze with a 6 rank, smaller than 5 gold, and a total of more than 1? ### Answer: SELECT MIN(bronze) FROM table_name_91 WHERE gold < 5 AND rank = "6" AND total > 1
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_90 (track VARCHAR) ### Question: Who won the 350cc at Sachsenring? ### Answer: SELECT 350 AS _cc FROM table_name_90 WHERE track = "sachsenring"
Below is an context that describes a sql 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 (total_matches INTEGER, points__percentage VARCHAR, year VARCHAR) ### Question: In 2007, what is the average total matches with points % larger than 33.3? ### Answer: SELECT AVG(total_matches) FROM table_name_73 WHERE points__percentage > 33.3 AND year = "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_178242_7 (runner_up VARCHAR, international_destination VARCHAR) ### Question: How many runner-ups were there when the show went to Japan? ### Answer: SELECT COUNT(runner_up) FROM table_178242_7 WHERE international_destination = "Japan"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_50 (player VARCHAR, to_par VARCHAR, country VARCHAR) ### Question: Which player from Scotland has a To Par score of +7? ### Answer: SELECT player FROM table_name_50 WHERE to_par = "+7" AND country = "scotland"
Below is an context that describes a sql 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 (home_team VARCHAR, away_team VARCHAR) ### Question: What was the home team score with an away team of Melbourne? ### Answer: SELECT home_team AS score FROM table_name_65 WHERE away_team = "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_24089503_1 (travers_stakes VARCHAR, year VARCHAR) ### Question: What was the attendance at the Travers Stakes in 1977? ### Answer: SELECT travers_stakes FROM table_24089503_1 WHERE year = 1977
Below is an context that describes a sql 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 (position VARCHAR, player VARCHAR) ### Question: Player of herbert s. graver has what position? ### Answer: SELECT position FROM table_name_24 WHERE player = "herbert s. graver"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11960944_6 (date VARCHAR, game VARCHAR) ### Question: What date was game 57 held on? ### Answer: SELECT date FROM table_11960944_6 WHERE game = 57
Below is an context that describes a sql 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 (elimination VARCHAR, wrestler VARCHAR) ### Question: What is Maria's Elimination Move? ### Answer: SELECT elimination AS Move FROM table_name_88 WHERE wrestler = "maria"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE COURSE (Id VARCHAR) ### Question: How many courses are there in total? ### Answer: SELECT COUNT(*) FROM COURSE
Below is an context that describes a sql 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 (type VARCHAR, transfer_window VARCHAR, name VARCHAR) ### Question: What is the type of bulykin, which has a summer transfer window? ### Answer: SELECT type FROM table_name_79 WHERE transfer_window = "summer" AND name = "bulykin"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27539272_7 (location_attendance VARCHAR, game VARCHAR) ### Question: What was the location and attendance for game 41? ### Answer: SELECT location_attendance FROM table_27539272_7 WHERE game = 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_62 (opponent VARCHAR, time VARCHAR, result VARCHAR) ### Question: What is the Opponent with a time of 2:05 p.m., and the results were w 26–20? ### Answer: SELECT opponent FROM table_name_62 WHERE time = "2:05 p.m." AND result = "w 26–20"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17012578_6 (pa INTEGER) ### Question: What is the top Points Allowed? ### Answer: SELECT MAX(pa) FROM table_17012578_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_39 (disaster VARCHAR, location VARCHAR, deaths VARCHAR) ### Question: What is the disaster that was located in Ontario with 223 deaths? ### Answer: SELECT disaster FROM table_name_39 WHERE location = "ontario" AND deaths = "223"
Below is an context that describes a sql 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 (money___ INTEGER, to_par VARCHAR, player VARCHAR) ### Question: Can you tell me the average Money ($) that has the To par larger than 14, and the Player of ed dudley? ### Answer: SELECT AVG(money___) AS $__ FROM table_name_87 WHERE to_par > 14 AND player = "ed dudley"
Below is an context that describes a sql 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: Tell me the record for kazuhiro nakamura ### Answer: SELECT record FROM table_name_25 WHERE opponent = "kazuhiro nakamura"
Below is an context that describes a sql 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 (division VARCHAR, team VARCHAR, season VARCHAR) ### Question: What division is Traktor Tashkent in 2005? ### Answer: SELECT division FROM table_name_83 WHERE team = "traktor tashkent" AND season = "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_19897896_7 (class VARCHAR, university VARCHAR) ### Question: in which class was the ohio state university ### Answer: SELECT class FROM table_19897896_7 WHERE university = "Ohio 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_29154676_1 (season_no INTEGER, us_viewers__millions_ VARCHAR) ### Question: What is the last episode in the season that had 3.91 million viewers in the US? ### Answer: SELECT MIN(season_no) FROM table_29154676_1 WHERE us_viewers__millions_ = "3.91"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_91 (modulation VARCHAR, power VARCHAR, channel VARCHAR) ### Question: On channel 32, when the power is 32 kW horizontal, what is the modulation? ### Answer: SELECT modulation FROM table_name_91 WHERE power = "32 kw horizontal" AND channel = 32
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE ref_product_categories (unit_of_measure VARCHAR, product_category_code VARCHAR) ### Question: What is the unit of measuerment of the product category code "Herbs"? ### Answer: SELECT unit_of_measure FROM ref_product_categories WHERE product_category_code = "Herbs"
Below is an context that describes a sql 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 (score VARCHAR, record VARCHAR) ### Question: What is the score of the game with a 3-0 record? ### Answer: SELECT score FROM table_name_67 WHERE record = "3-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_34 (peak_population__year_ VARCHAR, city VARCHAR) ### Question: what is the peak population (year) for scranton? ### Answer: SELECT peak_population__year_ FROM table_name_34 WHERE city = "scranton"
Below is an context that describes a sql 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 (location_attendance VARCHAR, high_assists VARCHAR) ### Question: What is Location Attendance, when High Assists is Alvin Williams (9)? ### Answer: SELECT location_attendance FROM table_name_29 WHERE high_assists = "alvin williams (9)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_86 (date VARCHAR, record VARCHAR) ### Question: Which Date has a Record of 6-9? ### Answer: SELECT date FROM table_name_86 WHERE record = "6-9"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_41 (tourism_receipts__2011___millions_of_us INTEGER, tourist_arrivals__2011___millions_ VARCHAR, tourism_receipts__2011___us$_per_arrival_ VARCHAR) ### Question: What is the average tourism receipts in millions of US dollars in 2011 with less than 1.141 million of 2011 tourist arrivals and more than 1,449 tourism receipts in 2011 US dollars per arrival? ### Answer: SELECT AVG(tourism_receipts__2011___millions_of_us) AS $_ FROM table_name_41 WHERE tourist_arrivals__2011___millions_ < 1.141 AND tourism_receipts__2011___us$_per_arrival_ > 1 OFFSET 449