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_98 (animal_name VARCHAR, tv_series VARCHAR, species VARCHAR)
### Question:
What animal was yes for tv series and was a terrapins?
### Answer:
SELECT animal_name FROM table_name_98 WHERE tv_series = "yes" AND species = "terrapins" |
Below is an context that describes a sql 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 (place VARCHAR, score VARCHAR)
### Question:
What is the place of the player with a 66-68-70=204 score?
### Answer:
SELECT place FROM table_name_86 WHERE score = 66 - 68 - 70 = 204 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE WINE (Winery VARCHAR, Price INTEGER)
### Question:
Find the distinct winery of wines having price between 50 and 100.
### Answer:
SELECT DISTINCT Winery FROM WINE WHERE Price BETWEEN 50 AND 100 |
Below is an context that describes a sql 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 (call_sign VARCHAR, frequency VARCHAR)
### Question:
Which Call sign has a Frequency of 102.5 fm?
### Answer:
SELECT call_sign FROM table_name_26 WHERE frequency = "102.5 fm" |
Below is an context that describes a sql 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 (japanese_title VARCHAR, tv_station VARCHAR, average_ratings VARCHAR)
### Question:
What Japanese show on NHK had average ratings of 9.2%?
### Answer:
SELECT japanese_title FROM table_name_26 WHERE tv_station = "nhk" AND average_ratings = "9.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_49 (location_attendance VARCHAR, high_rebounds VARCHAR, high_points VARCHAR)
### Question:
What is the location attendance of the game with A. Horford (10) as the highest rebounds and J. Johnson (21) as the highest points?
### Answer:
SELECT location_attendance FROM table_name_49 WHERE high_rebounds = "a. horford (10)" AND high_points = "j. johnson (21)" |
Below is an context that describes a sql 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 (score VARCHAR, place VARCHAR, country VARCHAR)
### Question:
What Argentina country is in t10 place?
### Answer:
SELECT score FROM table_name_49 WHERE place = "t10" AND country = "argentina" |
Below is an context that describes a sql 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 (score VARCHAR, opponent VARCHAR)
### Question:
What was the score of the game against Minnesota?
### Answer:
SELECT score FROM table_name_69 WHERE opponent = "minnesota" |
Below is an context that describes a sql 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 (champion VARCHAR, runner_up VARCHAR)
### Question:
Who was the champion in the match where C.A. Palmer was the runner-up?
### Answer:
SELECT champion FROM table_name_80 WHERE runner_up = "c.a. palmer" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2113721_7 (region_2 VARCHAR, dvd_name VARCHAR)
### Question:
When was Season Three premiered in region 2?
### Answer:
SELECT region_2 FROM table_2113721_7 WHERE dvd_name = "Season Three" |
Below is an context that describes a sql 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 (year VARCHAR, vehicle VARCHAR)
### Question:
Which year had a vehicle of Mitsubishi?
### Answer:
SELECT year FROM table_name_88 WHERE vehicle = "mitsubishi" |
Below is an context that describes a sql 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 (share INTEGER, viewers__millions_ VARCHAR, rating VARCHAR, rank__timeslot_ VARCHAR)
### Question:
What is the sum of share with a rating larger than 1.2, a 3 rank timeslot, and 6.07 million viewers?
### Answer:
SELECT SUM(share) FROM table_name_42 WHERE rating > 1.2 AND rank__timeslot_ = 3 AND viewers__millions_ = 6.07 |
Below is an context that describes a sql 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 (attendance VARCHAR, date VARCHAR)
### Question:
What was the Attendance on September 11, 1983?
### Answer:
SELECT attendance FROM table_name_49 WHERE date = "september 11, 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_69 (away_team VARCHAR, attendance VARCHAR)
### Question:
Who was the away team when the attendance was 206?
### Answer:
SELECT away_team FROM table_name_69 WHERE attendance = "206" |
Below is an context that describes a sql 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 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
### Question:
Who is the driver with 58 laps and a grid smaller than 21?
### Answer:
SELECT driver FROM table_name_44 WHERE laps = 58 AND grid < 21 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE CHARACTERISTICS (characteristic_name VARCHAR)
### Question:
Find the names of all the product characteristics.
### Answer:
SELECT DISTINCT characteristic_name FROM CHARACTERISTICS |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14342480_5 (field_goals VARCHAR, position VARCHAR)
### Question:
Na,e the number of field goals for right tackle
### Answer:
SELECT COUNT(field_goals) FROM table_14342480_5 WHERE position = "Right tackle" |
Below is an context that describes a sql 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 (team_2 VARCHAR)
### Question:
What is the 2nd leg where Team 2 is fc 105 libreville?
### Answer:
SELECT 2 AS nd_leg FROM table_name_9 WHERE team_2 = "fc 105 libreville" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_47 (score VARCHAR, outcome VARCHAR, surface VARCHAR, opponent VARCHAR)
### Question:
What was the final score for Aguilar when he played Hans Podlipnik on clay and was runner-up?
### Answer:
SELECT score FROM table_name_47 WHERE surface = "clay" AND opponent = "hans podlipnik" 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_19412902_2 (pos INTEGER, points__total_500_ VARCHAR)
### Question:
At what position is the association with 279 points?
### Answer:
SELECT MIN(pos) FROM table_19412902_2 WHERE points__total_500_ = 279 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)
### Question:
Name the awardees for best special effects
### Answer:
SELECT awardee_s_ FROM table_24446718_3 WHERE name_of_award = "Best Special Effects" |
Below is an context that describes a sql 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 (ihsaa_class VARCHAR, location VARCHAR)
### Question:
Which IHSAA Class is located in charlottesville?
### Answer:
SELECT ihsaa_class FROM table_name_24 WHERE location = "charlottesville" |
Below is an context that describes a sql 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 (year_s__withdrawn VARCHAR, wheel_arrangement VARCHAR, year_made VARCHAR)
### Question:
What year was the 4-6-0 Wheel model train from 1908 withdrawn?
### Answer:
SELECT year_s__withdrawn FROM table_name_61 WHERE wheel_arrangement = "4-6-0" AND year_made = "1908" |
Below is an context that describes a sql 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 (length VARCHAR, year VARCHAR)
### Question:
What is the length for years 2012-2013?
### Answer:
SELECT length FROM table_name_29 WHERE year = "2012-2013" |
Below is an context that describes a sql 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 (drawn VARCHAR, losing_bp VARCHAR)
### Question:
With a Losing BP of 8, what is the drawn?
### Answer:
SELECT drawn FROM table_name_34 WHERE losing_bp = "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_29 (rider VARCHAR, time VARCHAR, laps VARCHAR, grid VARCHAR)
### Question:
Which rider has a lap of 23, grid smaller than 18, and time +44.333?
### Answer:
SELECT rider FROM table_name_29 WHERE laps = 23 AND grid < 18 AND time = "+44.333" |
Below is an context that describes a sql 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 (traffic_direction VARCHAR, street VARCHAR)
### Question:
What is the traffic direction of 97th street?
### Answer:
SELECT traffic_direction FROM table_name_94 WHERE street = "97th 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_17369472_2 (played VARCHAR, tries_for VARCHAR)
### Question:
How many were played when there were 39 tries for?
### Answer:
SELECT played FROM table_17369472_2 WHERE tries_for = "39" |
Below is an context that describes a sql 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 (home VARCHAR, record VARCHAR)
### Question:
What was the home team with a 4-6-0 record?
### Answer:
SELECT home FROM table_name_13 WHERE record = "4-6-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_25597136_1 (date_first_lit VARCHAR, focal_plane_in_ft__m_ VARCHAR)
### Question:
Focal plane in ft (m) is 43ft (13.1m) is the first date lit.
### Answer:
SELECT date_first_lit FROM table_25597136_1 WHERE focal_plane_in_ft__m_ = "43ft (13.1m)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1350350_2 (rank INTEGER, per_capita_income VARCHAR)
### Question:
what is the maximum rank with per capita income being $17,013
### Answer:
SELECT MAX(rank) FROM table_1350350_2 WHERE per_capita_income = "$17,013" |
Below is an context that describes a sql 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 (entrant VARCHAR, year INTEGER)
### Question:
Which entrant was present prior to 1953?
### Answer:
SELECT entrant FROM table_name_67 WHERE year < 1953 |
Below is an context that describes a sql 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 (class VARCHAR, identifier VARCHAR)
### Question:
Which class has an identifier of CBUA-FM?
### Answer:
SELECT class FROM table_name_50 WHERE identifier = "cbua-fm" |
Below is an context that describes a sql 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 (country_territory VARCHAR, imed_avicenna_listed VARCHAR, established VARCHAR)
### Question:
What country has a medical school established in 1969 with both an IMED and avicenna?
### Answer:
SELECT country_territory FROM table_name_15 WHERE imed_avicenna_listed = "both" AND established = 1969 |
Below is an context that describes a sql 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 (runner_s__up VARCHAR, winning_score VARCHAR)
### Question:
Who were the Runner(s)-up with the winning score of −16 (66-68-70-68=272)?
### Answer:
SELECT runner_s__up FROM table_name_74 WHERE winning_score = −16(66 - 68 - 70 - 68 = 272) |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_39 (date VARCHAR, attendance VARCHAR)
### Question:
What was the date of the game attended by 45,122?
### Answer:
SELECT date FROM table_name_39 WHERE attendance = "45,122" |
Below is an context that describes a sql 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 (place VARCHAR, score VARCHAR)
### Question:
What place had a score of 73-69-68=210?
### Answer:
SELECT place FROM table_name_86 WHERE score = 73 - 69 - 68 = 210 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2508175_1 (annual_co2_emissions__in_thousands_of_metric_tons_ INTEGER, gdp_per_emissions__in_us_dollars_per_ton_ VARCHAR)
### Question:
when the gdp per emissions (in us dollars per ton) is 3903, what is the maximum annual co2 emissions (in thousands of metric tons)?
### Answer:
SELECT MAX(annual_co2_emissions__in_thousands_of_metric_tons_) FROM table_2508175_1 WHERE gdp_per_emissions__in_us_dollars_per_ton_ = 3903 |
Below is an context that describes a sql 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 (year INTEGER, rank VARCHAR)
### Question:
In what Year was the Rank 14.0 14?
### Answer:
SELECT SUM(year) FROM table_name_42 WHERE rank = "14.0 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_75 (grid INTEGER, driver VARCHAR, laps VARCHAR)
### Question:
What was Alexander Wurz's highest grid with laps of less than 25?
### Answer:
SELECT MAX(grid) FROM table_name_75 WHERE driver = "alexander wurz" AND laps < 25 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15038373_1 (license VARCHAR, software VARCHAR)
### Question:
What is hte license for beeone smod/hms software?
### Answer:
SELECT license FROM table_15038373_1 WHERE software = "BeeOne SMOD/HMS" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28068645_8 (total INTEGER)
### Question:
What is the minimum sum?
### Answer:
SELECT MIN(total) FROM table_28068645_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 (place VARCHAR, country VARCHAR, score VARCHAR)
### Question:
What place in the United States having a score of 67-75-68=210?
### Answer:
SELECT place FROM table_name_10 WHERE country = "united states" AND score = 67 - 75 - 68 = 210 |
Below is an context that describes a sql 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 (week_5 VARCHAR, week_2 VARCHAR)
### Question:
When Audra Lynn was featured in Week 2, who was the cyber girl for Week 5?
### Answer:
SELECT week_5 FROM table_name_36 WHERE week_2 = "audra lynn" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the 2011 when the 2010 is 8–4?
### Answer:
SELECT 2011 FROM table_name_56 WHERE 2010 = "8–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_29 (title VARCHAR, box_office VARCHAR)
### Question:
What movie earned $1,659,542 at the box office?
### Answer:
SELECT title FROM table_name_29 WHERE box_office = "$1,659,542" |
Below is an context that describes a sql 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 (year INTEGER, result VARCHAR, group VARCHAR, award VARCHAR)
### Question:
What is the average Year that has the Group, Logie Award, the Award, Most Outstanding Actor, and the Result, nominated?
### Answer:
SELECT AVG(year) FROM table_name_79 WHERE group = "logie award" AND award = "most outstanding actor" AND result = "nominated" |
Below is an context that describes a sql 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 (park VARCHAR, opened VARCHAR)
### Question:
What park opened in 1999?
### Answer:
SELECT park FROM table_name_48 WHERE opened = "1999" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_40 (method VARCHAR, time VARCHAR)
### Question:
What is Method, when Time is "3:20"?
### Answer:
SELECT method FROM table_name_40 WHERE time = "3: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_18602462_21 (final__bronze_medal_match VARCHAR, event VARCHAR)
### Question:
When mixed quad singles is the event what is the final/bronze medal match?
### Answer:
SELECT final__bronze_medal_match FROM table_18602462_21 WHERE event = "Mixed Quad Singles" |
Below is an context that describes a sql 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 (company_or_product_name VARCHAR, episode VARCHAR, money_requested__£_ VARCHAR)
### Question:
Which Company or Product name requested £70,000 on Episode 11?
### Answer:
SELECT company_or_product_name FROM table_name_17 WHERE episode = "episode 11" AND money_requested__£_ = "70,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_46 (set_5 VARCHAR, date VARCHAR, set_2 VARCHAR)
### Question:
What is Set 5, when Date is Jun 26, and when Set 2 is 25-22?
### Answer:
SELECT set_5 FROM table_name_46 WHERE date = "jun 26" AND set_2 = "25-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_16376436_1 (nfl_team VARCHAR, college VARCHAR)
### Question:
What is the NFL team for the player who's college was Norfolk State?
### Answer:
SELECT nfl_team FROM table_16376436_1 WHERE college = "Norfolk State" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE player (Occupation VARCHAR)
### Question:
Show different occupations along with the number of players in each occupation.
### Answer:
SELECT Occupation, COUNT(*) FROM player GROUP BY Occupation |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_238124_1 (prothrombin_time VARCHAR, condition VARCHAR)
### Question:
What is the prothrombin time of von willebrand disease?
### Answer:
SELECT COUNT(prothrombin_time) FROM table_238124_1 WHERE condition = "Von Willebrand disease" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_70 (wins VARCHAR, central_murray VARCHAR, draws VARCHAR)
### Question:
What is the total number of wins of the central murray of koondrook-barham, which has more than 0 draws?
### Answer:
SELECT COUNT(wins) FROM table_name_70 WHERE central_murray = "koondrook-barham" AND draws > 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_35 (round VARCHAR, opponent VARCHAR)
### Question:
What is the Round with an Opponent that is torpedo moscow?
### Answer:
SELECT round FROM table_name_35 WHERE opponent = "torpedo moscow" |
Below is an context that describes a sql 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 (subframe__number INTEGER, bits VARCHAR)
### Question:
What is the total subframe count with Bits of 18–22?
### Answer:
SELECT SUM(subframe__number) FROM table_name_48 WHERE bits = "18–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_39 (goals_against INTEGER, games_played INTEGER)
### Question:
What is the mean number of goals against when there were fewer than 8 games played?
### Answer:
SELECT AVG(goals_against) FROM table_name_39 WHERE games_played < 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_18424435_3 (written_by VARCHAR, canadian_viewers__million_ VARCHAR)
### Question:
Who wrote the episodes watched by 1.575 million people in Canada?
### Answer:
SELECT written_by FROM table_18424435_3 WHERE canadian_viewers__million_ = "1.575" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16677738_1 (without_the_walls INTEGER, within_the_walls INTEGER)
### Question:
When within the walls is larger than 56174.0 what is the lowest amount without the walls?
### Answer:
SELECT MIN(without_the_walls) FROM table_16677738_1 WHERE within_the_walls > 56174.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_27 (record VARCHAR, loss VARCHAR)
### Question:
What was the record during the loss by key (7-11)?
### Answer:
SELECT record FROM table_name_27 WHERE loss = "key (7-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_30 (penalty_points INTEGER, judge_e VARCHAR)
### Question:
what is the least penalty points when the judge e is 72.22?
### Answer:
SELECT MIN(penalty_points) FROM table_name_30 WHERE judge_e = "72.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_1499791_2 (yankton_yanktonai VARCHAR, southern_lakota VARCHAR)
### Question:
Name the yankton yanktonai for wičháša
### Answer:
SELECT yankton_yanktonai FROM table_1499791_2 WHERE southern_lakota = "wičháša" |
Below is an context that describes a sql 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 (date VARCHAR, record VARCHAR)
### Question:
What was the date that ended in a record of 8-25-7?
### Answer:
SELECT date FROM table_name_21 WHERE record = "8-25-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 Documents (document_id VARCHAR, template_id VARCHAR, Document_Description VARCHAR, document_name VARCHAR)
### Question:
What is the document id, template id and description for document named "Robbin CV"?
### Answer:
SELECT document_id, template_id, Document_Description FROM Documents WHERE document_name = "Robbin CV" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR)
### Question:
What was the venue for the match on October 10?
### Answer:
SELECT venue FROM table_19576091_1 WHERE date = "October 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 people (Name VARCHAR, Nationality VARCHAR)
### Question:
Show names of people whose nationality is not "Russia".
### Answer:
SELECT Name FROM people WHERE Nationality <> "Russia" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_70 (last_final_lost VARCHAR, last_win VARCHAR)
### Question:
When was the last final lost of the club with a last win in 1959?
### Answer:
SELECT last_final_lost FROM table_name_70 WHERE last_win = "1959" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11240028_1 (last_appearance VARCHAR, portrayed_by VARCHAR)
### Question:
On which episode did actress Sela Ward make her last appearance?
### Answer:
SELECT last_appearance FROM table_11240028_1 WHERE portrayed_by = "Sela Ward" |
Below is an context that describes a sql 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 (week VARCHAR, attendance VARCHAR)
### Question:
What week was the Bye attendance week?
### Answer:
SELECT week FROM table_name_20 WHERE attendance = "bye" |
Below is an context that describes a sql 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, tie_no VARCHAR)
### Question:
What is the score when the tie number is 8?
### Answer:
SELECT score FROM table_name_84 WHERE tie_no = "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_64 (country VARCHAR)
### Question:
What is the 2010 total for ghana?
### Answer:
SELECT COUNT(2010) FROM table_name_64 WHERE country = "ghana" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR)
### Question:
how many wiaa classifications does fort vancouver high school have?
### Answer:
SELECT COUNT(wiaa_classification) FROM table_22058547_1 WHERE high_school = "Fort Vancouver" |
Below is an context that describes a sql 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 (segment_d VARCHAR, segment_a VARCHAR)
### Question:
Name the segment D for umbrellas
### Answer:
SELECT segment_d FROM table_name_60 WHERE segment_a = "umbrellas" |
Below is an context that describes a sql 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 (political_party VARCHAR, monarchs_served VARCHAR, birth_place VARCHAR)
### Question:
To which political party did the prime minister who served under George V and was born in Manchester belong?
### Answer:
SELECT political_party FROM table_name_5 WHERE monarchs_served = "george v" AND birth_place = "manchester" |
Below is an context that describes a sql 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 (february INTEGER, record VARCHAR)
### Question:
How many games in February have a record of 40-15-5?
### Answer:
SELECT SUM(february) FROM table_name_8 WHERE record = "40-15-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_21 (result VARCHAR, record VARCHAR)
### Question:
What was the result of the game when the record was 5-1?
### Answer:
SELECT result FROM table_name_21 WHERE record = "5-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_13018091_1 (won VARCHAR, pts_for VARCHAR)
### Question:
How many teams scored 616 points?
### Answer:
SELECT COUNT(won) FROM table_13018091_1 WHERE pts_for = 616 |
Below is an context that describes a sql 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 (score VARCHAR, record VARCHAR)
### Question:
When the record was 7-2, what was the score for the game?
### Answer:
SELECT score FROM table_name_94 WHERE record = "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_76 (entered_service VARCHAR, gauge VARCHAR, serial_no VARCHAR)
### Question:
What is the date of entered service for the locomotive with a broad gauge and a serial no of 83-1018?
### Answer:
SELECT entered_service FROM table_name_76 WHERE gauge = "broad" AND serial_no = "83-1018" |
Below is an context that describes a sql 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 (event VARCHAR, record VARCHAR)
### Question:
What is Event, when Record is "3-0"?
### Answer:
SELECT event FROM table_name_13 WHERE record = "3-0" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_70 (to_par VARCHAR, place VARCHAR, player VARCHAR)
### Question:
What is the to par for Jiyai Shin when the place is t1?
### Answer:
SELECT to_par FROM table_name_70 WHERE place = "t1" AND player = "jiyai shin" |
Below is an context that describes a sql 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 INTEGER, club VARCHAR, draws VARCHAR)
### Question:
What's the against of South Warrnambool when the draw is less than 0?
### Answer:
SELECT SUM(against) FROM table_name_31 WHERE club = "south warrnambool" AND draws < 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_79 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR)
### Question:
How many field goals were there, where the points where less than 45 and there were less than 15 touchdowns?
### Answer:
SELECT AVG(field_goals) FROM table_name_79 WHERE touchdowns < 15 AND points < 45 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_40 (date VARCHAR, constructor VARCHAR)
### Question:
What dates did Ferrari win races?
### Answer:
SELECT date FROM table_name_40 WHERE constructor = "ferrari" |
Below is an context that describes a sql 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 (al_ahly_wins INTEGER, draws VARCHAR, el_zamalek_wins VARCHAR)
### Question:
What is the fewest Al Ahly wins for El Zamalek wins of 0 and 0 draws?
### Answer:
SELECT MIN(al_ahly_wins) FROM table_name_29 WHERE draws = 0 AND el_zamalek_wins < 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_69 (english VARCHAR, danish VARCHAR)
### Question:
Which English has a Danish of rødt/rød?
### Answer:
SELECT english FROM table_name_69 WHERE danish = "rødt/rød" |
Below is an context that describes a sql 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 (rank VARCHAR, year INTEGER)
### Question:
What rank is later than 1994?
### Answer:
SELECT rank FROM table_name_4 WHERE year > 1994 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23585197_3 (position VARCHAR, songwriter_s_ VARCHAR)
### Question:
What is the position of the song that adam sandahl wrote?
### Answer:
SELECT position FROM table_23585197_3 WHERE songwriter_s_ = "Adam Sandahl" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1745843_6 (part_3 VARCHAR, class VARCHAR)
### Question:
What's the part 3 of the verb whose class is 4?
### Answer:
SELECT part_3 FROM table_1745843_6 WHERE class = "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_1206114_2 (comments VARCHAR, vendor_and_type VARCHAR)
### Question:
What are the comments when vendor and type is enterasys switches?
### Answer:
SELECT comments FROM table_1206114_2 WHERE vendor_and_type = "Enterasys Switches" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_3 (music_director VARCHAR, year VARCHAR)
### Question:
Who was the music director in 1994?
### Answer:
SELECT music_director FROM table_name_3 WHERE year = 1994 |
Below is an context that describes a sql 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 (country VARCHAR, to_par VARCHAR)
### Question:
Which Country has a To par of −2? Question 2
### Answer:
SELECT country FROM table_name_20 WHERE to_par = "−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_66 (order INTEGER, minister VARCHAR)
### Question:
What is the lowest order with a Minister that is joe hockey?
### Answer:
SELECT MIN(order) FROM table_name_66 WHERE minister = "joe hockey" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_89 (round INTEGER, method VARCHAR)
### Question:
What is the average round for the TKO (punches and elbows) method?
### Answer:
SELECT AVG(round) FROM table_name_89 WHERE method = "tko (punches and elbows)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR)
### Question:
What is josé maría olazábal's country?
### Answer:
SELECT country FROM table_name_39 WHERE player = "josé maría olazábal" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20297668_1 (ply__uk VARCHAR, _nz VARCHAR, _au_ VARCHAR, wraps_per_inch__wpi_ VARCHAR)
### Question:
Name the ply uk, nz, au for wraps per inch 7 wpi
### Answer:
SELECT ply__uk, _nz, _au_ FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = "7 wpi" |
Below is an context that describes a sql 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 (game VARCHAR, location_attendance VARCHAR, score VARCHAR)
### Question:
What game was played at Omni Coliseum with a w 105-95 score?
### Answer:
SELECT game FROM table_name_32 WHERE location_attendance = "omni coliseum" AND score = "w 105-95" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29583441_1 (written_by VARCHAR, production_code VARCHAR)
### Question:
Who wrote the episode with production code 57376?
### Answer:
SELECT written_by FROM table_29583441_1 WHERE production_code = 57376 |
Subsets and Splits