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_14465871_2 (cmdlets VARCHAR, version VARCHAR)
### Question:
How many of the cmdlets are the 2008 version?
### Answer:
SELECT COUNT(cmdlets) FROM table_14465871_2 WHERE version = "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_23718905_6 (attendance VARCHAR, stadium VARCHAR)
### Question:
How many different items appear in he attendance column at Sun Devil Stadium?
### Answer:
SELECT COUNT(attendance) FROM table_23718905_6 WHERE stadium = "Sun Devil stadium" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2509505_1 (goals_for INTEGER, points VARCHAR)
### Question:
Name the most goals for 56 points
### Answer:
SELECT MAX(goals_for) FROM table_2509505_1 WHERE points = 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_10 (date VARCHAR, opponent VARCHAR)
### Question:
What was the date of the game against North Carolina?
### Answer:
SELECT date FROM table_name_10 WHERE opponent = "north carolina" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_63 (total_fat VARCHAR, polyunsaturated_fat VARCHAR, monounsaturated_fat VARCHAR)
### Question:
What is the total fat when the polyunsaturated fat is 11g, and Monounsaturated fat is 73g?
### Answer:
SELECT total_fat FROM table_name_63 WHERE polyunsaturated_fat = "11g" AND monounsaturated_fat = "73g" |
Below is an context that describes a sql 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 (points INTEGER, goals_against VARCHAR, games VARCHAR, tied VARCHAR)
### Question:
How many points did the team with more than 68 games, 4 ties, and more than 272 goals against have?
### Answer:
SELECT SUM(points) FROM table_name_14 WHERE games > 68 AND tied = "4" AND goals_against > 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_92 (placings VARCHAR, nation VARCHAR)
### Question:
What was the placing of the nation of East Germany?
### Answer:
SELECT COUNT(placings) FROM table_name_92 WHERE nation = "east germany" |
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR)
### Question:
WHAT SCORE WAS ON 1999-05-31?
### Answer:
SELECT score FROM table_name_52 WHERE date = "1999-05-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_74 (net_power VARCHAR, type VARCHAR, finish_construction VARCHAR)
### Question:
What was the net power, when the type was wwer-440/230, and when construction was finished on 24.10.1977?
### Answer:
SELECT net_power FROM table_name_74 WHERE type = "wwer-440/230" AND finish_construction = "24.10.1977" |
Below is an context that describes a sql 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 (year INTEGER, engine VARCHAR)
### Question:
When is the earliest year that there's a judd engine?
### Answer:
SELECT MIN(year) FROM table_name_40 WHERE engine = "judd" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, race VARCHAR)
### Question:
Who did the fastest lap in the dutch grand prix?
### Answer:
SELECT fastest_lap FROM table_1140077_2 WHERE race = "Dutch Grand Prix" |
Below is an context that describes a sql 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 (nationality VARCHAR, pick VARCHAR)
### Question:
Tell me the nationality for pick of 18
### Answer:
SELECT nationality FROM table_name_24 WHERE pick = "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_name_97 (points VARCHAR, combined_elapsed_time VARCHAR)
### Question:
Which points have a Combined elapsed time of 175d 20h 46m 04s?
### Answer:
SELECT points FROM table_name_97 WHERE combined_elapsed_time = "175d 20h 46m 04s" |
Below is an context that describes a sql 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 (tie_no VARCHAR, away_team VARCHAR)
### Question:
What is the tie number total when Harlow Town is the away team?
### Answer:
SELECT COUNT(tie_no) FROM table_name_5 WHERE away_team = "harlow town" |
Below is an context that describes a sql 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 (appointed_by VARCHAR, date_appointed VARCHAR, party VARCHAR, province__division_ VARCHAR)
### Question:
Who appointed the conservative from Ontario on June 18, 1993?
### Answer:
SELECT appointed_by FROM table_name_61 WHERE party = "conservative" AND province__division_ = "ontario" AND date_appointed = "june 18, 1993" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_25 (record VARCHAR, date VARCHAR)
### Question:
What is the record for April 22?
### Answer:
SELECT record FROM table_name_25 WHERE date = "april 22" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_82 (pick VARCHAR, player VARCHAR)
### Question:
WHAT WAS THE PICK NUMBER FOR BRANDON RUSH?
### Answer:
SELECT COUNT(pick) FROM table_name_82 WHERE player = "brandon rush" |
Below is an context that describes a sql 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 (year INTEGER, finish VARCHAR, start VARCHAR)
### Question:
What is the highest Year, when Finish is "51", and when Start is less than 64?
### Answer:
SELECT MAX(year) FROM table_name_29 WHERE finish = 51 AND start < 64 |
Below is an context that describes a sql 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 (english_transliteration VARCHAR, english_translation VARCHAR)
### Question:
What is the english transliteration of late dew?
### Answer:
SELECT english_transliteration FROM table_name_60 WHERE english_translation = "late dew" |
Below is an context that describes a sql 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 (earnings___ INTEGER, player VARCHAR, rank VARCHAR)
### Question:
Player of corey pavin, and a Rank larger than 4 involved which highest earnings ($)?
### Answer:
SELECT MAX(earnings___) AS $__ FROM table_name_72 WHERE player = "corey pavin" AND rank > 4 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_48 (long_term_gain_on_collectibles VARCHAR, ordinary_income_rate VARCHAR)
### Question:
What long-term gain for collectibles coincides with ordinary income rate 15%?
### Answer:
SELECT long_term_gain_on_collectibles FROM table_name_48 WHERE ordinary_income_rate = "15%" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE roller_coaster (Country_ID VARCHAR); CREATE TABLE country (Name VARCHAR, Country_ID VARCHAR)
### Question:
Show the names of countries that have more than one roller coaster.
### Answer:
SELECT T1.Name FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID GROUP BY T1.Name HAVING COUNT(*) > 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_45 (venue VARCHAR, home_team VARCHAR)
### Question:
What is the name of Richmond's home venue?
### Answer:
SELECT venue FROM table_name_45 WHERE home_team = "richmond" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_69 (chassis VARCHAR, driver VARCHAR, rounds VARCHAR, entrant VARCHAR)
### Question:
What is the chassis for all rounds on the entrant Benson and Hedges Jordan driven by Damon Hill?
### Answer:
SELECT chassis FROM table_name_69 WHERE rounds = "all" AND entrant = "benson and hedges jordan" AND driver = "damon hill" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_65 (goals INTEGER, player VARCHAR, tries VARCHAR)
### Question:
What is the number of goals Dave Taylor, who has more than 1 tries, has?
### Answer:
SELECT SUM(goals) FROM table_name_65 WHERE player = "dave taylor" AND tries > 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_55 (tournament VARCHAR)
### Question:
Name the 2012 for us open
### Answer:
SELECT 2012 FROM table_name_55 WHERE 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_21602734_1 (division INTEGER)
### Question:
What is the highest number of divisions mentioned?
### Answer:
SELECT MAX(division) FROM table_21602734_1 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_92 (socialist_ticket VARCHAR, democratic_ticket VARCHAR)
### Question:
What name is under the Socialist ticket when Thomas J. Kreuzer was on the Democratic ticket?
### Answer:
SELECT socialist_ticket FROM table_name_92 WHERE democratic_ticket = "thomas j. kreuzer" |
Below is an context that describes a sql 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 (d_41_√ VARCHAR, d_47_√ VARCHAR)
### Question:
What is the D 41 √ when the D 47 √ is d 34?
### Answer:
SELECT d_41_√ FROM table_name_83 WHERE d_47_√ = "d 34" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_82 (classification VARCHAR, dennis_kucinich VARCHAR, _percentage_of_all VARCHAR)
### Question:
What is Classification, when Dennis Kucinich is "3%", and when % of All is "53%"?
### Answer:
SELECT classification FROM table_name_82 WHERE dennis_kucinich = "3%" AND _percentage_of_all = "53%" |
Below is an context that describes a sql 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 (county VARCHAR, ihsaa_class VARCHAR, mascot VARCHAR)
### Question:
Which County has an IHSAA Class of aaaa, and a Mascot of cardinals?
### Answer:
SELECT county FROM table_name_70 WHERE ihsaa_class = "aaaa" AND mascot = "cardinals" |
Below is an context that describes a sql 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 (city VARCHAR, icao VARCHAR)
### Question:
Which city's ICAO is WADD?
### Answer:
SELECT city FROM table_name_92 WHERE icao = "wadd" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_298550_1 (country_with_flag VARCHAR, population__1_july_2005_est_ VARCHAR)
### Question:
What is every country with a flag with population of 11346670?
### Answer:
SELECT country_with_flag FROM table_298550_1 WHERE population__1_july_2005_est_ = 11346670 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24538140_2 (match1 VARCHAR, team VARCHAR)
### Question:
What is the score for match 1 for the team Eastern Tigers?
### Answer:
SELECT match1 FROM table_24538140_2 WHERE team = "Eastern 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_68 (Prime VARCHAR, term_in_office VARCHAR)
### Question:
Which Prime Minister's served a term of 344 days?
### Answer:
SELECT Prime AS minister FROM table_name_68 WHERE term_in_office = "344 days" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14889048_2 (draws VARCHAR, team VARCHAR)
### Question:
How may draws did libertad have?
### Answer:
SELECT COUNT(draws) FROM table_14889048_2 WHERE team = "Libertad" |
Below is an context that describes a sql 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 (runners_up VARCHAR, winners VARCHAR, date VARCHAR)
### Question:
Who were the runners-up in the game that was won by Cork City F.C. on 10/05/1998?
### Answer:
SELECT runners_up FROM table_name_48 WHERE winners = "cork city f.c." AND date = "10/05/1998" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_250230_2 (brakes VARCHAR, gearbox VARCHAR)
### Question:
What brakes for the 4-speed automatic gearbox?
### Answer:
SELECT brakes FROM table_250230_2 WHERE gearbox = "4-speed automatic" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR, game_site VARCHAR)
### Question:
Who did the Giants play before week 7 in Tulane Stadium?
### Answer:
SELECT opponent FROM table_name_25 WHERE week < 7 AND game_site = "tulane stadium" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Students (other_student_details VARCHAR)
### Question:
List all the student details in reversed lexicographical order.
### Answer:
SELECT other_student_details FROM Students ORDER BY other_student_details 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_62 (venue VARCHAR, home_team VARCHAR)
### Question:
In which venue does Melbourne play as the home team?
### Answer:
SELECT venue FROM table_name_62 WHERE home_team = "melbourne" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_31 (overall INTEGER, name VARCHAR, pick VARCHAR)
### Question:
Which Overall is the highest one that has a Name of raleigh mckenzie, and a Pick larger than 10?
### Answer:
SELECT MAX(overall) FROM table_name_31 WHERE name = "raleigh mckenzie" AND pick > 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_89 (catalog VARCHAR, date VARCHAR)
### Question:
What is the Catalog with a Date that is february 20, 2002?
### Answer:
SELECT catalog FROM table_name_89 WHERE date = "february 20, 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_11907963_6 (high_assists VARCHAR, game VARCHAR)
### Question:
Who had the high assists for game 49?
### Answer:
SELECT high_assists FROM table_11907963_6 WHERE game = 49 |
Below is an context that describes a sql 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 (asian_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)
### Question:
WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9?
### Answer:
SELECT asian_rider_classification FROM table_name_43 WHERE general_classification = "ruslan ivanov" AND stage = "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_15 (pick__number INTEGER, league_from VARCHAR)
### Question:
What is the lowest pick from Elitserien (Sweden)?
### Answer:
SELECT MIN(pick__number) FROM table_name_15 WHERE league_from = "elitserien (sweden)" |
Below is an context that describes a sql 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 (grid VARCHAR, laps VARCHAR)
### Question:
What grid has 2 laps?
### Answer:
SELECT grid FROM table_name_93 WHERE laps = "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_45 (against INTEGER, date VARCHAR)
### Question:
What's the lowest against on 27/03/1971?
### Answer:
SELECT MIN(against) FROM table_name_45 WHERE date = "27/03/1971" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23285849_10 (score VARCHAR, high_assists VARCHAR)
### Question:
When chauncey billups (7) has the highest amount of assists what is the score?
### Answer:
SELECT score FROM table_23285849_10 WHERE high_assists = "Chauncey Billups (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_81 (loss VARCHAR, date VARCHAR)
### Question:
What loss occurred on June 10?
### Answer:
SELECT loss FROM table_name_81 WHERE date = "june 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_16 (appearances INTEGER, team VARCHAR, rank VARCHAR)
### Question:
How many appearances for psv eindhoven ranked above 11?
### Answer:
SELECT SUM(appearances) FROM table_name_16 WHERE team = "psv eindhoven" AND rank < 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_78 (winning_driver VARCHAR, pole_position VARCHAR)
### Question:
What driver was the winner when Joakim Bonnier was in the Pole Position?
### Answer:
SELECT winning_driver FROM table_name_78 WHERE pole_position = "joakim bonnier" |
Below is an context that describes a sql 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 (date VARCHAR, away_team VARCHAR)
### Question:
What date was Chester the away team?
### Answer:
SELECT date FROM table_name_67 WHERE away_team = "chester" |
Below is an context that describes a sql 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___percentage_ INTEGER, channel VARCHAR)
### Question:
Name the most share for anhui satellite tv
### Answer:
SELECT MAX(share___percentage_) FROM table_name_42 WHERE channel = "anhui satellite tv" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_73 (time_retired VARCHAR, laps VARCHAR, team VARCHAR)
### Question:
What Time/Retired has a Laps of 86 and the Team of HVM Racing?
### Answer:
SELECT time_retired FROM table_name_73 WHERE laps = 86 AND team = "hvm racing" |
Below is an context that describes a sql 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 (position VARCHAR, player VARCHAR)
### Question:
What position Jason Fitzgerald played?
### Answer:
SELECT position FROM table_name_89 WHERE player = "jason fitzgerald" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12310814_1 (result VARCHAR, episode VARCHAR)
### Question:
What was the result of the Top 3 episode?
### Answer:
SELECT result FROM table_12310814_1 WHERE episode = "Top 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_24415627_2 (state_served VARCHAR, time_since_entry VARCHAR)
### Question:
List the states that have entry times of 49years, 29days
### Answer:
SELECT state_served FROM table_24415627_2 WHERE time_since_entry = "49years, 29days" |
Below is an context that describes a sql 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 (player VARCHAR, finish VARCHAR)
### Question:
Who had a finish of t20?
### Answer:
SELECT player FROM table_name_20 WHERE finish = "t20" |
Below is an context that describes a sql 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 (name VARCHAR, height VARCHAR, block VARCHAR, weight VARCHAR)
### Question:
What is the Name of the player with less than 342 Block, less than 87 Weight and Height more than 187?
### Answer:
SELECT name FROM table_name_50 WHERE block < 342 AND weight < 87 AND height > 187 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1198175_1 (position VARCHAR, drafted VARCHAR)
### Question:
What is the position when drafted is 1974,r11,p11?
### Answer:
SELECT position FROM table_1198175_1 WHERE drafted = "1974,R11,P11" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_63 (communist_ticket VARCHAR, office VARCHAR)
### Question:
What is the name on the Communist ticket with an Office of judge of the court of appeals?
### Answer:
SELECT communist_ticket FROM table_name_63 WHERE office = "judge of the court of appeals" |
Below is an context that describes a sql 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 (final_round VARCHAR, members VARCHAR)
### Question:
What was the final round value for member Chris Webber?
### Answer:
SELECT final_round FROM table_name_59 WHERE members = "chris webber" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1500146_1 (scientific_linux_release VARCHAR, delay VARCHAR)
### Question:
Name the scientific linux release when delay is 28d
### Answer:
SELECT scientific_linux_release FROM table_1500146_1 WHERE delay = "28d" |
Below is an context that describes a sql 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 (region__year_ VARCHAR, no_5 VARCHAR, no_7 VARCHAR, no_1 VARCHAR)
### Question:
Which region (year) has Abigail at number 7, Sophia at number 1 and Aaliyah at number 5?
### Answer:
SELECT region__year_ FROM table_name_12 WHERE no_7 = "abigail" AND no_1 = "sophia" AND no_5 = "aaliyah" |
Below is an context that describes a sql 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 (silver VARCHAR, bronze INTEGER)
### Question:
What is the total silver when bronze is smaller than 0?
### Answer:
SELECT COUNT(silver) FROM table_name_92 WHERE bronze < 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_5 (laps INTEGER, driver VARCHAR, grid VARCHAR)
### Question:
what is the least laps when the driver is rubens barrichello and the grid is less than 12?
### Answer:
SELECT MIN(laps) FROM table_name_5 WHERE driver = "rubens barrichello" AND grid < 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_78 (year VARCHAR, comptroller VARCHAR, party VARCHAR)
### Question:
How many times what the comptroller alan hevesi and the party working families?
### Answer:
SELECT COUNT(year) FROM table_name_78 WHERE comptroller = "alan hevesi" AND party = "working families" |
Below is an context that describes a sql 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 (gross_tonnage VARCHAR, entered_service VARCHAR)
### Question:
I want the total number of gross tonnage when entered service was 1903
### Answer:
SELECT COUNT(gross_tonnage) FROM table_name_51 WHERE entered_service = "1903" |
Below is an context that describes a sql 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 (school_club_team VARCHAR, player VARCHAR)
### Question:
Which School/Club Team has a Player of jud buechler?
### Answer:
SELECT school_club_team FROM table_name_16 WHERE player = "jud buechler" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_28 (region VARCHAR, icao VARCHAR)
### Question:
I want the region for ICAO of vmmc
### Answer:
SELECT region FROM table_name_28 WHERE icao = "vmmc" |
Below is an context that describes a sql 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 (tournament VARCHAR, date VARCHAR)
### Question:
Which tournament was played on 12 February 2001?
### Answer:
SELECT tournament FROM table_name_21 WHERE date = "12 february 2001" |
Below is an context that describes a sql 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 (result VARCHAR, film VARCHAR, award VARCHAR)
### Question:
What is Result, when Film is "Dharma Chakram", and when Award is "Nandi Award for Best Actor"?
### Answer:
SELECT result FROM table_name_87 WHERE film = "dharma chakram" AND award = "nandi award for best actor" |
Below is an context that describes a sql 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 (draws INTEGER, wins INTEGER)
### Question:
Which Draws have Wins larger than 14?
### Answer:
SELECT SUM(draws) FROM table_name_23 WHERE wins > 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_18143210_2 (first_season_of_current_spell_in_top_division VARCHAR, first_season_in_top_division VARCHAR)
### Question:
When was the 'first season of current spell in top division' if the first season in top division is in 1964-65?
### Answer:
SELECT first_season_of_current_spell_in_top_division FROM table_18143210_2 WHERE first_season_in_top_division = "1964-65" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20799905_1 (obama_percentage VARCHAR, county VARCHAR)
### Question:
What percentage did Obama get in Rutherford county?
### Answer:
SELECT obama_percentage FROM table_20799905_1 WHERE county = "RUTHERFORD" |
Below is an context that describes a sql 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 (year VARCHAR, position VARCHAR, name VARCHAR)
### Question:
What year is guard Mario Chalmers?
### Answer:
SELECT year FROM table_name_53 WHERE position = "guard" AND name = "mario chalmers" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23242968_1 (directed_by VARCHAR, written_by VARCHAR)
### Question:
Who directed the episode that was written by Jonathan Fener?
### Answer:
SELECT directed_by FROM table_23242968_1 WHERE written_by = "Jonathan Fener" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1059743_2 (group_stage INTEGER, points VARCHAR)
### Question:
What is the lowest group to earn 886.6 points?
### Answer:
SELECT MIN(group_stage) FROM table_1059743_2 WHERE points = "886.6" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21346767_3 (age INTEGER, geographical_regions VARCHAR, hometown VARCHAR)
### Question:
Name the least age for cibao central and santo domingo
### Answer:
SELECT MIN(age) FROM table_21346767_3 WHERE geographical_regions = "Cibao Central" AND hometown = "Santo Domingo" |
Below is an context that describes a sql 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 (pop_¹ INTEGER, region VARCHAR, prefecture VARCHAR)
### Question:
Name the average pop for chūgoku and prefecture of okayama
### Answer:
SELECT AVG(pop_¹) FROM table_name_75 WHERE region = "chūgoku" AND prefecture = "okayama" |
Below is an context that describes a sql 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 (label VARCHAR, region VARCHAR, date VARCHAR)
### Question:
What is the Label of the release on April 24, 2009 in Germany?
### Answer:
SELECT label FROM table_name_2 WHERE region = "germany" AND date = "april 24, 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_15681686_4 (rating VARCHAR, rank__week_ VARCHAR)
### Question:
what is the rating where the rank is 48?
### Answer:
SELECT rating / SHARE(18 - 49) FROM table_15681686_4 WHERE rank__week_ = "48" |
Below is an context that describes a sql 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 (home_team VARCHAR)
### Question:
What is the home team score for St Kilda?
### Answer:
SELECT home_team AS score FROM table_name_52 WHERE home_team = "st kilda" |
Below is an context that describes a sql 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 (runners_up VARCHAR, year VARCHAR, champions VARCHAR, name_of_tournament VARCHAR)
### Question:
What were the Runners-up prior to 1990 when Ivan Lendl was Champion in the Seiko Super Tennis Tournament?
### Answer:
SELECT runners_up FROM table_name_80 WHERE champions = "ivan lendl" AND name_of_tournament = "seiko super tennis" AND year < 1990 |
Below is an context that describes a sql 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 (owner_operator VARCHAR, licence_number VARCHAR)
### Question:
Who is the owner operator who has license number PL 59?
### Answer:
SELECT owner_operator FROM table_name_85 WHERE licence_number = "pl 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 table_name_6 (first_elected VARCHAR, member VARCHAR)
### Question:
What is the year First elected when the Member is John Armitage?
### Answer:
SELECT first_elected FROM table_name_6 WHERE member = "john armitage" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
### Question:
How many were in attendance against the Oakland Raiders after week 7?
### Answer:
SELECT SUM(attendance) FROM table_name_25 WHERE opponent = "oakland raiders" AND week > 7 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)
### Question:
Who was the home team at the game that had a score of 2 – 2?
### Answer:
SELECT home FROM table_name_96 WHERE score = "2 – 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_30120605_1 (barony VARCHAR, townland VARCHAR)
### Question:
What is the barony of mountcotton?
### Answer:
SELECT barony FROM table_30120605_1 WHERE townland = "Mountcotton" |
Below is an context that describes a sql 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 (season VARCHAR, number_of_contestants VARCHAR, winner VARCHAR)
### Question:
What season had more than 12 contestants in which greydis gil won?
### Answer:
SELECT season FROM table_name_98 WHERE number_of_contestants > 12 AND winner = "greydis gil" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21330550_2 (winner VARCHAR, location VARCHAR)
### Question:
Who is the winner in the location of ljvm coliseum • winston-salem, nc?
### Answer:
SELECT winner FROM table_21330550_2 WHERE location = "LJVM Coliseum • Winston-Salem, NC" |
Below is an context that describes a sql 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 (rank VARCHAR, col__m_ INTEGER)
### Question:
What is the rank when the col is larger than 0?
### Answer:
SELECT COUNT(rank) FROM table_name_7 WHERE col__m_ > 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_62 (venue VARCHAR, away_team VARCHAR)
### Question:
At what venue was richmond the away team?
### Answer:
SELECT venue FROM table_name_62 WHERE away_team = "richmond" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_10 (rounds VARCHAR, tyre VARCHAR, chassis VARCHAR)
### Question:
In what rounds did the P15 Chassis and tyre D participate?
### Answer:
SELECT rounds FROM table_name_10 WHERE tyre = "d" AND chassis = "p15" |
Below is an context that describes a sql 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 (home_team VARCHAR, tie_no VARCHAR)
### Question:
Who was the home team that has a tie no of 1?
### Answer:
SELECT home_team FROM table_name_29 WHERE tie_no = "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_24919137_2 (venue VARCHAR, score VARCHAR)
### Question:
Where was the game played when the score was 14.16 (100)-12.12 (84)?
### Answer:
SELECT venue FROM table_24919137_2 WHERE score = "14.16 (100)-12.12 (84)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_30049462_3 (date VARCHAR, game VARCHAR)
### Question:
in how many dates the game was 2
### Answer:
SELECT COUNT(date) FROM table_30049462_3 WHERE game = 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_7 (year VARCHAR, gen_secretary VARCHAR)
### Question:
Which year has a Gen.-Secretary of silvana jansen?
### Answer:
SELECT year FROM table_name_7 WHERE gen_secretary = "silvana jansen" |
Below is an context that describes a sql 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 (total VARCHAR, player VARCHAR)
### Question:
Which Total has a Player of matt ruth?
### Answer:
SELECT total FROM table_name_40 WHERE player = "matt ruth" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.