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_64 (venue VARCHAR, away_team VARCHAR)
### Question:
What venue features hawthorn as the away team?
### Answer:
SELECT venue FROM table_name_64 WHERE away_team = "hawthorn" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25773915_11 (fumrec INTEGER)
### Question:
What is the fumrec minimum?
### Answer:
SELECT MIN(fumrec) FROM table_25773915_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_19508635_1 (result VARCHAR, theme VARCHAR)
### Question:
Name the result for 1980s
### Answer:
SELECT result FROM table_19508635_1 WHERE theme = "1980s" |
Below is an context that describes a sql 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 (nation VARCHAR, total VARCHAR, bronze VARCHAR, gold VARCHAR)
### Question:
What nation had more than 3 bronze, 0 gold, and a total of 9?
### Answer:
SELECT nation FROM table_name_38 WHERE bronze > 3 AND gold = 0 AND total = 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_6 (position VARCHAR, team VARCHAR)
### Question:
What is the position of the player for the Baltimore Orioles?
### Answer:
SELECT position FROM table_name_6 WHERE team = "baltimore orioles" |
Below is an context that describes a sql 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 (original_air_date VARCHAR, season_no VARCHAR, series_no VARCHAR, production_code VARCHAR)
### Question:
What date did the show with a series larger than 40, production code smaller than 213, and a season number larger than 11 air?
### Answer:
SELECT original_air_date FROM table_name_14 WHERE series_no > 40 AND production_code < 213 AND season_no > 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_15 (position VARCHAR, player VARCHAR)
### Question:
What position does John Carlson play?
### Answer:
SELECT position FROM table_name_15 WHERE player = "john carlson" |
Below is an context that describes a sql 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 (record VARCHAR, date VARCHAR)
### Question:
Which record has a date of January 29?
### Answer:
SELECT record FROM table_name_35 WHERE date = "january 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_11562149_1 (no_in_series VARCHAR, featured_character_s_ VARCHAR)
### Question:
What are the episode numbers where the episode features Jack & Locke?
### Answer:
SELECT no_in_series FROM table_11562149_1 WHERE featured_character_s_ = "Jack & Locke" |
Below is an context that describes a sql 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 (pick__number VARCHAR, mls_team VARCHAR)
### Question:
Chicago fire has a total of a total of how many #s?
### Answer:
SELECT COUNT(pick__number) FROM table_name_5 WHERE mls_team = "chicago fire" |
Below is an context that describes a sql 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 (points VARCHAR, time_retired VARCHAR, car_no VARCHAR)
### Question:
How many points were scored by car number 10 that ended with a collision?
### Answer:
SELECT points FROM table_name_20 WHERE time_retired = "collision" AND car_no = "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_8 (date VARCHAR, result VARCHAR, method VARCHAR)
### Question:
What is Date, when Result is Loss, and when Method is Submission (Armbar)?
### Answer:
SELECT date FROM table_name_8 WHERE result = "loss" AND method = "submission (armbar)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16993379_1 (rating VARCHAR, rank__overall_ VARCHAR)
### Question:
What was the rating of the episode with an overall ranking of 190?
### Answer:
SELECT rating FROM table_16993379_1 WHERE rank__overall_ = "190" |
Below is an context that describes a 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_30 (settlement VARCHAR, cyrillic_name_other_names VARCHAR)
### Question:
Which settlement has the cyrillic name сигет?
### Answer:
SELECT settlement FROM table_2562572_30 WHERE cyrillic_name_other_names = "Сигет" |
Below is an context that describes a 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_10 (game VARCHAR, team VARCHAR)
### Question:
What is the game with the team indiana?
### Answer:
SELECT game FROM table_27756314_10 WHERE team = "Indiana" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_30 (investment_income VARCHAR, region VARCHAR)
### Question:
Region of eastern england has what investment income?
### Answer:
SELECT investment_income FROM table_name_30 WHERE region = "eastern england" |
Below is an context that describes a sql 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 (decision VARCHAR, opponent VARCHAR, season VARCHAR)
### Question:
What was the decision for the 1983 season for the game played against the New York Yankees?
### Answer:
SELECT decision FROM table_name_35 WHERE opponent = "new york yankees" AND season = "1983" |
Below is an context that describes a sql 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 (november VARCHAR, february VARCHAR)
### Question:
Who is in November where February is willy rey?
### Answer:
SELECT november FROM table_name_48 WHERE february = "willy rey" |
Below is an context that describes a sql 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 (rank INTEGER, annual_change VARCHAR)
### Question:
What is the average rank of the airport with a 9.3% annual change?
### Answer:
SELECT AVG(rank) FROM table_name_59 WHERE annual_change = "9.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_64 (gold INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR, type VARCHAR)
### Question:
What is the average gold of the winter athlete with 1 bronze, less than 3 silver, and less than 4 total medals?
### Answer:
SELECT AVG(gold) FROM table_name_64 WHERE bronze = 1 AND type = "winter" AND silver < 3 AND total < 4 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17632217_2 (third_place VARCHAR, runners_up VARCHAR)
### Question:
Who was placed third when the ruuner up was Guangzhou Apollo?
### Answer:
SELECT third_place FROM table_17632217_2 WHERE runners_up = "Guangzhou Apollo" |
Below is an context that describes a sql 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 (innhabitants INTEGER, mayor VARCHAR)
### Question:
How many people did Mayor Olav Martin Vik preside over?
### Answer:
SELECT AVG(innhabitants) FROM table_name_87 WHERE mayor = "olav martin vik" |
Below is an context that describes a sql 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 (in_state_area VARCHAR, outlet VARCHAR, basin VARCHAR)
### Question:
What is the in-state area with an outlet of South Platte River and Big Thompson river as the basin?
### Answer:
SELECT in_state_area FROM table_name_81 WHERE outlet = "south platte river" AND basin = "big thompson river" |
Below is an context that describes a sql 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 (rank INTEGER, nation VARCHAR, gold VARCHAR)
### Question:
What is the rank that when Serbia is the nation, and gold is larger than 0?
### Answer:
SELECT SUM(rank) FROM table_name_10 WHERE nation = "serbia" AND gold > 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_97 (grid VARCHAR, laps VARCHAR)
### Question:
I want the Grid for Laps of 35
### Answer:
SELECT grid FROM table_name_97 WHERE laps = 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 table_21831229_3 (written_by VARCHAR, no_in_series VARCHAR)
### Question:
Who wrote episode 31 in the series?
### Answer:
SELECT written_by FROM table_21831229_3 WHERE no_in_series = 31 |
Below is an context that describes a sql 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 (report VARCHAR, race_name VARCHAR)
### Question:
Name the report for v grand prix de paris
### Answer:
SELECT report FROM table_name_11 WHERE race_name = "v grand prix de paris" |
Below is an context that describes a sql 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, game VARCHAR)
### Question:
What is the date of game 59?
### Answer:
SELECT date FROM table_name_96 WHERE game = 59 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE TRANSACTIONS (investor_id VARCHAR, amount_of_transaction INTEGER)
### Question:
Show the average amount of transactions for different investors.
### Answer:
SELECT investor_id, AVG(amount_of_transaction) FROM TRANSACTIONS GROUP BY investor_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_27877656_8 (outcome VARCHAR, edition VARCHAR)
### Question:
What was the outcome in the 2010 Europe/Africa Group IIB edition?
### Answer:
SELECT outcome FROM table_27877656_8 WHERE edition = "2010 Europe/Africa Group IIB" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_11 (venue VARCHAR, year VARCHAR, position VARCHAR)
### Question:
WHich Venue has a Year larger than 2003, and a Position of 10th?
### Answer:
SELECT venue FROM table_name_11 WHERE year > 2003 AND position = "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_97 (date VARCHAR, visitor VARCHAR)
### Question:
what day did the team go to toronto
### Answer:
SELECT date FROM table_name_97 WHERE visitor = "toronto" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_91 (ceremony VARCHAR, date VARCHAR)
### Question:
Which award ceremony took place on May 15, 1965?
### Answer:
SELECT ceremony FROM table_name_91 WHERE date = "may 15, 1965" |
Below is an context that describes a sql 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 (lane INTEGER, name VARCHAR)
### Question:
what lane did inna nikitina have?
### Answer:
SELECT MAX(lane) FROM table_name_74 WHERE name = "inna nikitina" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14496232_2 (womens_singles VARCHAR, tour VARCHAR)
### Question:
Name the womens singles for korea open super series
### Answer:
SELECT womens_singles FROM table_14496232_2 WHERE tour = "Korea Open Super Series" |
Below is an context that describes a sql 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 (october INTEGER, opponent VARCHAR)
### Question:
What is the sum of October, when Opponent is "Pittsburgh Penguins"?
### Answer:
SELECT SUM(october) FROM table_name_19 WHERE opponent = "pittsburgh penguins" |
Below is an context that describes a sql 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 (tournament VARCHAR, opponent VARCHAR)
### Question:
What tournament has yvonne vermaak as the opponent?
### Answer:
SELECT tournament FROM table_name_5 WHERE opponent = "yvonne vermaak" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE parking_fines (council_tax_id VARCHAR, cmi_cross_ref_id VARCHAR)
### Question:
List the council tax ids and their related cmi cross references of all the parking fines.
### Answer:
SELECT council_tax_id, cmi_cross_ref_id FROM parking_fines |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1108394_6 (manhattan VARCHAR, staten_island VARCHAR)
### Question:
What was the total number in Manhattan when Staten Island was 12,658?
### Answer:
SELECT COUNT(manhattan) FROM table_1108394_6 WHERE staten_island = "12,658" |
Below is an context that describes a sql 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 (score VARCHAR, team VARCHAR)
### Question:
What is Score, when Team is "@ Memphis"?
### Answer:
SELECT score FROM table_name_29 WHERE team = "@ memphis" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1771753_3 (average_speed__mph_ VARCHAR, driver VARCHAR)
### Question:
When tony kanaan is the driver what is the average speed miles per hour?
### Answer:
SELECT average_speed__mph_ FROM table_1771753_3 WHERE driver = "Tony Kanaan" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1888165_1 (Otl INTEGER)
### Question:
What was the minimum OTL amount?
### Answer:
SELECT MIN(Otl) FROM table_1888165_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_54 (competition VARCHAR, date VARCHAR)
### Question:
Tell me the competition that happened on 14 june 2008
### Answer:
SELECT competition FROM table_name_54 WHERE date = "14 june 2008" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12002388_1 (open_cup VARCHAR, year VARCHAR)
### Question:
How many open cups were hosted in 1993?
### Answer:
SELECT COUNT(open_cup) FROM table_12002388_1 WHERE year = 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_23248940_6 (location_attendance VARCHAR, date VARCHAR)
### Question:
What is every value for location attendance on date of November 18?
### Answer:
SELECT location_attendance FROM table_23248940_6 WHERE date = "November 18" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23938357_7 (Id VARCHAR)
### Question:
What is the smallest 07-08 oi best value?
### Answer:
SELECT MIN(07 AS _08_oi_best) FROM table_23938357_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_86 (drawn INTEGER, games INTEGER)
### Question:
What is the highest number of games drawn, where the games played was less than 7?
### Answer:
SELECT MAX(drawn) FROM table_name_86 WHERE games < 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_13857700_1 (mens_singles VARCHAR, mens_doubles VARCHAR)
### Question:
how many mens singles with mens doubles being pontus jantti lasse lindelöf
### Answer:
SELECT COUNT(mens_singles) FROM table_13857700_1 WHERE mens_doubles = "Pontus Jantti Lasse Lindelöf" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_94 (fleet_number_s_ VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR)
### Question:
What is the fleet number with a 4-6-0 wheel arrangement made in 1890?
### Answer:
SELECT fleet_number_s_ FROM table_name_94 WHERE wheel_arrangement = "4-6-0" AND year_made = "1890" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_201400_2 (kannada_name_ಕನ್ನಡ VARCHAR, tamil_name_தமிழ் VARCHAR)
### Question:
what is kannada name ಕನ್ನಡ of tamil name தமிழ் anusham அனுஷம்
### Answer:
SELECT kannada_name_ಕನ್ನಡ FROM table_201400_2 WHERE tamil_name_தமிழ் = "Anusham அனுஷம்" |
Below is an context that describes a sql 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 (wins INTEGER, draws VARCHAR, points VARCHAR)
### Question:
Which Wins has a Draws smaller than 3, and Points of 26?
### Answer:
SELECT AVG(wins) FROM table_name_79 WHERE draws < 3 AND points = 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_53 (away_team VARCHAR)
### Question:
How much did the away team Geelong score?
### Answer:
SELECT away_team AS score FROM table_name_53 WHERE away_team = "geelong" |
Below is an context that describes a sql 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 (poll_source VARCHAR, lead_margin VARCHAR)
### Question:
Which organization administered the poll that showed a lead margin of 5.5?
### Answer:
SELECT poll_source FROM table_name_88 WHERE lead_margin = 5.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_23235767_4 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
### Question:
Name the total number of opponent in the final for 6–2, 6–1, 6–3
### Answer:
SELECT COUNT(opponent_in_the_final) FROM table_23235767_4 WHERE score_in_the_final = "6–2, 6–1, 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 table_18461045_1 (kentucky VARCHAR, michigan VARCHAR)
### Question:
What was the little league team from Kentucky when the little league team from Michigan was Grosse Pointe Farms-City LL Grosse Pointe Farms?
### Answer:
SELECT kentucky FROM table_18461045_1 WHERE michigan = "Grosse Pointe Farms-City LL Grosse Pointe Farms" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16570286_4 (matches INTEGER, wickets VARCHAR)
### Question:
How many matches had 11 wickets?
### Answer:
SELECT MAX(matches) FROM table_16570286_4 WHERE wickets = 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_29 (date VARCHAR, place VARCHAR, race_winners VARCHAR)
### Question:
What date has a place of chernivtsi, and a race winners of etienne bax / kaspars stupelis? What
### Answer:
SELECT date FROM table_name_29 WHERE place = "chernivtsi" AND race_winners = "etienne bax / kaspars stupelis" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17039232_3 (position_in_table VARCHAR, date_of_appointment VARCHAR, manner_of_departure VARCHAR)
### Question:
Name the position in table for 1 july 2008 when manner of departure is resigned
### Answer:
SELECT position_in_table FROM table_17039232_3 WHERE date_of_appointment = "1 July 2008" AND manner_of_departure = "Resigned" |
Below is an context that describes a sql 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 (team VARCHAR, driver VARCHAR, car__number VARCHAR, make VARCHAR)
### Question:
Which team has a car # before 99, a Toyota, and is driven by Mike Skinner?
### Answer:
SELECT team FROM table_name_1 WHERE car__number < 99 AND make = "toyota" AND driver = "mike skinner" |
Below is an context that describes a sql 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, city VARCHAR)
### Question:
What date was the game held in Towson?
### Answer:
SELECT date FROM table_name_76 WHERE city = "towson" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_86 (release_date VARCHAR, title VARCHAR, category VARCHAR, developer VARCHAR)
### Question:
What Release date has a Category of utilities, a Developer of microsoft, and a Title of chord finder?
### Answer:
SELECT release_date FROM table_name_86 WHERE category = "utilities" AND developer = "microsoft" AND title = "chord finder" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16537783_2 (parameter VARCHAR)
### Question:
Name the 3rd stage for parameter of thrust
### Answer:
SELECT 3 AS rd_stage FROM table_16537783_2 WHERE parameter = "Thrust" |
Below is an context that describes a sql 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 (chassis VARCHAR, year VARCHAR, engine VARCHAR, points VARCHAR)
### Question:
What kind of Chassis supports a Maserati Straight-6 engine with Points greater than 0 and built in the year 1955?
### Answer:
SELECT chassis FROM table_name_93 WHERE engine = "maserati straight-6" AND points > 0 AND year = 1955 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26427332_17 (measurements__in_cm_ VARCHAR, city VARCHAR)
### Question:
what measurement does the contestant from sindelfingen have?
### Answer:
SELECT measurements__in_cm_ FROM table_26427332_17 WHERE city = "Sindelfingen" |
Below is an context that describes a 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_2 (candidate VARCHAR, result____percentage VARCHAR)
### Question:
Who was the candidate when the result - % was 0.4%?
### Answer:
SELECT candidate FROM table_25818630_2 WHERE result____percentage = "0.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_54 (nationality VARCHAR, years_for_grizzlies VARCHAR)
### Question:
What is the Nationality of the 1998-2000 Years for Grizzlies?
### Answer:
SELECT nationality FROM table_name_54 WHERE years_for_grizzlies = "1998-2000" |
Below is an context that describes 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_id VARCHAR, product_type_code VARCHAR, product_price VARCHAR)
### Question:
What are the product id and product type of the cheapest product?
### Answer:
SELECT product_id, product_type_code FROM products ORDER BY product_price 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_58 (opponent VARCHAR, save VARCHAR)
### Question:
Who was the opponent in the game with save ||33,389||87–62?
### Answer:
SELECT opponent FROM table_name_58 WHERE save = "||33,389||87–62" |
Below is an context that describes a sql 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 (finale VARCHAR, season VARCHAR)
### Question:
What was the date of the finale for Season 3?
### Answer:
SELECT finale FROM table_name_61 WHERE season = 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_71 (record VARCHAR, date VARCHAR)
### Question:
What was the team's record on july 18?
### Answer:
SELECT record FROM table_name_71 WHERE date = "july 18" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE candidates (candidate_id VARCHAR); CREATE TABLE people (person_id VARCHAR, email_address VARCHAR)
### Question:
Find id of the candidate whose email is [email protected]?
### Answer:
SELECT T2.candidate_id FROM people AS T1 JOIN candidates AS T2 ON T1.person_id = T2.candidate_id WHERE T1.email_address = "[email protected]" |
Below is an context that describes a sql 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 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
### Question:
Which money has player Jack Fleck with t1 place?
### Answer:
SELECT money___$__ FROM table_name_4 WHERE place = "t1" AND player = "jack fleck" |
Below is an context that describes a sql 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 (player VARCHAR, place VARCHAR, score VARCHAR)
### Question:
What T10 Place Player has a Score of 74-73-68=215?
### Answer:
SELECT player FROM table_name_96 WHERE place = "t10" AND score = 74 - 73 - 68 = 215 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21501565_1 (week__number VARCHAR, original_artist VARCHAR)
### Question:
With original artist of Tina Turner, what is the week number?
### Answer:
SELECT week__number FROM table_21501565_1 WHERE original_artist = "Tina Turner" |
Below is an context that describes a sql 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 (run_4 VARCHAR, run_2 VARCHAR)
### Question:
What is Run 4, when Run 2 is 1:29.00?
### Answer:
SELECT run_4 FROM table_name_12 WHERE run_2 = "1:29.00" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)
### Question:
What episode in the season was episode us18 in the series?
### Answer:
SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US18" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22344463_2 (weight VARCHAR, name VARCHAR)
### Question:
What is the weight is the name is Stuart Craig?
### Answer:
SELECT weight FROM table_22344463_2 WHERE name = "Stuart Craig" |
Below is an context that describes a sql 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 (title VARCHAR, developer VARCHAR)
### Question:
Which title was developed by Battlecry Studios?
### Answer:
SELECT title FROM table_name_96 WHERE developer = "battlecry studios" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25401_15 (latin VARCHAR, catalan VARCHAR)
### Question:
What is every entry for Latin when Catalan is Mar?
### Answer:
SELECT latin FROM table_25401_15 WHERE catalan = "mar" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_30 (opponent_in_the_final VARCHAR, date VARCHAR, outcome VARCHAR)
### Question:
What is Opponent In The Final, when Date is before 1991, and when Outcome is "Runner-Up"?
### Answer:
SELECT opponent_in_the_final FROM table_name_30 WHERE date < 1991 AND outcome = "runner-up" |
Below is an context that describes a sql 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 (points VARCHAR, engine VARCHAR)
### Question:
Name the points for Engine of chevrolet 265c
### Answer:
SELECT points FROM table_name_99 WHERE engine = "chevrolet 265c" |
Below is an context that describes a sql 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 (family_relations VARCHAR, throne_name VARCHAR)
### Question:
What are the family relations of the king with the throne name 303?
### Answer:
SELECT family_relations FROM table_name_20 WHERE throne_name = "303" |
Below is an context that describes a sql 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 (season INTEGER, total_prize_money VARCHAR)
### Question:
What was the highest season number with a total prize of $108,000?
### Answer:
SELECT MAX(season) FROM table_name_17 WHERE total_prize_money = "$108,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_58 (total VARCHAR, set_2 VARCHAR)
### Question:
What is the Total of Set 2 of 21:12?
### Answer:
SELECT total FROM table_name_58 WHERE set_2 = "21: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_12834315_8 (hand_guards VARCHAR, rear_sight VARCHAR, stock VARCHAR)
### Question:
What kind of hand guards are associated with a rear sight of A1 and stock of A2?
### Answer:
SELECT hand_guards FROM table_12834315_8 WHERE rear_sight = "A1" AND stock = "A2" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_32 (college_junior_club_team__league_ VARCHAR, round VARCHAR)
### Question:
What College/Junior/Club Team (League) has a round of 3?
### Answer:
SELECT college_junior_club_team__league_ FROM table_name_32 WHERE 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_26 (tournament VARCHAR)
### Question:
What is the 2007 value with 1r in 2009 in the US Open?
### Answer:
SELECT 2007 FROM table_name_26 WHERE 2009 = "1r" AND tournament = "us open" |
Below is an context that describes a sql 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 (country VARCHAR, score VARCHAR)
### Question:
What is the country of the player with a score of 69-74-71=214?
### Answer:
SELECT country FROM table_name_23 WHERE score = 69 - 74 - 71 = 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_9 (captain VARCHAR, team VARCHAR)
### Question:
Who captains Portsmouth?
### Answer:
SELECT captain FROM table_name_9 WHERE team = "portsmouth" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23829490_1 (media_type VARCHAR, genre VARCHAR)
### Question:
What is every media type for the Dub genre?
### Answer:
SELECT media_type FROM table_23829490_1 WHERE genre = "Dub" |
Below is an context that describes a sql 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 (date VARCHAR, opponent VARCHAR)
### Question:
What date was gabriela paz-franco the opponent?
### Answer:
SELECT date FROM table_name_2 WHERE opponent = "gabriela paz-franco" |
Below is an context that describes a sql 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 (year VARCHAR, domestic_cup VARCHAR)
### Question:
What year had a domestic cup of singapore cup?
### Answer:
SELECT year FROM table_name_9 WHERE domestic_cup = "singapore cup" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_5 (points INTEGER, year INTEGER)
### Question:
What is the highest number of points before 1954?
### Answer:
SELECT MAX(points) FROM table_name_5 WHERE year < 1954 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23315271_2 (winning_team VARCHAR, winning_driver VARCHAR)
### Question:
Who is the winning team when max busnelli is the winning driver?
### Answer:
SELECT winning_team FROM table_23315271_2 WHERE winning_driver = "Max Busnelli" |
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR, tie_no VARCHAR)
### Question:
What is the score for the date of 16 december 1978, with a tie no of 9?
### Answer:
SELECT score FROM table_name_98 WHERE date = "16 december 1978" AND tie_no = "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_17 (location VARCHAR, record VARCHAR)
### Question:
What's the location when the record was 6-0-1?
### Answer:
SELECT location FROM table_name_17 WHERE record = "6-0-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_15817998_5 (college VARCHAR, player VARCHAR)
### Question:
What is the college that Jeffrey Simmer plays for?
### Answer:
SELECT college FROM table_15817998_5 WHERE player = "Jeffrey Simmer" |
Below is an context that describes a sql 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 (track VARCHAR, event_name VARCHAR)
### Question:
At which track did the event Daytona Arca 200 take place?
### Answer:
SELECT track FROM table_name_64 WHERE event_name = "daytona arca 200" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18349697_1 (province VARCHAR, _community VARCHAR, age VARCHAR)
### Question:
What is the province where the age of the contestant is 27?
### Answer:
SELECT province, _community FROM table_18349697_1 WHERE age = 27 |
Below is an context that describes a sql 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 (total INTEGER, to_par VARCHAR)
### Question:
What is the highest total of the player with a 7 to par?
### Answer:
SELECT MAX(total) FROM table_name_71 WHERE to_par = 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.