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_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR) ### Question: Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio. ### Answer: SELECT website FROM table_name_53 WHERE city_of_license = "san antonio" AND webcast = "listen live" AND frequency = 680
Below is an context that describes a sql 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 (opponent VARCHAR, round VARCHAR, time VARCHAR) ### Question: Which Opponent has a Round smaller than 3, and a Time of 1:09? ### Answer: SELECT opponent FROM table_name_48 WHERE round < 3 AND time = "1:09"
Below is an context that describes a sql 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 (reg_gp VARCHAR, player VARCHAR, rd__number VARCHAR) ### Question: How many Reg GP does daniel rahimi have with a rd # greater than 3? ### Answer: SELECT COUNT(reg_gp) FROM table_name_66 WHERE player = "daniel rahimi" AND rd__number > 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_171356_2 (census_ranking VARCHAR, official_name VARCHAR) ### Question: What is Petersville's census ranking? ### Answer: SELECT census_ranking FROM table_171356_2 WHERE official_name = "Petersville"
Below is an context that describes a sql 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 (week INTEGER, attendance INTEGER) ### Question: What week had a lower attendance than 51,423 but was still higher than the other weeks? ### Answer: SELECT MAX(week) FROM table_name_76 WHERE attendance < 51 OFFSET 423
Below is an context that describes a sql 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, record VARCHAR) ### Question: What was total attendance on the day they went 17-7? ### Answer: SELECT COUNT(attendance) FROM table_name_17 WHERE record = "17-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_1414702_3 (established INTEGER, high_school VARCHAR) ### Question: When was Mount Tahoma established? ### Answer: SELECT MAX(established) FROM table_1414702_3 WHERE high_school = "Mount Tahoma"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_52 (transfer_window VARCHAR, name VARCHAR) ### Question: What is Brown's transfer window? ### Answer: SELECT transfer_window FROM table_name_52 WHERE name = "brown"
Below is an context that describes a sql 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 (site VARCHAR, date VARCHAR) ### Question: What site has november 30, 2006 as the date? ### Answer: SELECT site FROM table_name_25 WHERE date = "november 30, 2006"
Below is an context that describes a sql 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 (member VARCHAR, electorate VARCHAR) ### Question: Which Member has an Electorate of southern melbourne? ### Answer: SELECT member FROM table_name_36 WHERE electorate = "southern 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_34 (record VARCHAR, date VARCHAR) ### Question: what game took place on september 14 ### Answer: SELECT record FROM table_name_34 WHERE date = "september 14"
Below is an context that describes a sql 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 (date VARCHAR, attendance VARCHAR, opponent VARCHAR, result VARCHAR) ### Question: How many Dates have an Opponent of romford raiders, and a Result of won 7-3, and an Attendance larger than 1,769? ### Answer: SELECT COUNT(date) FROM table_name_24 WHERE opponent = "romford raiders" AND result = "won 7-3" AND attendance > 1 OFFSET 769
Below is an context that describes a sql 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 (race VARCHAR, position VARCHAR, speed VARCHAR) ### Question: Which race has a position of 3rd and a speed of 123.628? ### Answer: SELECT race FROM table_name_90 WHERE position = "3rd" AND speed = "123.628"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_28578594_1 (entrant VARCHAR, driver VARCHAR) ### Question: Name the entrant for bruno sterzi ### Answer: SELECT entrant FROM table_28578594_1 WHERE driver = "Bruno Sterzi"
Below is an context that describes a sql 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 (venue VARCHAR, rank VARCHAR) ### Question: Which venue is rank 3? ### Answer: SELECT venue FROM table_name_38 WHERE rank = "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_25 (date VARCHAR, opponent VARCHAR, result VARCHAR) ### Question: What is the Date with a Opponent with wimbledon, and a Result of won 2-0? ### Answer: SELECT date FROM table_name_25 WHERE opponent = "wimbledon" AND result = "won 2-0"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1165048_1 (win_loss VARCHAR, season VARCHAR) ### Question: what are all theΒ win/lossΒ whereΒ seasonΒ is 2009 ### Answer: SELECT win_loss FROM table_1165048_1 WHERE season = 2009
Below is an context that describes a sql 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 (field_goals INTEGER, touchdowns VARCHAR, player VARCHAR, points VARCHAR, extra_points VARCHAR) ### Question: When Herb Graver played, how many field goals were made when there were more than 50 points, less than 15 touchdowns, and more than 0 extra points? ### Answer: SELECT AVG(field_goals) FROM table_name_87 WHERE points > 50 AND extra_points > 0 AND player = "herb graver" AND touchdowns < 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_69 (nominee_s_ VARCHAR, year VARCHAR, result VARCHAR) ### Question: Which nominees won before year 2005? ### Answer: SELECT nominee_s_ FROM table_name_69 WHERE year < 2005 AND result = "won"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_60 (others VARCHAR, cons VARCHAR, lead VARCHAR) ### Question: Name the others for cons of 21% and lead of 24% ### Answer: SELECT others FROM table_name_60 WHERE cons = "21%" AND lead = "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_262514_1 (institution VARCHAR, nickname VARCHAR) ### Question: What is every institution with a nickname of Ravens? ### Answer: SELECT institution FROM table_262514_1 WHERE nickname = "Ravens"
Below is an context that describes a sql 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 (partner VARCHAR, score_in_the_final VARCHAR) ### Question: Who is the partner in the final with a score of 2–6, 7–6, 7–6? ### Answer: SELECT partner FROM table_name_10 WHERE score_in_the_final = "2–6, 7–6, 7–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_78 (method VARCHAR, event VARCHAR) ### Question: What method was used in the Pride 17 event? ### Answer: SELECT method FROM table_name_78 WHERE event = "pride 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_24 (engine VARCHAR, chassis VARCHAR, drivers VARCHAR) ### Question: What engine did Casey Mears use on the Reynard 01i Chassis? ### Answer: SELECT engine FROM table_name_24 WHERE chassis = "reynard 01i" AND drivers = "casey mears"
Below is an context that describes a sql 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 (director VARCHAR, role VARCHAR) ### Question: Who was the director where the role was Fred Ayres? ### Answer: SELECT director FROM table_name_13 WHERE role = "fred ayres"
Below is an context that describes a sql 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 (pick INTEGER, player VARCHAR) ### Question: How many picks have a Player of pong escobal? ### Answer: SELECT SUM(pick) FROM table_name_80 WHERE player = "pong escobal"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14863869_1 (record VARCHAR, week VARCHAR) ### Question: How many scores were there in week 11? ### Answer: SELECT COUNT(record) FROM table_14863869_1 WHERE week = 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_55 (role VARCHAR, broadcaster VARCHAR) ### Question: What was the role for Challenge TV? ### Answer: SELECT role FROM table_name_55 WHERE broadcaster = "challenge 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_2781227_4 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: For player is adam wiesel mention all the college/junior/club team ### Answer: SELECT college_junior_club_team FROM table_2781227_4 WHERE player = "Adam Wiesel"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16729930_18 (tdp VARCHAR, release_price___usd__ VARCHAR) ### Question: For a release price of $72, what is the TDP of the microprocessor? ### Answer: SELECT tdp FROM table_16729930_18 WHERE release_price___usd__ = "$72"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_11 (type VARCHAR, moving_from VARCHAR) ### Question: What is the type of the player moving from belgrano? ### Answer: SELECT type FROM table_name_11 WHERE moving_from = "belgrano"
Below is an context that describes a sql 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 (date VARCHAR, record VARCHAR) ### Question: What was the date of the game when the Lightning had a record of 10–13–2? ### Answer: SELECT date FROM table_name_96 WHERE record = "10–13–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_27756314_8 (date VARCHAR, game VARCHAR) ### Question: What is the date for the game 35? ### Answer: SELECT date FROM table_27756314_8 WHERE game = 35
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Draft_Copies (document_id VARCHAR) ### Question: How many draft copies does the document with id 2 have? ### Answer: SELECT COUNT(*) FROM Draft_Copies WHERE document_id = 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_96 (year VARCHAR, rank VARCHAR) ### Question: In what year was the rank 24? ### Answer: SELECT year FROM table_name_96 WHERE rank = "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_name_42 (roll VARCHAR, authority VARCHAR, decile VARCHAR) ### Question: What is the roll for the school with state authority and a decile of 9? ### Answer: SELECT roll FROM table_name_42 WHERE authority = "state" AND decile = 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 (round INTEGER, record VARCHAR) ### Question: Tell me the sum of round for record of 6-3 ### Answer: SELECT SUM(round) FROM table_name_41 WHERE record = "6-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 player (birth_country VARCHAR, bats VARCHAR) ### Question: How many players born in USA are right-handed batters? That is, have the batter value 'R'. ### Answer: SELECT COUNT(*) FROM player WHERE birth_country = 'USA' AND bats = '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_64 (total INTEGER, gold VARCHAR, silver VARCHAR, bronze VARCHAR) ### Question: what is the average total when silver is more than 2, bronze is 12 and gold is less than 12? ### Answer: SELECT AVG(total) FROM table_name_64 WHERE silver > 2 AND bronze = 12 AND gold < 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_49 (money___Β£__ VARCHAR, to_par VARCHAR) ### Question: Name the money for the to par of -6 ### Answer: SELECT money___Β£__ FROM table_name_49 WHERE to_par = "-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_6 (competition VARCHAR, date VARCHAR) ### Question: What was the competition on 13 November 2005? ### Answer: SELECT competition FROM table_name_6 WHERE date = "13 november 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_20090682_4 (driver VARCHAR, best_time_of_day VARCHAR) ### Question: which driver got best time of day 1:16.93 ### Answer: SELECT driver FROM table_20090682_4 WHERE best_time_of_day = "1:16.93"
Below is an context that describes a sql 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 (sydney VARCHAR, auckland VARCHAR, melbourne VARCHAR, adelaide VARCHAR, gold_coast VARCHAR) ### Question: what is the Sydney that has Adelaide, Gold Coast, Melbourne, and Auckland are all yes? ### Answer: SELECT sydney FROM table_name_61 WHERE adelaide = "yes" AND gold_coast = "yes" AND melbourne = "yes" AND auckland = "yes"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_1628607_5 (points__percentage VARCHAR, foursomes_w_l_h VARCHAR) ### Question: When the foursome was w-l-h is 1–0–0 won w/ p. creamer 3&2, what was the points %? ### Answer: SELECT points__percentage FROM table_1628607_5 WHERE foursomes_w_l_h = "1–0–0 won w/ P. Creamer 3&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_75 (shooter VARCHAR, event VARCHAR) ### Question: Who was the shooter for the WC Beijing event? ### Answer: SELECT shooter FROM table_name_75 WHERE event = "wc beijing"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_16388478_3 (away_team VARCHAR, home_team VARCHAR) ### Question: What score did the away team receive against home team Port Adelaide? ### Answer: SELECT away_team AS score FROM table_16388478_3 WHERE home_team = "Port Adelaide"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE Flight (price INTEGER, origin VARCHAR, destination VARCHAR) ### Question: What is the average price for flights from Los Angeles to Honolulu. ### Answer: SELECT AVG(price) FROM Flight WHERE origin = "Los Angeles" AND destination = "Honolulu"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR) ### Question: What was the team where Darren Collison (7) scored high assists? ### Answer: SELECT team FROM table_27756164_11 WHERE high_assists = "Darren Collison (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_84 (score VARCHAR, player VARCHAR) ### Question: What is the score for Greg Norman ### Answer: SELECT score FROM table_name_84 WHERE player = "greg norman"
Below is an context that describes a sql 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 (player VARCHAR, college VARCHAR) ### Question: Name the player that went to notre dame ### Answer: SELECT player FROM table_name_88 WHERE college = "notre dame"
Below is an context that describes a sql 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 (position VARCHAR, round VARCHAR, pick VARCHAR) ### Question: Which Position has a Round smaller than 5, and a Pick of 5? ### Answer: SELECT position FROM table_name_75 WHERE round < 5 AND pick = 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_57 (game INTEGER, team VARCHAR) ### Question: What is the earliest game against Orlando? ### Answer: SELECT MIN(game) FROM table_name_57 WHERE team = "orlando"
Below is an context that describes a sql 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 (poll VARCHAR, wk_13 VARCHAR, wk_10 VARCHAR, wk_2 VARCHAR) ### Question: Which poll had a week 10 larger than 2, a week 2 of exactly 12, and a week 13 of 8? ### Answer: SELECT poll FROM table_name_10 WHERE wk_10 > 2 AND wk_2 = "12" AND wk_13 = 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_10 (year VARCHAR, extra VARCHAR, result VARCHAR, venue VARCHAR) ### Question: Result of 1st, and a Venue of melbourne , australia, and a Extra of 100 m happened in which year? ### Answer: SELECT year FROM table_name_10 WHERE result = "1st" AND venue = "melbourne , australia" AND extra = "100 m"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_51 (laps VARCHAR, time_retired VARCHAR) ### Question: How many laps have a time/retired of +23.080? ### Answer: SELECT laps FROM table_name_51 WHERE time_retired = "+23.080"
Below is an context that describes a sql 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 (starting_point VARCHAR, operates VARCHAR, name VARCHAR) ### Question: What is the starting point of the north/south operating Palafox Street route? ### Answer: SELECT starting_point FROM table_name_66 WHERE operates = "north/south" AND name = "palafox street"
Below is an context that describes a sql 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 (comprehension_of_danish VARCHAR, average VARCHAR, comprehension_of_norwegian VARCHAR) ### Question: Which Comprehension of Danish has an Average smaller than 6.85, and a Comprehension of Norwegian of 4.13? ### Answer: SELECT comprehension_of_danish FROM table_name_48 WHERE average < 6.85 AND comprehension_of_norwegian = "4.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_1307572_1 (composition VARCHAR, edge VARCHAR) ### Question: What material is made with a rounded, plain edge? ### Answer: SELECT composition FROM table_1307572_1 WHERE edge = "Rounded, plain"
Below is an context that describes a sql 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 (line VARCHAR, location VARCHAR, current_status VARCHAR, closed VARCHAR) ### Question: What is the line of the station in Toolamba that is currently demolished and closed in the late 1970s? ### Answer: SELECT line FROM table_name_81 WHERE current_status = "demolished" AND closed = "late 1970s" AND location = "toolamba"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_9 (rate VARCHAR, goals INTEGER) ### Question: What was the rate when there were more than 22 goals? ### Answer: SELECT rate FROM table_name_9 WHERE goals > 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_26702078_1 (writer_s_ VARCHAR, no_in_series VARCHAR) ### Question: Name the writers for 46 in series ### Answer: SELECT writer_s_ FROM table_26702078_1 WHERE no_in_series = 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_name_35 (payload__kg_ VARCHAR, weight__kg_ VARCHAR) ### Question: Name the payload that has a weight of 12,000 ### Answer: SELECT payload__kg_ FROM table_name_35 WHERE weight__kg_ = "12,000"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_name_7 (company VARCHAR, principal_activities VARCHAR) ### Question: What company focuses on Engine Overhaul for their principal activity? ### Answer: SELECT company FROM table_name_7 WHERE principal_activities = "engine overhaul"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_27515452_3 (age INTEGER, hometown VARCHAR) ### Question: what is the oldest and lives in veraguas ### Answer: SELECT MAX(age) FROM table_27515452_3 WHERE hometown = "Veraguas"
Below is an context that describes a sql 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 (icelandic VARCHAR, english VARCHAR) ### Question: What's the Icelandic word for rain? ### Answer: SELECT icelandic FROM table_name_12 WHERE english = "rain"
Below is an context that describes a sql 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 (week_3 VARCHAR, week_1 VARCHAR) ### Question: Who is the cyber girl in week 3 when Demi Jessica was the cyber girl in week 1? ### Answer: SELECT week_3 FROM table_name_33 WHERE week_1 = "demi jessica"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14863869_1 (record VARCHAR, date VARCHAR) ### Question: What was the score in the game played on December 2, 1984? ### Answer: SELECT record FROM table_14863869_1 WHERE date = "December 2, 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_50 (team VARCHAR, game VARCHAR) ### Question: What team played the Jazz at game 68? ### Answer: SELECT team FROM table_name_50 WHERE game = 68
Below is an context that describes a sql 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 (goals VARCHAR, Game VARCHAR, appearances VARCHAR) ### Question: Which goals/game ratio has fewer than 201 goals and fewer than 170 appearances? ### Answer: SELECT goals / Game AS Ratio FROM table_name_29 WHERE goals < 201 AND appearances < 170
Below is an context that describes a sql 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 (crowd VARCHAR, away_team VARCHAR) ### Question: How many spectators watched when the away team was Collingwood? ### Answer: SELECT crowd FROM table_name_8 WHERE away_team = "collingwood"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2004733_2 (population__2000_ VARCHAR, barangay VARCHAR) ### Question: How many people lived in san gabriel in the year 2000? ### Answer: SELECT COUNT(population__2000_) FROM table_2004733_2 WHERE barangay = "San Gabriel"
Below is an context that describes a sql 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 (away_team VARCHAR) ### Question: What was Melbourne's score as the away team? ### Answer: SELECT away_team AS score FROM table_name_17 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_name_50 (lane INTEGER, mark VARCHAR) ### Question: What was the lowest lane with a mark of 7.26? ### Answer: SELECT MIN(lane) FROM table_name_50 WHERE mark = "7.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_name_11 (winners VARCHAR, runners_up INTEGER) ### Question: How many times is runners-up less than 0? ### Answer: SELECT COUNT(winners) FROM table_name_11 WHERE runners_up < 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_29566686_1 (clubs_remaining INTEGER, leagues_entering_at_this_round VARCHAR) ### Question: What is the maximum number of clubs remaining when the league entering at this round was allsvenskan? ### Answer: SELECT MIN(clubs_remaining) FROM table_29566686_1 WHERE leagues_entering_at_this_round = "Allsvenskan"
Below is an context that describes a sql 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 (snatch VARCHAR, bodyweight VARCHAR, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) ### Question: Tell me the total number of snatches for clean and jerk more than 132.5 when the total kg was 315 and bodyweight was 68.63 ### Answer: SELECT COUNT(snatch) FROM table_name_62 WHERE clean_ & _jerk > 132.5 AND total__kg_ = 315 AND bodyweight = 68.63
Below is an context that describes a sql 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 (directed_by VARCHAR, episode__number VARCHAR) ### Question: What is Directed By, when Episode # is 7? ### Answer: SELECT directed_by FROM table_name_18 WHERE episode__number = 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_15 (home_port VARCHAR, ship VARCHAR) ### Question: Name the home port for kansas city ### Answer: SELECT home_port FROM table_name_15 WHERE ship = "kansas city"
Below is an context that describes a sql 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 (final_position___round VARCHAR, competition VARCHAR) ### Question: Tell me the final position for fa community shield ### Answer: SELECT final_position___round FROM table_name_22 WHERE competition = "fa community shield"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11677691_4 (school VARCHAR, hometown VARCHAR) ### Question: How many players' hometown was Akron, Ohio? ### Answer: SELECT COUNT(school) FROM table_11677691_4 WHERE hometown = "Akron, Ohio"
Below is an context that describes a sql 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 (wins VARCHAR, rank VARCHAR) ### Question: How many wins occurred for 6th rank? ### Answer: SELECT COUNT(wins) FROM table_name_31 WHERE rank = "6th"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_2668254_8 (party VARCHAR, incumbent VARCHAR) ### Question: What party did the incumbent Thomas P. Moore belong to? ### Answer: SELECT party FROM table_2668254_8 WHERE incumbent = "Thomas P. Moore"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE county_public_safety (county_ID VARCHAR, population INTEGER); CREATE TABLE city (county_ID VARCHAR, population INTEGER) ### Question: Show the number of cities in counties that have a population more than 20000. ### Answer: SELECT COUNT(*) FROM city WHERE county_ID IN (SELECT county_ID FROM county_public_safety WHERE population > 20000)
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_11542215_3 (vault VARCHAR, total VARCHAR) ### Question: What is the vault score for the total of 56.635? ### Answer: SELECT vault FROM table_11542215_3 WHERE total = "56.635"
Below is an context that describes a sql 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 (outcome VARCHAR, score VARCHAR) ### Question: What is the outcome of the 4–6, 6–4, 6–3, 7–6 (7–2) score? ### Answer: SELECT outcome FROM table_name_7 WHERE score = "4–6, 6–4, 6–3, 7–6 (7–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_54 (division VARCHAR, season VARCHAR, goals VARCHAR) ### Question: What's the total number of all divisions during the 2006/07 season where they scored more than 1 goal? ### Answer: SELECT COUNT(division) FROM table_name_54 WHERE season = "2006/07" AND goals > 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_81 (draws INTEGER, port_fairy_fl VARCHAR, wins VARCHAR) ### Question: How many draws when the Port Fairy FL is Hawkesdale and there are more than 9 wins? ### Answer: SELECT MAX(draws) FROM table_name_81 WHERE port_fairy_fl = "hawkesdale" AND wins > 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_25 (cancelable VARCHAR, attribute VARCHAR) ### Question: Name the cancelable for onmouseover ### Answer: SELECT cancelable FROM table_name_25 WHERE attribute = "onmouseover"
Below is an context that describes a sql 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 (away_team VARCHAR, tie_no VARCHAR) ### Question: Which away team has a Tie no of 14? ### Answer: SELECT away_team FROM table_name_67 WHERE tie_no = "14"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_14058433_3 (points VARCHAR, tries_for VARCHAR) ### Question: How many points were made when the tries for was 83? ### Answer: SELECT points FROM table_14058433_3 WHERE tries_for = "83"
Below is an context that describes a sql 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 (average INTEGER, week VARCHAR, yards VARCHAR, team VARCHAR) ### Question: Which Average has Yards larger than 167, and a Team of at tb, and a Week larger than 7? ### Answer: SELECT MIN(average) FROM table_name_98 WHERE yards > 167 AND team = "at tb" AND week > 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_19524523_1 (champ_car_world_series__2004_2007_ INTEGER, usac__1956_1995_ VARCHAR) ### Question: What is the most Champ Car wins for any driver with a USAC record of 2? ### Answer: SELECT MAX(champ_car_world_series__2004_2007_) FROM table_19524523_1 WHERE usac__1956_1995_ = 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_73 (chassis VARCHAR, engine VARCHAR, drivers VARCHAR) ### Question: What chassis did Gordon Johncock use with his cosworth engine? ### Answer: SELECT chassis FROM table_name_73 WHERE engine = "cosworth" AND drivers = "gordon johncock"
Below is an context that describes a sql 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 (points VARCHAR, points_for VARCHAR) ### Question: What is Points, when Points For is "562"? ### Answer: SELECT points FROM table_name_25 WHERE points_for = "562"
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501 ### Context: CREATE TABLE table_23294081_10 (_number VARCHAR, no VARCHAR) ### Question: How many episodes were series episode 214? ### Answer: SELECT COUNT(_number) FROM table_23294081_10 WHERE no = 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_69 (grid VARCHAR, laps VARCHAR) ### Question: What is the grid when the laps were 24? ### Answer: SELECT COUNT(grid) FROM table_name_69 WHERE laps = 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_11111116_6 (original_air_date VARCHAR, no_in_series VARCHAR) ### Question: How many times did episode 79 originally air? ### Answer: SELECT COUNT(original_air_date) FROM table_11111116_6 WHERE no_in_series = 79
Below is an context that describes a sql 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 (year INTEGER, chinese_title VARCHAR) ### Question: I want the average year of ζ•—ηŠ¬ε₯³ηŽ‹ ### Answer: SELECT AVG(year) FROM table_name_14 WHERE chinese_title = "ζ•—ηŠ¬ε₯³ηŽ‹"
Below is an context that describes a sql 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 (manager VARCHAR, team VARCHAR) ### Question: Which manager has sheffield wednesday as the team? ### Answer: SELECT manager FROM table_name_7 WHERE team = "sheffield wednesday"
Below is an context that describes a sql 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 (home VARCHAR, record VARCHAR) ### Question: Who was the home team when the record was 27–14–6? ### Answer: SELECT home FROM table_name_15 WHERE record = "27–14–6"