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_1566852_8 (centerfold_model VARCHAR, pictorials VARCHAR) ### Question: Who was the centerfold model when the issue's pictorial was amanda beard, reby sky , girls of montauk ? ### Answer: SELECT centerfold_model FROM table_1566852_8 WHERE pictorials = "Amanda Beard, Reby Sky , Girls of Montauk"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_6 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the attendance of the North Melbourne's home game? ### Answer: SELECT COUNT(crowd) FROM table_name_6 WHERE home_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_42 (venue VARCHAR, stage VARCHAR, date VARCHAR) ### Question: What venue did group g play at on Mar 8, 1998? ### Answer: SELECT venue FROM table_name_42 WHERE stage = "group g" AND date = "mar 8, 1998"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_35 (school VARCHAR, college VARCHAR) ### Question: What is the school of the player from the College of Michigan? ### Answer: SELECT school FROM table_name_35 WHERE college = "michigan"
Below is an context that describes a sql 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 (publisher VARCHAR, name VARCHAR) ### Question: Which publisher is responsible for spec ops: stealth patrol? ### Answer: SELECT publisher FROM table_name_19 WHERE name = "spec ops: stealth patrol"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE party (party_name VARCHAR) ### Question: How many parties do we have? ### Answer: SELECT COUNT(DISTINCT party_name) FROM party
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_17311759_4 (high_assists VARCHAR, high_rebounds VARCHAR) ### Question: Who made highest assists when high rebounds was Al Horford (17) ### Answer: SELECT high_assists FROM table_17311759_4 WHERE high_rebounds = "Al Horford (17)"
Below is an context that describes a sql 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 (lost VARCHAR, points_for VARCHAR) ### Question: What is Lost, when Points For is "205"? ### Answer: SELECT lost FROM table_name_16 WHERE points_for = "205"
Below is an context that describes a sql 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 (premier_league INTEGER, UEfa_cup VARCHAR, fa_cup VARCHAR, total VARCHAR) ### Question: How much Premier League has an FA Cup of 0, and a Total of 1, and a UEFA Cup larger than 1? ### Answer: SELECT SUM(premier_league) FROM table_name_20 WHERE fa_cup = 0 AND total = 1 AND UEfa_cup > 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_24807774_1 (arabic VARCHAR, colombian VARCHAR) ### Question: how many arabic in colobians is finnish ### Answer: SELECT arabic FROM table_24807774_1 WHERE colombian = "Finnish"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_10 (purse VARCHAR, year VARCHAR) ### Question: What is the Purse listed for the Year of 1998? ### Answer: SELECT purse FROM table_name_10 WHERE year = "1998"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_79 (hometown VARCHAR, games_started VARCHAR) ### Question: Games started of 4 is in what hometown? ### Answer: SELECT hometown FROM table_name_79 WHERE games_started = "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_95 (city_of_license VARCHAR, call_sign VARCHAR) ### Question: Name the city of license for call sign of kcmp ### Answer: SELECT city_of_license FROM table_name_95 WHERE call_sign = "kcmp"
Below is an context that describes a sql 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 (points VARCHAR, tries VARCHAR, appearance VARCHAR) ### Question: How many times is tries 0 and appearance less than 0? ### Answer: SELECT COUNT(points) FROM table_name_51 WHERE tries = 0 AND appearance < 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_29 (stage VARCHAR, team_classification VARCHAR) ### Question: What is the stage of Gerolsteiner? ### Answer: SELECT stage FROM table_name_29 WHERE team_classification = "gerolsteiner"
Below is an context that describes a sql 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 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponent for 9 november 1991 ### Answer: SELECT opponent FROM table_name_19 WHERE date = "9 november 1991"
Below is an context that describes a sql 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 (fuel_type VARCHAR, manufacturer VARCHAR, mpg_us_extra_urban VARCHAR, mpg_us_combined VARCHAR) ### Question: Which Fuel Type that has a mpg-US Extra-Urban larger than 53.5, and a mpg-US Combined larger than 50 from renault? ### Answer: SELECT fuel_type FROM table_name_62 WHERE mpg_us_extra_urban > 53.5 AND mpg_us_combined > 50 AND manufacturer = "renault"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, match VARCHAR) ### Question: What is the highest draw that has points greater than 4, with a match greater than 5? ### Answer: SELECT MAX(draw) FROM table_name_92 WHERE points > 4 AND 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 customers (customer_id VARCHAR, customer_name VARCHAR); CREATE TABLE available_policies (policy_type_code VARCHAR, policy_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR, policy_id VARCHAR) ### Question: What are all the policy types of the customer named "Dayana Robel"? ### Answer: SELECT DISTINCT t3.policy_type_code FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id JOIN available_policies AS t3 ON t2.policy_id = t3.policy_id WHERE t1.customer_name = "Dayana Robel"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1137696_3 (winning_driver VARCHAR, round VARCHAR) ### Question: What is the winning driver of round 7? ### Answer: SELECT winning_driver FROM table_1137696_3 WHERE round = 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_28628309_9 (totals VARCHAR, player VARCHAR) ### Question: How many times is a total listed when the player is Jay Washington? ### Answer: SELECT COUNT(totals) FROM table_28628309_9 WHERE player = "Jay Washington"
Below is an context that describes a sql 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 (taper__in_ft_ INTEGER, size VARCHAR) ### Question: What is the highest Taper (in/ft), when Size is 8? ### Answer: SELECT MAX(taper__in_ft_) FROM table_name_20 WHERE size = 8
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_19 (country VARCHAR, language VARCHAR, director VARCHAR) ### Question: What country is the film directed by Jean-Luc Godard in French from? ### Answer: SELECT country FROM table_name_19 WHERE language = "french" AND director = "jean-luc godard"
Below is an context that describes a sql 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 (pick__number INTEGER, player VARCHAR) ### Question: What is the pick number for the player Chris Gomez? ### Answer: SELECT SUM(pick__number) FROM table_name_75 WHERE player = "chris gomez"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, callsign VARCHAR, station_type VARCHAR, power__kw_ VARCHAR) ### Question: What is the coverage of relay 5kw of dyfj-tv? ### Answer: SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND power__kw_ = "5kW" AND callsign = "DYFJ-TV"
Below is an context that describes a sql 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 (home_team VARCHAR) ### Question: What is north melbourne's home team score? ### Answer: SELECT home_team AS score FROM table_name_64 WHERE home_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_76 (date VARCHAR, week VARCHAR) ### Question: What is the date of the week 4 game? ### Answer: SELECT date FROM table_name_76 WHERE week = 4
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_31 (year_of_disaffiliation INTEGER, station VARCHAR, year_of_affiliation VARCHAR) ### Question: What is the most recent year of disaffiliation of a CHCH-TV station that affiliated after 2001? ### Answer: SELECT MAX(year_of_disaffiliation) FROM table_name_31 WHERE station = "chch-tv" AND year_of_affiliation > 2001
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13258823_2 (record VARCHAR, date VARCHAR) ### Question: Name the record for september 15, 1985 ### Answer: SELECT record FROM table_13258823_2 WHERE date = "September 15, 1985"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_85 (byes INTEGER, wins VARCHAR, against VARCHAR) ### Question: What's the number of byes for someone who had 7 wins and an against number greater than 1412? ### Answer: SELECT SUM(byes) FROM table_name_85 WHERE wins = 7 AND against > 1412
Below is an context that describes a sql 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 (losses INTEGER, wins VARCHAR, against VARCHAR, club VARCHAR) ### Question: What are the least losses of Warrnambool with more than 6 wins and less than 630 against? ### Answer: SELECT MIN(losses) FROM table_name_18 WHERE against < 630 AND club = "warrnambool" AND wins > 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_83 (title VARCHAR, track VARCHAR) ### Question: What is the title of track 7? ### Answer: SELECT title FROM table_name_83 WHERE track = 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_78 (chilean VARCHAR, castilian VARCHAR) ### Question: What Chilean word is used for the Castilian word ordenador? ### Answer: SELECT chilean FROM table_name_78 WHERE castilian = "ordenador"
Below is an context that describes a sql 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 (rowers VARCHAR, country VARCHAR) ### Question: Who is the rower from Canada? ### Answer: SELECT rowers FROM table_name_80 WHERE country = "canada"
Below is an context that describes a sql 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 (date VARCHAR, score VARCHAR) ### Question: What is the date of the game with a score of 4-3? ### Answer: SELECT date FROM table_name_41 WHERE score = "4-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_68 (county VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR) ### Question: Which County has an IHSAA Class of aaa, and an Enrollment smaller than 799? ### Answer: SELECT county FROM table_name_68 WHERE ihsaa_class = "aaa" AND enrollment < 799
Below is an context that describes a sql 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 (time VARCHAR, method VARCHAR, opponent VARCHAR) ### Question: Which time has a Method of decision(majority), and an Opponent of keisuke yamada? ### Answer: SELECT time FROM table_name_55 WHERE method = "decision(majority)" AND opponent = "keisuke yamada"
Below is an context that describes a sql 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 (total INTEGER, player VARCHAR) ### Question: What is the sum of Total, when Player is "Tommy Bolt"? ### Answer: SELECT SUM(total) FROM table_name_4 WHERE player = "tommy bolt"
Below is an context that describes a sql 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 (country VARCHAR, to_par VARCHAR) ### Question: What is the Country of the Player with a To par of –4? ### Answer: SELECT country FROM table_name_72 WHERE to_par = "–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_26263954_1 (english VARCHAR, kunrei_shiki VARCHAR) ### Question: how many number of english when kunrei-shiki is otya ### Answer: SELECT COUNT(english) FROM table_26263954_1 WHERE kunrei_shiki = "otya"
Below is an context that describes a sql 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 (round VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR) ### Question: How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)? ### Answer: SELECT COUNT(round) FROM table_name_66 WHERE nationality = "canada" AND college_junior_club_team__league_ = "fort mcmurray oil barons (ajhl)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2401326_1 (kerry_number INTEGER, others_number VARCHAR) ### Question: How many people voted for Kerry in the county where 8 voted for others? ### Answer: SELECT MIN(kerry_number) FROM table_2401326_1 WHERE others_number = 8
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_36 (studio_analysts VARCHAR, studio_host VARCHAR, year VARCHAR) ### Question: WHich Studio analysts has a Studio host of gary tanguay in 2009-10? ### Answer: SELECT studio_analysts FROM table_name_36 WHERE studio_host = "gary tanguay" AND year = "2009-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_10 (team VARCHAR, races VARCHAR, points VARCHAR) ### Question: What is the Team that has a Races of 4, and a Points of 0? ### Answer: SELECT team FROM table_name_10 WHERE races = "4" AND points = "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_89 (winner VARCHAR, _number_of_weeks VARCHAR, third_place VARCHAR) ### Question: Who won when robert kudelski finished with under 13 weeks? ### Answer: SELECT winner FROM table_name_89 WHERE _number_of_weeks < 13 AND third_place = "robert kudelski"
Below is an context that describes a sql 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 (game VARCHAR, result VARCHAR) ### Question: Which game had a result of 126-95? ### Answer: SELECT game FROM table_name_88 WHERE result = "126-95"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_38 (date VARCHAR, set_3 VARCHAR, score VARCHAR, time VARCHAR) ### Question: Which Date has a Score of 2–3, a Time of 20:30, and a Set 3 of 16–25? ### Answer: SELECT date FROM table_name_38 WHERE score = "2–3" AND time = "20:30" AND set_3 = "16–25"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22815568_1 (poverty_rate VARCHAR, market_income_per_capita VARCHAR) ### Question: What is the povery rate of the county with market income per capita of $20,518? ### Answer: SELECT poverty_rate FROM table_22815568_1 WHERE market_income_per_capita = "$20,518"
Below is an context that describes a sql 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 (draw VARCHAR, rank VARCHAR, dance_styles VARCHAR) ### Question: How many draws has lower than rank 10 in rumba/cha-cha/jazz dance? ### Answer: SELECT COUNT(draw) FROM table_name_65 WHERE rank < 10 AND dance_styles = "rumba/cha-cha/jazz dance"
Below is an context that describes a sql 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 (news_freq VARCHAR, time VARCHAR) ### Question: What News Freq has a Time of 1:00pm–4:00pm? ### Answer: SELECT news_freq FROM table_name_90 WHERE time = "1:00pm–4:00pm"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_29697744_1 (movements VARCHAR, position VARCHAR) ### Question: what is the name of the movement in the 7th position ### Answer: SELECT movements FROM table_29697744_1 WHERE position = "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_65 (k_themistokleous VARCHAR, i_kasoulidis VARCHAR) ### Question: What was the percentage for K. Themistokleous when I. Kasoulidis was 30.1%? ### Answer: SELECT k_themistokleous FROM table_name_65 WHERE i_kasoulidis = "30.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_80 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR) ### Question: What is the Time/Retired for the BMW Sauber, and Nick Heidfeld? ### Answer: SELECT time_retired FROM table_name_80 WHERE constructor = "bmw sauber" AND driver = "nick heidfeld"
Below is an context that describes a sql 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 (venue VARCHAR, batsmen VARCHAR) ### Question: Where were jamie cox & scott kremerskothen paired? ### Answer: SELECT venue FROM table_name_24 WHERE batsmen = "jamie cox & scott kremerskothen"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2701851_5 (directed_by VARCHAR, no_in_season VARCHAR) ### Question: Who was the director for the Episode number in season 10a? ### Answer: SELECT directed_by FROM table_2701851_5 WHERE no_in_season = "10a"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_19 (week VARCHAR, attendance VARCHAR) ### Question: In what Week was the Attendance 17,737? ### Answer: SELECT COUNT(week) FROM table_name_19 WHERE attendance = "17,737"
Below is an context that describes a sql 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 (cospar_id VARCHAR, launch_date_time__utc_ VARCHAR) ### Question: What COSPAR ID has a Launch date/time (UTC) of 1995-11-06, 05:15:01? ### Answer: SELECT cospar_id FROM table_name_40 WHERE launch_date_time__utc_ = "1995-11-06, 05:15:01"
Below is an context that describes a sql 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 (title VARCHAR, original_airdate VARCHAR) ### Question: What is the title of the program that was originally aired on June 13, 1999? ### Answer: SELECT title FROM table_name_8 WHERE original_airdate = "june 13, 1999"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_64 (pick INTEGER, overall VARCHAR, round VARCHAR, name VARCHAR) ### Question: Which Pick has a Round larger than 8, a Name of kenny fells, and an Overall larger than 297? ### Answer: SELECT SUM(pick) FROM table_name_64 WHERE round > 8 AND name = "kenny fells" AND overall > 297
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11900773_4 (paper_type VARCHAR, theme VARCHAR) ### Question: What kind of paper were the stamps with the theme duck decoys, barrow's golden eye printed on? ### Answer: SELECT paper_type FROM table_11900773_4 WHERE theme = "Duck Decoys, Barrow's Golden Eye"
Below is an context that describes a sql 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 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) ### Question: What is the film title used for nomination with the original title sedamdeset i dva dana? ### Answer: SELECT film_title_used_in_nomination FROM table_name_65 WHERE original_title = "sedamdeset i dva dana"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_92 (kickoff_time VARCHAR, week VARCHAR) ### Question: What is the kickoff time for the game in week of 17? ### Answer: SELECT kickoff_time FROM table_name_92 WHERE week = 17
Below is an context that describes a sql 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 (record VARCHAR, home VARCHAR, date VARCHAR) ### Question: What is the record on October 13, when philadelphia was the home team? ### Answer: SELECT record FROM table_name_47 WHERE home = "philadelphia" AND date = "october 13"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_63 (laps INTEGER, time_retired VARCHAR, grid VARCHAR, constructor VARCHAR) ### Question: When renault is the constructor, the grid is over 6, and the time was labeled ignition, what's the largest amount of laps on record? ### Answer: SELECT MAX(laps) FROM table_name_63 WHERE grid > 6 AND constructor = "renault" AND time_retired = "ignition"
Below is an context that describes a sql 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 (country VARCHAR, place VARCHAR, score VARCHAR) ### Question: What county placed t2 and scored 68-69-68-72=277? ### Answer: SELECT country FROM table_name_95 WHERE place = "t2" AND score = 68 - 69 - 68 - 72 = 277
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_62 (year INTEGER, type VARCHAR) ### Question: What is the most recent year with a mk.v type? ### Answer: SELECT MAX(year) FROM table_name_62 WHERE type = "mk.v"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_7 (points VARCHAR, entrant VARCHAR) ### Question: Total points for a bs automotive entrant? ### Answer: SELECT COUNT(points) FROM table_name_7 WHERE entrant = "bs automotive"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2562572_39 (dominant_religion__2002_ VARCHAR, population__2011_ VARCHAR) ### Question: The population is 2,107's dominant religion is? ### Answer: SELECT dominant_religion__2002_ FROM table_2562572_39 WHERE population__2011_ = "2,107"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_97 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team that played at Princes Park? ### Answer: SELECT away_team FROM table_name_97 WHERE venue = "princes park"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_12 (date VARCHAR, winner VARCHAR) ### Question: What date did Lanny Wadkins (6) win? ### Answer: SELECT date FROM table_name_12 WHERE winner = "lanny wadkins (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_10321124_1 (COUNT VARCHAR, escherichia VARCHAR) ### Question: how many ↓ function / genus → with escherichia being espd ### Answer: SELECT COUNT AS ↓_function___genus_→ FROM table_10321124_1 WHERE escherichia = "EspD"
Below is an context that describes a sql 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 (score VARCHAR, points VARCHAR) ### Question: What was the score of the game with 96 points? ### Answer: SELECT score FROM table_name_85 WHERE points = 96
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_22733636_1 (tournament_winner VARCHAR, regular_season_winner VARCHAR) ### Question: When Princeton was the regular season winner, who was the tournament winner? ### Answer: SELECT tournament_winner FROM table_22733636_1 WHERE regular_season_winner = "Princeton"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE player (name_first VARCHAR, name_last VARCHAR, player_id VARCHAR); CREATE TABLE player_award (player_id VARCHAR) ### Question: Which 3 players won the most player awards? List their full name and id. ### Answer: SELECT T1.name_first, T1.name_last, T1.player_id FROM player AS T1 JOIN player_award AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY COUNT(*) DESC LIMIT 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_148386_2 (casino_theatre_1888 VARCHAR, savoy_theatre_1906 VARCHAR) ### Question: Who plays Overton Moyle in casino theatre 1888 & savoy theatre 1906? ### Answer: SELECT casino_theatre_1888 FROM table_148386_2 WHERE savoy_theatre_1906 = "Overton Moyle"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21058836_1 (result VARCHAR, opponents VARCHAR) ### Question: The game the Bruins scored 26 ,what was the result? ### Answer: SELECT result FROM table_21058836_1 WHERE opponents = 26
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23292220_7 (scores VARCHAR, episode VARCHAR) ### Question: Name the number of scores for episode 7x05 ### Answer: SELECT COUNT(scores) FROM table_23292220_7 WHERE episode = "7x05"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_21994729_3 (title VARCHAR, directed_by VARCHAR) ### Question: What are all the title directed by reginald hudlin ### Answer: SELECT COUNT(title) FROM table_21994729_3 WHERE directed_by = "Reginald Hudlin"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_92 (pr_top_up VARCHAR, percentage VARCHAR, total VARCHAR) ### Question: WHAT IS TOTAL NUMBER OF PR TOP-UPS THAT HAVE A PERCENTAGE OF 0.8%, TOTAL LARGER THAN 1? ### Answer: SELECT COUNT(pr_top_up) FROM table_name_92 WHERE percentage = "0.8%" 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_2 (marowijne VARCHAR, saramacca VARCHAR) ### Question: What is the marowijne with an 18.8% saramacca? ### Answer: SELECT marowijne FROM table_name_2 WHERE saramacca = "18.8%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_92 (type VARCHAR, country VARCHAR) ### Question: What is the type of sco country? ### Answer: SELECT type FROM table_name_92 WHERE country = "sco"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23186738_9 (score VARCHAR, team VARCHAR) ### Question: Name the score for chicago ### Answer: SELECT score FROM table_23186738_9 WHERE team = "Chicago"
Below is an context that describes a sql 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 (attendance INTEGER, opponent VARCHAR, record VARCHAR) ### Question: What is the attendance of the game that has the opponent of The Nationals with a record of 68-51? ### Answer: SELECT SUM(attendance) FROM table_name_42 WHERE opponent = "nationals" AND record = "68-51"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23346303_3 (record VARCHAR, location VARCHAR, opponent VARCHAR) ### Question: what is the record where the locaiton is tampa, fl and the opponent is louisville? ### Answer: SELECT record FROM table_23346303_3 WHERE location = "Tampa, FL" AND opponent = "Louisville"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_53 (year VARCHAR, passenger_change VARCHAR) ### Question: What is the year that saw a passenger change of +32,9%? ### Answer: SELECT COUNT(year) FROM table_name_53 WHERE passenger_change = "+32,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_19753079_12 (candidates VARCHAR, district VARCHAR) ### Question: Who were candidates in Florida 10 district? ### Answer: SELECT candidates FROM table_19753079_12 WHERE district = "Florida 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_20398823_1 (podiums INTEGER, points VARCHAR) ### Question: Name the least podiums for 49 points ### Answer: SELECT MIN(podiums) FROM table_20398823_1 WHERE points = "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_25818630_1 (result___votes INTEGER, loss_gain VARCHAR) ### Question: What is the largest vote result if loss/gain is -0.5%? ### Answer: SELECT MAX(result___votes) FROM table_25818630_1 WHERE loss_gain = "-0.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_42 (wins INTEGER, against INTEGER) ### Question: What is the least wins for a team with against less than 814? ### Answer: SELECT MIN(wins) FROM table_name_42 WHERE against < 814
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE club (name VARCHAR, Club_ID VARCHAR); CREATE TABLE player (Player_id VARCHAR, Club_ID VARCHAR) ### Question: Please show the names and the players of clubs. ### Answer: SELECT T1.name, T2.Player_id FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_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_83 (rank INTEGER, bronze VARCHAR, total VARCHAR) ### Question: what is the highest rank when the bronze is less than 1 and the total is less than 1? ### Answer: SELECT MAX(rank) FROM table_name_83 WHERE bronze < 1 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_4 (network VARCHAR, games VARCHAR, title VARCHAR) ### Question: Which network had unknown games and a title of hvem kan slå ylvis hvem kan slå aamodt & kjus? ### Answer: SELECT network FROM table_name_4 WHERE games = "unknown" AND title = "hvem kan slå ylvis hvem kan slå aamodt & kjus"
Below is an context that describes a sql 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 (network VARCHAR, year VARCHAR) ### Question: What's the network in 2011? ### Answer: SELECT network FROM table_name_25 WHERE year = 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_26375386_20 (couple VARCHAR, vote_percentage VARCHAR) ### Question: what couple had a vote percentage of 5.8%? ### Answer: SELECT couple FROM table_26375386_20 WHERE vote_percentage = "5.8%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_85 (week_6 VARCHAR, week_3 VARCHAR, week_7 VARCHAR) ### Question: Name the week 6 when week 3 is 25 and week 7 is eliminated ### Answer: SELECT week_6 FROM table_name_85 WHERE week_3 = "25" AND week_7 = "eliminated"
Below is an context that describes a sql 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 (goals INTEGER, apps INTEGER) ### Question: Tell me the average goals with apps less than 3 ### Answer: SELECT AVG(goals) FROM table_name_16 WHERE apps < 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_88 (label VARCHAR, title VARCHAR, year VARCHAR, details VARCHAR) ### Question: Which label has a year older than 2004 and a 2xcd detail as well as the sonic seducer cold hands seduction vol. 69 title? ### Answer: SELECT label FROM table_name_88 WHERE year > 2004 AND details = "2xcd" AND title = "sonic seducer cold hands seduction vol. 69"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14015965_1 (arena__capacity_ VARCHAR, previous_season VARCHAR) ### Question: What arena was season 6 played at? ### Answer: SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = "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_27 (capital VARCHAR, largest_city VARCHAR) ### Question: What is the capital for the state that has the largest city of Burlington? ### Answer: SELECT capital FROM table_name_27 WHERE largest_city = "burlington"
Below is an context that describes a sql 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 (place VARCHAR, score VARCHAR) ### Question: What place goes with the score of 70-66-65=201? ### Answer: SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201