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_71 (country VARCHAR, score VARCHAR) ### Question: Which country has the score 70-76-68-214? ### Answer: SELECT country FROM table_name_71 WHERE score = "70-76-68-214"
Below is an context that describes a sql 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 (college_hall_of_fame VARCHAR, position VARCHAR) ### Question: What is the college hall of fame of the player who plays fullback? ### Answer: SELECT college_hall_of_fame FROM table_name_83 WHERE position = "fullback"
Below is an context that describes a sql 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 (shooter VARCHAR, rank_points VARCHAR, event VARCHAR, total VARCHAR) ### Question: What Shooter has an Event of wc beijing, a Total of 16, and Rank points of 4? ### Answer: SELECT shooter FROM table_name_21 WHERE event = "wc beijing" AND total = "16" AND rank_points = "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_197638_7 (australian_open INTEGER) ### Question: When was the Australian open? ### Answer: SELECT MAX(australian_open) FROM table_197638_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_14342210_13 (weight INTEGER, player VARCHAR) ### Question: What is hugh white's weight? ### Answer: SELECT MAX(weight) FROM table_14342210_13 WHERE player = "Hugh White"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_58 (no_range VARCHAR, year_built__converted VARCHAR, _ VARCHAR) ### Question: Tell me the number range for 1965-66 ### Answer: SELECT no_range FROM table_name_58 WHERE year_built__converted * _ = "1965-66"
Below is an context that describes a sql 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 (result VARCHAR, round VARCHAR) ### Question: The round that had the final, what was the result? ### Answer: SELECT result FROM table_name_11 WHERE round = "final"
Below is an context that describes a sql 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 (school VARCHAR, name VARCHAR) ### Question: what is the school for Ivey armstrong? ### Answer: SELECT school FROM table_name_90 WHERE name = "ivey armstrong"
Below is an context that describes a sql 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 (event VARCHAR, competition VARCHAR) ### Question: What Event has a Competition of world championships? ### Answer: SELECT event FROM table_name_77 WHERE competition = "world championships"
Below is an context that describes a sql 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 (venue VARCHAR, event VARCHAR, competition VARCHAR, year VARCHAR, time VARCHAR) ### Question: What Venue has a Year smaller than 1991, Time larger than 10.29, Competition of mediterranean games, and Event of 4x100 m relay? ### Answer: SELECT venue FROM table_name_10 WHERE year < 1991 AND time > 10.29 AND competition = "mediterranean games" AND event = "4x100 m relay"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_18335117_3 (director VARCHAR, no_in_series VARCHAR) ### Question: When 1 is the number in series who is the director? ### Answer: SELECT director FROM table_18335117_3 WHERE no_in_series = 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_1984697_85 (grades VARCHAR, school VARCHAR) ### Question: What are the grades served at Manchester Junior-Senior High School? ### Answer: SELECT grades FROM table_1984697_85 WHERE school = "Manchester Junior-Senior High school"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_98 (winning_driver VARCHAR, date VARCHAR) ### Question: Name the winner for 29 march ### Answer: SELECT winning_driver FROM table_name_98 WHERE date = "29 march"
Below is an context that describes a sql 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 (departure VARCHAR, station_name VARCHAR) ### Question: What is the Departure time at Kanpur Central Station? ### Answer: SELECT departure FROM table_name_67 WHERE station_name = "kanpur central"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Addresses (zip_postcode VARCHAR, city VARCHAR) ### Question: What is the zip code of the address in the city Port Chelsea? ### Answer: SELECT zip_postcode FROM Addresses WHERE city = 'Port Chelsea'
Below is an context that describes a sql 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 (pop_¹ VARCHAR, prefecture VARCHAR) ### Question: Name the total number of pop for ibaraki ### Answer: SELECT COUNT(pop_¹) FROM table_name_10 WHERE prefecture = "ibaraki"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_13836704_9 (aircraft_movements INTEGER, international_passengers VARCHAR) ### Question: what is the maximum aircraft movements with international passengers being 21002260 ### Answer: SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE international_passengers = 21002260
Below is an context that describes a sql 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 (date VARCHAR, week VARCHAR) ### Question: what is the date on week 6 ### Answer: SELECT date FROM table_name_97 WHERE week = 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_17 (attendance VARCHAR, week VARCHAR) ### Question: WHAT WAS THE ATTENDANCE FOR WEEK 15? ### Answer: SELECT attendance FROM table_name_17 WHERE week = 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 Apartments (apt_type_code VARCHAR, room_count INTEGER) ### Question: Show each apartment type code, and the maximum and minimum number of rooms for each type. ### Answer: SELECT apt_type_code, MAX(room_count), MIN(room_count) FROM Apartments GROUP BY apt_type_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_name_41 (loss VARCHAR, long VARCHAR, name VARCHAR, gain VARCHAR, avg_g VARCHAR) ### Question: What is the total number of losses Jackson, T., who had more than 27 gain, an avg/g smaller than 55.9, and a long less than 34, had? ### Answer: SELECT COUNT(loss) FROM table_name_41 WHERE gain > 27 AND avg_g < 55.9 AND name = "jackson, t." AND long < 34
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_5 (bronze INTEGER, nation VARCHAR, total VARCHAR) ### Question: What is the highest bronze total for east germany with under 3 total medals? ### Answer: SELECT MAX(bronze) FROM table_name_5 WHERE nation = "east germany" AND total < 3
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14945608_1 (attendance INTEGER) ### Question: What was the highest attendance? ### Answer: SELECT MAX(attendance) FROM table_14945608_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_92 (events INTEGER, cuts_made VARCHAR, top_25 VARCHAR) ### Question: Name the most events with cuts made more than 6 and top 25 more than 30 ### Answer: SELECT MAX(events) FROM table_name_92 WHERE cuts_made > 6 AND top_25 > 30
Below is an context that describes a sql 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 (round INTEGER, pick VARCHAR) ### Question: Name the sum of round for pick of 169 ### Answer: SELECT SUM(round) FROM table_name_41 WHERE pick = 169
Below is an context that describes a sql 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 (moving_to VARCHAR, name VARCHAR) ### Question: What is Moving To, when Name is "Leon Andreasen"? ### Answer: SELECT moving_to FROM table_name_18 WHERE name = "leon andreasen"
Below is an context that describes a sql 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 (wins INTEGER, rank INTEGER) ### Question: What is the low win total for players ranked below 4? ### Answer: SELECT MIN(wins) FROM table_name_17 WHERE rank > 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_22 (date VARCHAR, visitor VARCHAR, score VARCHAR) ### Question: When did the Visiting San Antonio Spurs score 97-113? ### Answer: SELECT date FROM table_name_22 WHERE visitor = "san antonio spurs" AND score = "97-113"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16078390_2 (founded VARCHAR, location VARCHAR) ### Question: How many Universities were founded in Tacoma, Washington? ### Answer: SELECT COUNT(founded) FROM table_16078390_2 WHERE location = "Tacoma, 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_23248940_9 (high_assists VARCHAR, date VARCHAR) ### Question: Who did the most high assists during the game played on February 6? ### Answer: SELECT high_assists FROM table_23248940_9 WHERE date = "February 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_71 (power__horsepower_ INTEGER, year_built INTEGER) ### Question: What is the power of the unit built after 1995? ### Answer: SELECT SUM(power__horsepower_) FROM table_name_71 WHERE year_built > 1995
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2897457_3 (pick__number VARCHAR, nhl_team VARCHAR) ### Question: What is the pick # when the new jersey devils is the nhl team? ### Answer: SELECT pick__number FROM table_2897457_3 WHERE nhl_team = "New Jersey Devils"
Below is an context that describes a sql 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 (frequency INTEGER, callsign VARCHAR, webcast VARCHAR, city_of_license VARCHAR) ### Question: Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet? ### Answer: SELECT MIN(frequency) FROM table_name_2 WHERE webcast = "listen live" AND city_of_license = "monterrey" AND callsign = "xet"
Below is an context that describes a sql 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 (score VARCHAR, decision VARCHAR, record VARCHAR) ### Question: What was the score of the game with a decision of Peeters and a record of 29–3–11? ### Answer: SELECT score FROM table_name_25 WHERE decision = "peeters" AND record = "29–3–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_name_68 (goals_against INTEGER, goals_for VARCHAR, goal_difference VARCHAR) ### Question: What is the average of goals against, where overall goals are more than 35 and the goal difference is 20? ### Answer: SELECT AVG(goals_against) FROM table_name_68 WHERE goals_for > 35 AND goal_difference = 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_name_97 (issue_date_s_ VARCHAR, artist VARCHAR) ### Question: What was the issue date for the song by Paul Mccartney and Michael Jackson? ### Answer: SELECT issue_date_s_ FROM table_name_97 WHERE artist = "paul mccartney and michael jackson"
Below is an context that describes a sql 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 (venue VARCHAR, season VARCHAR) ### Question: During season 1935, what was the venue? ### Answer: SELECT venue FROM table_name_92 WHERE season = "1935"
Below is an context that describes a sql 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 (touchdowns INTEGER, extra_points VARCHAR, field_goals VARCHAR) ### Question: How many touchdowns are there that has field goals less than 0 and 0 extra points? ### Answer: SELECT SUM(touchdowns) FROM table_name_53 WHERE extra_points = 0 AND field_goals < 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_96 (money___£__ VARCHAR, country VARCHAR) ### Question: What Money (£) has a Country of ireland? ### Answer: SELECT money___£__ FROM table_name_96 WHERE country = "ireland"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2840500_8 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: Name the college for andrej podkonicky ### Answer: SELECT college_junior_club_team FROM table_2840500_8 WHERE player = "Andrej Podkonicky"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR) ### Question: What is the average climb for Tenbosse? ### Answer: SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = "Tenbosse"
Below is an context that describes a sql 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 (pos INTEGER, driver VARCHAR) ### Question: Which Pos has a Driver of brian scott (r)? ### Answer: SELECT SUM(pos) FROM table_name_23 WHERE driver = "brian scott (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_name_13 (year VARCHAR, production VARCHAR, award_ceremony VARCHAR) ### Question: Which Year saw the Production of Wicked at the Helpmann Awards Award ceremony? ### Answer: SELECT year FROM table_name_13 WHERE production = "wicked" AND award_ceremony = "helpmann awards"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_71 (pick VARCHAR, name VARCHAR, overall VARCHAR) ### Question: What pick did George Rosso get drafted when the overall was less than 296? ### Answer: SELECT COUNT(pick) FROM table_name_71 WHERE name = "george rosso" AND overall < 296
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_26261072_1 (original_air_date VARCHAR, series__number VARCHAR) ### Question: Name the original air date for series number 15 ### Answer: SELECT original_air_date FROM table_26261072_1 WHERE series__number = 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_95 (location_attendance VARCHAR, game VARCHAR) ### Question: What is the location and attendance of game 1? ### Answer: SELECT location_attendance FROM table_name_95 WHERE game = 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_1849243_1 (viewers__in_millions_ VARCHAR, archive VARCHAR) ### Question: How many viewers watched the 16mm t/r episode? ### Answer: SELECT viewers__in_millions_ FROM table_1849243_1 WHERE archive = "16mm t/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_name_98 (points INTEGER, year VARCHAR, chassis VARCHAR) ### Question: What was the total amount of points in 1978 with a Chassis of arrows fa1? ### Answer: SELECT SUM(points) FROM table_name_98 WHERE year = 1978 AND chassis = "arrows fa1"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_71 (losing_bonus VARCHAR, points_against VARCHAR) ### Question: The club that had 546 points against, what was the losing bonus? ### Answer: SELECT losing_bonus FROM table_name_71 WHERE points_against = "546"
Below is an context that describes a sql 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 (director VARCHAR, notes VARCHAR, title VARCHAR) ### Question: Notes of bbc radio 3, and a Title of carnival involves which director? ### Answer: SELECT director FROM table_name_74 WHERE notes = "bbc radio 3" AND title = "carnival"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR) ### Question: What is the average attendance that has april 12 as the date? ### Answer: SELECT AVG(attendance) FROM table_name_14 WHERE date = "april 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_43 (opponent VARCHAR, venue VARCHAR, date VARCHAR) ### Question: Who played against in venue a on 17 february 1900? ### Answer: SELECT opponent FROM table_name_43 WHERE venue = "a" AND date = "17 february 1900"
Below is an context that describes a sql 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 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) ### Question: What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2? ### Answer: SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27409644_1 (manager VARCHAR, club VARCHAR) ### Question: Who is the pärnu manager? ### Answer: SELECT manager FROM table_27409644_1 WHERE club = "Pärnu"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_59 (catalog VARCHAR, region VARCHAR) ### Question: What is the Catalog Number is for the Japan region? ### Answer: SELECT catalog FROM table_name_59 WHERE region = "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_20 (operator VARCHAR, rank VARCHAR) ### Question: Which operator has a rank of 7? ### Answer: SELECT operator FROM table_name_20 WHERE rank = 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_15463188_17 (name VARCHAR, school_club_team VARCHAR) ### Question: How many players are listed for the school/club team Washington? ### Answer: SELECT COUNT(name) FROM table_15463188_17 WHERE school_club_team = "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_22133191_3 (date_of_appointment VARCHAR, position_in_table VARCHAR) ### Question: What was the date of appointment for the 10th person in position? ### Answer: SELECT date_of_appointment FROM table_22133191_3 WHERE position_in_table = "10th"
Below is an context that describes a sql 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 (top_division_debut VARCHAR, tournaments VARCHAR, name VARCHAR) ### Question: What is Top Division Debut, when Tournaments is "12", and when Name is "Yamamotoyama"? ### Answer: SELECT top_division_debut FROM table_name_67 WHERE tournaments = 12 AND name = "yamamotoyama"
Below is an context that describes a sql 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 (pole_position VARCHAR, team VARCHAR, round VARCHAR) ### Question: On round 3 for Arting Team Impul, who held pole position? ### Answer: SELECT pole_position FROM table_name_33 WHERE team = "arting team impul" AND round = 3
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_27 (country VARCHAR, series_premiere VARCHAR, tv_network_s_ VARCHAR) ### Question: What country has a series premier of unknown and mbc action as their TV network? ### Answer: SELECT country FROM table_name_27 WHERE series_premiere = "unknown" AND tv_network_s_ = "mbc action"
Below is an context that describes a sql 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 (october INTEGER, record VARCHAR, game VARCHAR) ### Question: Which October has a Record of 5–1–0, and a Game larger than 6? ### Answer: SELECT AVG(october) FROM table_name_2 WHERE record = "5–1–0" AND game > 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_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR) ### Question: Name the least indian tamil for population density being 240 ### Answer: SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240
Below is an context that describes a sql 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 (event VARCHAR, time VARCHAR) ### Question: What is the event with a 2:08 time? ### Answer: SELECT event FROM table_name_1 WHERE time = "2:08"
Below is an context that describes a sql 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 (place INTEGER, artist VARCHAR, televote VARCHAR) ### Question: Which Place is the highest one that has an Artist of nikolas metaxas, and a Televote larger than 60? ### Answer: SELECT MAX(place) FROM table_name_65 WHERE artist = "nikolas metaxas" AND televote > 60
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR) ### Question: what is the score on 22 february 1993? ### Answer: SELECT score FROM table_name_10 WHERE date = "22 february 1993"
Below is an context that describes a sql 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 (total INTEGER, silver VARCHAR, rank VARCHAR, gold VARCHAR) ### Question: What is the sum of all totals with a rank greater than 6, gold greater than 0, and silver greater than 2? ### Answer: SELECT SUM(total) FROM table_name_11 WHERE rank > 6 AND gold > 0 AND silver = 2
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_14 (partner VARCHAR, surface VARCHAR) ### Question: Who played on a hard surface? ### Answer: SELECT partner FROM table_name_14 WHERE surface = "hard"
Below is an context that describes a sql 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 (author VARCHAR, first_issue VARCHAR) ### Question: What is the Author of the Title with a First Issue of September 2010? ### Answer: SELECT author FROM table_name_87 WHERE first_issue = "september 2010"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1104312_5 (area_in_km² VARCHAR, original_name VARCHAR) ### Question: What is the area in km2 for the district whose original name was Kecamatan Bogor Timur? ### Answer: SELECT area_in_km² FROM table_1104312_5 WHERE original_name = "Kecamatan Bogor Timur"
Below is an context that describes a sql 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 (tries VARCHAR, player VARCHAR) ### Question: How many tries does Fakahau Valu have? ### Answer: SELECT tries FROM table_name_83 WHERE player = "fakahau valu"
Below is an context that describes a sql 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 (publication_date VARCHAR, person_s_ VARCHAR, reported_price VARCHAR, publisher_s_ VARCHAR) ### Question: What was the publication date of the photos of Sean Preston Federline that cost $500,000 and were published by People? ### Answer: SELECT publication_date FROM table_name_90 WHERE reported_price = "$500,000" AND publisher_s_ = "people" AND person_s_ = "sean preston federline"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1341423_9 (incumbent VARCHAR, district VARCHAR) ### Question: Who is the incumbent of Florida 9? ### Answer: SELECT incumbent FROM table_1341423_9 WHERE district = "Florida 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_44 (highest_rank VARCHAR, name VARCHAR) ### Question: Which Rank is Highest for Yoshiazuma? ### Answer: SELECT highest_rank FROM table_name_44 WHERE name = "yoshiazuma"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28059992_1 (pick__number VARCHAR, cfl_team VARCHAR) ### Question: How many pick# for CFL team of Toronto Argonauts? ### Answer: SELECT COUNT(pick__number) FROM table_28059992_1 WHERE cfl_team = "Toronto Argonauts"
Below is an context that describes a sql 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 (scorers VARCHAR, opponent VARCHAR, date VARCHAR) ### Question: Who were the scorers in the game against neuchâtel xamax played on 10 December 1985? ### Answer: SELECT scorers FROM table_name_64 WHERE opponent = "neuchâtel xamax" AND date = "10 december 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_90 (score VARCHAR, tie_no VARCHAR) ### Question: What was the final score in Tie #28? ### Answer: SELECT score FROM table_name_90 WHERE tie_no = 28
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2110959_1 (season VARCHAR, pct__percentage VARCHAR) ### Question: In what season was the pct % 0.552? ### Answer: SELECT season FROM table_2110959_1 WHERE pct__percentage = "0.552"
Below is an context that describes a sql 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 (actor VARCHAR, character VARCHAR) ### Question: What actor plays glen cole? ### Answer: SELECT actor FROM table_name_66 WHERE character = "glen cole"
Below is an context that describes a sql 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 (venue VARCHAR, home_team VARCHAR) ### Question: What venue did Richmond play at as the home team? ### Answer: SELECT venue FROM table_name_56 WHERE home_team = "richmond"
Below is an context that describes a sql 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 (against VARCHAR, venue VARCHAR) ### Question: Name the Against of Venue of brewery field , bridgend? ### Answer: SELECT against FROM table_name_31 WHERE venue = "brewery field , bridgend"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE endowment (donator_name VARCHAR, amount INTEGER) ### Question: List each donator name and the amount of endowment in descending order of the amount of endowment. ### Answer: SELECT donator_name, SUM(amount) FROM endowment GROUP BY donator_name ORDER BY SUM(amount) DESC
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1847523_2 (station VARCHAR, city_of_license__market VARCHAR) ### Question: What are all the stations with a license in Cincinnati? ### Answer: SELECT station FROM table_1847523_2 WHERE city_of_license__market = "Cincinnati"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16446652_1 (season VARCHAR, president VARCHAR) ### Question: When was Jonny Leadbeater President? ### Answer: SELECT season FROM table_16446652_1 WHERE president = "Jonny Leadbeater"
Below is an context that describes a sql 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 (vietnamese_name VARCHAR, chinese_name_¹ VARCHAR) ### Question: WHICH Vietnamese name has a Chinese name ¹ of 芒種 (芒种) mángzhòng? ### Answer: SELECT vietnamese_name FROM table_name_23 WHERE chinese_name_¹ = "芒種 (芒种) mángzhòng"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_19681738_1 (total INTEGER, county VARCHAR) ### Question: what is the least total in gila ### Answer: SELECT MIN(total) FROM table_19681738_1 WHERE county = "Gila"
Below is an context that describes a sql 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 (semifinalists VARCHAR, tournament VARCHAR) ### Question: What is the Semifinalists that has a Tournament of Cincinnati? ### Answer: SELECT semifinalists FROM table_name_29 WHERE tournament = "cincinnati"
Below is an context that describes a sql 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 (place VARCHAR, name VARCHAR) ### Question: What play did henry s. uber / betty uber (eng) finish in? ### Answer: SELECT COUNT(place) FROM table_name_99 WHERE name = "henry s. uber / betty uber (eng)"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE products (product_details VARCHAR) ### Question: Find the detail of products whose detail contains the word "Latte" or the word "Americano" ### Answer: SELECT product_details FROM products WHERE product_details LIKE "%Latte%" OR product_details LIKE "%Americano%"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23397386_2 (viewers__millions_ VARCHAR, airdate VARCHAR) ### Question: How many million viewers watched the episode that aired on March 28, 2010? ### Answer: SELECT viewers__millions_ FROM table_23397386_2 WHERE airdate = "March 28, 2010"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE files (f_id VARCHAR, duration VARCHAR) ### Question: What is the id of the longest song? ### Answer: SELECT f_id FROM files ORDER BY duration 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_53 (score VARCHAR, date VARCHAR) ### Question: What was the score on April 22? ### Answer: SELECT score FROM table_name_53 WHERE date = "april 22"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_48 (date VARCHAR, record VARCHAR) ### Question: What is the Date that has a Record of 33.952? ### Answer: SELECT date FROM table_name_48 WHERE record = "33.952"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_93 (set_5 VARCHAR, date VARCHAR) ### Question: What is the Set 5 with a Date that is jun 29? ### Answer: SELECT set_5 FROM table_name_93 WHERE date = "jun 29"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR) ### Question: What attendance was on 7 January 2003? ### Answer: SELECT attendance FROM table_name_14 WHERE date = "7 january 2003"
Below is an context that describes a sql 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 (transfer_fee VARCHAR, app_l_c_e_ VARCHAR, notes VARCHAR) ### Question: What was the transfer fee for the player who had an App(L/C/E) of 0 (0/0/0) and notes of to anagennisi karditsa? ### Answer: SELECT transfer_fee FROM table_name_61 WHERE app_l_c_e_ = "0 (0/0/0)" AND notes = "to anagennisi karditsa"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16185956_1 (district VARCHAR) ### Question: Who are the candidates in Washington 1 district? ### Answer: SELECT 2008 AS _candidates FROM table_16185956_1 WHERE district = "Washington 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_21034801_1 (game INTEGER, record VARCHAR) ### Question: What was the numer of the game when the record was 4-0? ### Answer: SELECT MAX(game) FROM table_21034801_1 WHERE record = "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_28243323_1 (basis_for_team_song VARCHAR, writer_composer VARCHAR) ### Question: What is the name of the team song written by ken walther? ### Answer: SELECT basis_for_team_song FROM table_28243323_1 WHERE writer_composer = "Ken Walther"
Below is an context that describes a sql 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 (played INTEGER, wins VARCHAR, position VARCHAR) ### Question: what is the played when the wins is 21 and the positions is higher than 3? ### Answer: SELECT SUM(played) FROM table_name_55 WHERE wins = 21 AND position > 3