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_26 (venue VARCHAR, champion VARCHAR)
### Question:
Where did Steve Gotsche win?
### Answer:
SELECT venue FROM table_name_26 WHERE champion = "steve gotsche" |
Below is an context that describes a sql 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 (score VARCHAR, set_2 VARCHAR, time VARCHAR)
### Question:
Which Score has a Set 2 of 25β17, and a Time of 16:00?
### Answer:
SELECT score FROM table_name_9 WHERE set_2 = "25β17" AND time = "16: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_name_81 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)
### Question:
What is the total number of Week, when Opponent is At Chicago Bears, and when Attendance is greater than 49,070?
### Answer:
SELECT COUNT(week) FROM table_name_81 WHERE opponent = "at chicago bears" AND attendance > 49 OFFSET 070 |
Below is an context that describes a sql 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 (winner VARCHAR, runner_up VARCHAR, week_of VARCHAR, semi_finalists VARCHAR)
### Question:
What is Winner, when Week is 8 May, when Semi Finalists is Helena SukovΓ‘ Mary Pierce, and when Runner-Up is Conchita MartΓnez Patricia Tarabini?
### Answer:
SELECT winner FROM table_name_70 WHERE week_of = "8 may" AND semi_finalists = "helena sukovΓ‘ mary pierce" AND runner_up = "conchita martΓnez patricia tarabini" |
Below is an context that describes a sql 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 (engine VARCHAR, entrant VARCHAR)
### Question:
Which engine has daimler benz ag as an entrant?
### Answer:
SELECT engine FROM table_name_7 WHERE entrant = "daimler benz ag" |
Below is an context that describes a sql 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 (country VARCHAR)
### Question:
What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200?
### Answer:
SELECT AVG(2002) FROM table_name_88 WHERE country = "peru" AND 2007 > 1 OFFSET 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_name_79 (height__cm_ INTEGER, position VARCHAR, birthplace VARCHAR)
### Question:
What is the average Height for the Position of d, with a Birthplace of new hope, minnesota?
### Answer:
SELECT AVG(height__cm_) FROM table_name_79 WHERE position = "d" AND birthplace = "new hope, 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_6 (home_captain VARCHAR, date VARCHAR)
### Question:
Which Home captain has Date of 25,26,27,29,30 march 1994?
### Answer:
SELECT home_captain FROM table_name_6 WHERE date = "25,26,27,29,30 march 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_26686908_2 (date VARCHAR, circuit VARCHAR)
### Question:
What is the date for the mount panorama circuit?
### Answer:
SELECT date FROM table_26686908_2 WHERE circuit = "Mount Panorama circuit" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2897457_7 (position VARCHAR, college_junior_club_team VARCHAR)
### Question:
What position did Roseau High School (USHS-MN) play?
### Answer:
SELECT position FROM table_2897457_7 WHERE college_junior_club_team = "Roseau High School (USHS-MN)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE market (Country VARCHAR, Number_cities VARCHAR)
### Question:
List all countries of markets in descending order of number of cities.
### Answer:
SELECT Country FROM market ORDER BY Number_cities DESC |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_54 (rank VARCHAR, team VARCHAR)
### Question:
Name the total number of rank for 348cc petty manx
### Answer:
SELECT COUNT(rank) FROM table_name_54 WHERE team = "348cc petty manx" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10710364_2 (literacy___percentage_ VARCHAR, growth__1991_2001_ VARCHAR)
### Question:
What is the literacy rate for groups that grew 103.1% between 1991 and 2001?
### Answer:
SELECT literacy___percentage_ FROM table_10710364_2 WHERE growth__1991_2001_ = "103.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_29135051_2 (singer_s_ VARCHAR, guest_s_ VARCHAR)
### Question:
Name the singer for bruce forsyth
### Answer:
SELECT singer_s_ FROM table_29135051_2 WHERE guest_s_ = "Bruce Forsyth" |
Below is an context that describes a sql 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 (gold VARCHAR, silver VARCHAR, bronze VARCHAR)
### Question:
What is the total number of gold medals of the nation with 0 silver and more than 1 bronze?
### Answer:
SELECT COUNT(gold) FROM table_name_47 WHERE silver = 0 AND bronze > 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_66 (mac_os_x VARCHAR, amigaos VARCHAR)
### Question:
Which Mac OS X has an AmigaOS of partial?
### Answer:
SELECT mac_os_x FROM table_name_66 WHERE amigaos = "partial" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21790203_1 (year__ceremony_ VARCHAR, language_s_ VARCHAR)
### Question:
Name the year for japanese
### Answer:
SELECT year__ceremony_ FROM table_21790203_1 WHERE language_s_ = "Japanese" |
Below is an context that describes a sql 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 (attendance INTEGER, date VARCHAR)
### Question:
When the date is 8 october 2008 what is the sum of attendance?
### Answer:
SELECT SUM(attendance) FROM table_name_62 WHERE date = "8 october 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_name_38 (label VARCHAR, format VARCHAR, date VARCHAR)
### Question:
Which label had a CD format and a date of June 25, 2002?
### Answer:
SELECT label FROM table_name_38 WHERE format = "cd" AND date = "june 25, 2002" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_72 (pick INTEGER, player VARCHAR)
### Question:
What was the pick number of Conor Jackson?
### Answer:
SELECT AVG(pick) FROM table_name_72 WHERE player = "conor jackson" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12272590_2 (season VARCHAR, best_supported_club VARCHAR)
### Question:
How many season did sportfreunde siegen win best supported club?
### Answer:
SELECT COUNT(season) FROM table_12272590_2 WHERE best_supported_club = "Sportfreunde Siegen" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_83 (the_tradition VARCHAR, senior_british_open VARCHAR, us_senior_open VARCHAR)
### Question:
Who was the tradition when Roberto Devicenzo won the U.S. Senior Open and the Senior British Open was founded in 1987?
### Answer:
SELECT the_tradition FROM table_name_83 WHERE senior_british_open = "founded in 1987" AND us_senior_open = "roberto devicenzo" |
Below is an context that describes a sql 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 (series VARCHAR, races VARCHAR, position VARCHAR)
### Question:
What Series had 14 races and 12th position?
### Answer:
SELECT series FROM table_name_11 WHERE races = 14 AND position = "12th" |
Below is an context that describes a sql 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 (type VARCHAR, group VARCHAR)
### Question:
What is the type of station that is in the movies group?
### Answer:
SELECT type FROM table_name_18 WHERE group = "movies" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_43 (third VARCHAR, round VARCHAR)
### Question:
Who was third in round 14?
### Answer:
SELECT third FROM table_name_43 WHERE round = "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_19995378_1 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR)
### Question:
How many episodes with different series numbers were seen by 8.69 people in the US?
### Answer:
SELECT COUNT(no_in_season) FROM table_19995378_1 WHERE us_viewers__millions_ = "8.69" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21726793_1 (written_by VARCHAR, no VARCHAR)
### Question:
who wrote the no 2?
### Answer:
SELECT written_by FROM table_21726793_1 WHERE no = 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_97 (location VARCHAR, county VARCHAR, school VARCHAR)
### Question:
Which location is in 71 St. Joseph county with South Bend Washington school?
### Answer:
SELECT location FROM table_name_97 WHERE county = "71 st. joseph" AND school = "south bend washington" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_88 (award VARCHAR, year INTEGER)
### Question:
Which award took place after 2009?
### Answer:
SELECT award FROM table_name_88 WHERE year > 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_73 (news_freq VARCHAR, show_name VARCHAR)
### Question:
What is the news frequency for the show Locker Room?
### Answer:
SELECT news_freq FROM table_name_73 WHERE show_name = "locker room" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_16 (population INTEGER, state VARCHAR, total_congregations VARCHAR)
### Question:
What is the highest Population, when State is Puerto Rico, and when Total Congregations is greater than 41?
### Answer:
SELECT MAX(population) FROM table_name_16 WHERE state = "puerto rico" AND total_congregations > 41 |
Below is an context that describes a sql 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 (year INTEGER, version VARCHAR)
### Question:
What year was Mother's Live remix created?
### Answer:
SELECT SUM(year) FROM table_name_46 WHERE version = "mother's live remix" |
Below is an context that describes a sql 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 (score_qualifying VARCHAR, score_final VARCHAR)
### Question:
What is the sum of qualifying scores when the final score is 16.625?
### Answer:
SELECT COUNT(score_qualifying) FROM table_name_7 WHERE score_final = 16.625 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11654169_1 (car_plates__since_1937_ VARCHAR, capital VARCHAR)
### Question:
List all car plates in the capital of Wilno since the year of 1937.
### Answer:
SELECT car_plates__since_1937_ FROM table_11654169_1 WHERE capital = "Wilno" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_68 (pro_debut VARCHAR, tournaments VARCHAR, highest_rank VARCHAR)
### Question:
What is Pro Debut, when Tournament is greater than 11, and when Highest Rank is "Maegashira 1"?
### Answer:
SELECT pro_debut FROM table_name_68 WHERE tournaments > 11 AND highest_rank = "maegashira 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_60 (round VARCHAR, position VARCHAR, overall VARCHAR)
### Question:
Which round has more than 79 overall and a position of QB?
### Answer:
SELECT round FROM table_name_60 WHERE position = "qb" AND overall > 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_76 (manufacturer VARCHAR, year_made VARCHAR)
### Question:
What manufacturer has a year made of 1883?
### Answer:
SELECT manufacturer FROM table_name_76 WHERE year_made = "1883" |
Below is an context that describes a sql 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 (tournament VARCHAR, opponent VARCHAR)
### Question:
What tournament has an opponent jung jae-sung lee yong-dae?
### Answer:
SELECT tournament FROM table_name_59 WHERE opponent = "jung jae-sung lee yong-dae" |
Below is an context that describes a sql 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 (location VARCHAR, home_team VARCHAR, date VARCHAR)
### Question:
What is the location of 11 April 2013 and Mexico Home team?
### Answer:
SELECT location FROM table_name_8 WHERE home_team = "mexico" AND date = "11 april 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_26263954_1 (kana_spelling VARCHAR, english VARCHAR)
### Question:
how many kana spelling when english is mount fuji
### Answer:
SELECT kana_spelling FROM table_26263954_1 WHERE english = "Mount Fuji" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_13 (year INTEGER, opponent VARCHAR)
### Question:
Name the average year for manly-warringah sea eagles
### Answer:
SELECT AVG(year) FROM table_name_13 WHERE opponent = "manly-warringah sea eagles" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_85 (proto_oceanic VARCHAR, proto_polynesian VARCHAR)
### Question:
Which Proto-Oceanic has a Proto-Polynesian of *lima?
### Answer:
SELECT proto_oceanic FROM table_name_85 WHERE proto_polynesian = "*lima" |
Below is an context that describes 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_Name VARCHAR, Product_Type_Code VARCHAR)
### Question:
What are the names and type codes of products?
### Answer:
SELECT Product_Name, Product_Type_Code FROM Products |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_45 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)
### Question:
Who is Mike Wallace's primary Sponsor(s)?
### Answer:
SELECT primary_sponsor_s_ FROM table_name_45 WHERE driver_s_ = "mike wallace" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2841865_2 (party VARCHAR, congress VARCHAR)
### Question:
How many entries are listed for party during the 69th congress?
### Answer:
SELECT COUNT(party) FROM table_2841865_2 WHERE congress = "69th" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1979619_3 (party VARCHAR, residence VARCHAR)
### Question:
Name the party for bensalem
### Answer:
SELECT party FROM table_1979619_3 WHERE residence = "Bensalem" |
Below is an context that describes a sql 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 (area_km_2 INTEGER, population_in_millions VARCHAR, pop_density_people_km_2 VARCHAR, member_state VARCHAR)
### Question:
What is the area km2 of the area with a pop density people/km2 larger than 91, is a member state of Italy, and had less than 58.8 population in millions?
### Answer:
SELECT SUM(area_km_2) FROM table_name_70 WHERE pop_density_people_km_2 > 91 AND member_state = "italy" AND population_in_millions < 58.8 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_92 (championship VARCHAR, date_won VARCHAR)
### Question:
Which championship was won on July 7, 2010?
### Answer:
SELECT championship FROM table_name_92 WHERE date_won = "july 7, 2010" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_99 (surface VARCHAR, opponent VARCHAR)
### Question:
Which Surface has an Opponent of oleksandra kravets?
### Answer:
SELECT surface FROM table_name_99 WHERE opponent = "oleksandra kravets" |
Below is an context that describes a sql 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 (round INTEGER, player VARCHAR)
### Question:
What's the average Round of Pete Laframboise?
### Answer:
SELECT AVG(round) FROM table_name_59 WHERE player = "pete laframboise" |
Below is an context that describes a sql 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 (draws VARCHAR, played INTEGER)
### Question:
What is the number of draws when played is smaller than 30?
### Answer:
SELECT COUNT(draws) FROM table_name_74 WHERE played < 30 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11803648_21 (club_team VARCHAR, player VARCHAR)
### Question:
What club team did JArrod Maidens play for?
### Answer:
SELECT club_team FROM table_11803648_21 WHERE player = "Jarrod Maidens" |
Below is an context that describes a sql 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 (place VARCHAR, score VARCHAR, player VARCHAR)
### Question:
What place has a score greater than 68, and camilo villegas as the player?
### Answer:
SELECT place FROM table_name_51 WHERE score > 68 AND player = "camilo villegas" |
Below is an context that describes a sql 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 (ends INTEGER, name VARCHAR)
### Question:
What is the lowest ends for Dani Alves?
### Answer:
SELECT MIN(ends) FROM table_name_49 WHERE name = "dani alves" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Financial_transactions (transaction_type VARCHAR, transaction_amount INTEGER)
### Question:
What is the transaction type that has processed the greatest total amount in transactions?
### Answer:
SELECT transaction_type FROM Financial_transactions GROUP BY transaction_type ORDER BY SUM(transaction_amount) DESC LIMIT 1 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_30018460_1 (semifinalists VARCHAR, country_territory VARCHAR)
### Question:
How many semifinalists where from peru?
### Answer:
SELECT semifinalists FROM table_30018460_1 WHERE country_territory = "Peru" |
Below is an context that describes a sql 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 (unanimous VARCHAR, school VARCHAR)
### Question:
What is the unanimous result of the player from Michigan Dartmouth?
### Answer:
SELECT unanimous FROM table_name_78 WHERE school = "michigan dartmouth" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_95 (round VARCHAR, opponent VARCHAR, result VARCHAR)
### Question:
For what round was the opponent mercedes paz with a result of 4β6, 6β1, 6β3?
### Answer:
SELECT round FROM table_name_95 WHERE opponent = "mercedes paz" AND result = "4β6, 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_name_50 (result VARCHAR, score VARCHAR)
### Question:
What result had a score of 3β0?
### Answer:
SELECT result FROM table_name_50 WHERE score = "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_28759261_5 (dadar_xi_βbβ VARCHAR, good_shepherd VARCHAR)
### Question:
what is the dadar xi b where the good shepherd is sea liner fc?
### Answer:
SELECT dadar_xi_βbβ FROM table_28759261_5 WHERE good_shepherd = "Sea Liner FC" |
Below is an context that describes a sql 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 (score VARCHAR, high_rebounds VARCHAR)
### Question:
Name the score for howard (8) high rebounds
### Answer:
SELECT score FROM table_name_44 WHERE high_rebounds = "howard (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_27 (dates VARCHAR, lifetime_achievement VARCHAR)
### Question:
On what dates did Jim Jarmusch win the Lifetime Achievement?
### Answer:
SELECT dates FROM table_name_27 WHERE lifetime_achievement = "jim jarmusch" |
Below is an context that describes a sql 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 (entrants VARCHAR, year VARCHAR)
### Question:
How many entrants were there in 2011?
### Answer:
SELECT COUNT(entrants) FROM table_name_21 WHERE year = 2011 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22993636_2 (sec_wins VARCHAR, overall_record VARCHAR)
### Question:
How many different SEC Win counts does the team with an overall record of 30-4 have?
### Answer:
SELECT COUNT(sec_wins) FROM table_22993636_2 WHERE overall_record = "30-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_87 (laps VARCHAR, constructor VARCHAR, driver VARCHAR)
### Question:
When the driver richard attwood has a constructor of brm, what is the number of laps?
### Answer:
SELECT laps FROM table_name_87 WHERE constructor = "brm" AND driver = "richard attwood" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27734577_8 (date VARCHAR, team VARCHAR)
### Question:
What's the date of the new orleans team ?
### Answer:
SELECT date FROM table_27734577_8 WHERE team = "New Orleans" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_83 (points_for VARCHAR, try_bonus VARCHAR)
### Question:
What is the points when the try bonus is 1?
### Answer:
SELECT points_for FROM table_name_83 WHERE try_bonus = "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_10120207_8 (tv_season VARCHAR, season VARCHAR)
### Question:
What is the year of the season that was 12?
### Answer:
SELECT tv_season FROM table_10120207_8 WHERE season = 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_28898948_3 (date VARCHAR, incumbent VARCHAR)
### Question:
When ihaia tainui is the incumbent what is the date?
### Answer:
SELECT date FROM table_28898948_3 WHERE incumbent = "Ihaia Tainui" |
Below is an context that describes a sql 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 (wins INTEGER, reds_season VARCHAR, finish VARCHAR, win_percentage VARCHAR)
### Question:
What was the lowest wins in a season less than 1915 with a 7th finish and 0.429 win %?
### Answer:
SELECT MIN(wins) FROM table_name_74 WHERE finish = "7th" AND win_percentage > 0.429 AND reds_season < 1915 |
Below is an context that describes a sql 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 (floors INTEGER, height__m_ VARCHAR)
### Question:
What are the fewest floors for the building that has a height of 116 meters?
### Answer:
SELECT MIN(floors) FROM table_name_42 WHERE height__m_ = 116 |
Below is an context that describes a sql 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 (money___ INTEGER, player VARCHAR)
### Question:
What is the Money ($) player Loren Roberts has made?
### Answer:
SELECT MAX(money___) AS $__ FROM table_name_93 WHERE player = "loren roberts" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2439728_1 (mascot VARCHAR, school VARCHAR)
### Question:
what is the mascot of st. paul's school?
### Answer:
SELECT mascot FROM table_2439728_1 WHERE school = "St. Paul's school" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_40 (result VARCHAR, competition VARCHAR, date VARCHAR)
### Question:
What was the score for the South American Championship dated December 13, 1925?
### Answer:
SELECT result FROM table_name_40 WHERE competition = "south american championship" AND date = "december 13, 1925" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the lowest number of participants in 2012 when there were 72 in 2010 and less than 56 in 2013?
### Answer:
SELECT MIN(2012) FROM table_name_17 WHERE 2010 = 72 AND 2013 < 56 |
Below is an context that describes a sql 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 (points INTEGER, team VARCHAR, rank VARCHAR)
### Question:
How many points did she have with team bultaco, ranked 6th?
### Answer:
SELECT SUM(points) FROM table_name_40 WHERE team = "bultaco" AND 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_name_55 (to_par VARCHAR, score VARCHAR)
### Question:
What is the to par of the player with a 72-71-65-69=277 score?
### Answer:
SELECT to_par FROM table_name_55 WHERE score = 72 - 71 - 65 - 69 = 277 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_73 (score VARCHAR, away_team VARCHAR)
### Question:
What did the Melbourne Tigers score when they were the away team?
### Answer:
SELECT score FROM table_name_73 WHERE away_team = "melbourne tigers" |
Below is an context that describes a sql 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 (song_choice VARCHAR, result VARCHAR, week VARCHAR)
### Question:
Which song garnered an advanced result during top 20 week ?
### Answer:
SELECT song_choice FROM table_name_38 WHERE result = "advanced" AND week = "top 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_27756474_2 (game VARCHAR, high_points VARCHAR)
### Question:
Which game did rudy gay (12) have the highest points?
### Answer:
SELECT game FROM table_27756474_2 WHERE high_points = "Rudy Gay (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_7 (record VARCHAR, score VARCHAR)
### Question:
Which record has a score of 135β134?
### Answer:
SELECT record FROM table_name_7 WHERE score = "135β134" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22810095_8 (moving_from VARCHAR, name VARCHAR)
### Question:
Where did Kisnorbo move from?
### Answer:
SELECT moving_from FROM table_22810095_8 WHERE name = "Kisnorbo" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22014431_3 (total VARCHAR, tosses_pyramids VARCHAR)
### Question:
What is the total if 44 is tosses/pyramids?
### Answer:
SELECT total FROM table_22014431_3 WHERE tosses_pyramids = "44" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17325937_8 (high_assists VARCHAR, team VARCHAR)
### Question:
Who had the most assists in the game against Miami?
### Answer:
SELECT high_assists FROM table_17325937_8 WHERE team = "Miami" |
Below is an context that describes a sql 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 (team VARCHAR, rank VARCHAR, name VARCHAR)
### Question:
Ranking higher than 2, what Team has Player Paolo Maldini?
### Answer:
SELECT team FROM table_name_52 WHERE rank > 2 AND name = "paolo maldini" |
Below is an context that describes a sql 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 (ihsaa_class VARCHAR, school VARCHAR)
### Question:
What is the IHSAA class for Chesterton?
### Answer:
SELECT ihsaa_class FROM table_name_49 WHERE school = "chesterton" |
Below is an context that describes a sql 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 (bats VARCHAR, surname VARCHAR)
### Question:
Which player has a last name of baron?
### Answer:
SELECT bats FROM table_name_93 WHERE surname = "baron" |
Below is an context that describes a sql 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 (finish VARCHAR, country VARCHAR)
### Question:
What is Finish, when Country is "South Africa"?
### Answer:
SELECT finish FROM table_name_54 WHERE country = "south africa" |
Below is an context that describes a sql 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 (status VARCHAR, name VARCHAR)
### Question:
What shows as the status for Diogo?
### Answer:
SELECT status FROM table_name_29 WHERE name = "diogo" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE debate (Venue VARCHAR)
### Question:
Show the distinct venues of debates
### Answer:
SELECT DISTINCT Venue FROM debate |
Below is an context that describes a sql 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 (february INTEGER, record VARCHAR, game VARCHAR)
### Question:
What is the earliest February date with a record of 37-13-4 in a game earlier than 54?
### Answer:
SELECT MIN(february) FROM table_name_52 WHERE record = "37-13-4" AND game < 54 |
Below is an context that describes a sql 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 (score VARCHAR, decision VARCHAR, record VARCHAR)
### Question:
What was the score when the record was 18β14β4 with a toivonen decision?
### Answer:
SELECT score FROM table_name_11 WHERE decision = "toivonen" AND record = "18β14β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_17 (country VARCHAR, score VARCHAR)
### Question:
What Country had a Player with a Score of 72-66-72=210?
### Answer:
SELECT country FROM table_name_17 WHERE score = 72 - 66 - 72 = 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_20668268_1 (name VARCHAR, starting_price VARCHAR, jockey VARCHAR)
### Question:
What was the name that had a starting price of 11/1 and a jockey named Garrett Cotter?
### Answer:
SELECT name FROM table_20668268_1 WHERE starting_price = "11/1" AND jockey = "Garrett Cotter" |
Below is an context that describes a sql 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 (route INTEGER, rank VARCHAR, mountain_pass VARCHAR)
### Question:
What is the route that has a rank higher than 63, and Separation Summit as its mountain pass?
### Answer:
SELECT SUM(route) FROM table_name_33 WHERE rank > 63 AND mountain_pass = "separation summit" |
Below is an context that describes a sql 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 (opponent VARCHAR, record VARCHAR)
### Question:
Which of the opponents has a record of 17-25?
### Answer:
SELECT opponent FROM table_name_52 WHERE record = "17-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_name_1 (location_attendance VARCHAR, game VARCHAR, team VARCHAR)
### Question:
What was the location and attendance for the game after game 36 against Atlanta?
### Answer:
SELECT location_attendance FROM table_name_1 WHERE game > 36 AND team = "atlanta" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28348757_3 (production_code VARCHAR, _number VARCHAR)
### Question:
Name the production code for number 8
### Answer:
SELECT production_code FROM table_28348757_3 WHERE _number = 8 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, country VARCHAR)
### Question:
What is every TV network in Belgium?
### Answer:
SELECT tv_network_s_ FROM table_18821196_1 WHERE country = "Belgium" |
Below is an context that describes a sql 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 (year VARCHAR, hungarian_top_40_album_charts VARCHAR)
### Question:
What year had the Hungarian top 40 album charts of 3?
### Answer:
SELECT year FROM table_name_69 WHERE hungarian_top_40_album_charts = "3" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.