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_51 (stage VARCHAR, winner VARCHAR, points_classification VARCHAR)
### Question:
Which stage was won by Bernard Hinault and had a Points classification of Francesco Moser?
### Answer:
SELECT stage FROM table_name_51 WHERE winner = "bernard hinault" AND points_classification = "francesco moser" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15417439_1 (similarity VARCHAR, genus_species VARCHAR)
### Question:
How similar is the genus/species sus scrofa?
### Answer:
SELECT similarity FROM table_15417439_1 WHERE genus_species = "Sus scrofa" |
Below is an context that describes a sql 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 (name VARCHAR, qual_2 VARCHAR, team VARCHAR)
### Question:
Who had a Qualifying 2 time over 58.669 for Team Australia?
### Answer:
SELECT name FROM table_name_68 WHERE qual_2 > 58.669 AND team = "team australia" |
Below is an context that describes a sql 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 (format VARCHAR, catalog VARCHAR)
### Question:
What is the Format for the alca-487 catalog?
### Answer:
SELECT format FROM table_name_12 WHERE catalog = "alca-487" |
Below is an context that describes a sql 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 (class VARCHAR, frequency_mhz VARCHAR)
### Question:
The frequency 89.3 belongs to what class?
### Answer:
SELECT class FROM table_name_79 WHERE frequency_mhz = 89.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_1566848_7 (date VARCHAR, pictorials VARCHAR)
### Question:
What is the date of the issue where the pictorials is of Female s disk jockey?
### Answer:
SELECT COUNT(date) FROM table_1566848_7 WHERE pictorials = "Female s disk jockey" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_10 (partner VARCHAR, outcome VARCHAR, score VARCHAR)
### Question:
Tell me the partner for outcome of winner and score of 7-6 (7) 5-7 10-7
### Answer:
SELECT partner FROM table_name_10 WHERE outcome = "winner" AND score = "7-6 (7) 5-7 10-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_76 (region VARCHAR, date VARCHAR)
### Question:
What is the region for the date November 18, 2002?
### Answer:
SELECT region FROM table_name_76 WHERE date = "november 18, 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_11 (team VARCHAR, qual_2 VARCHAR)
### Question:
Which team had a qualifying 2 time of 1:01.093?
### Answer:
SELECT team FROM table_name_11 WHERE qual_2 = "1:01.093" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_30121082_1 (barony VARCHAR, area__acres__ VARCHAR)
### Question:
What are the Baronies when the area (in acres) is 276?
### Answer:
SELECT barony FROM table_30121082_1 WHERE area__acres__ = 276 |
Below is an context that describes a sql 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 (away_team VARCHAR, home_team VARCHAR)
### Question:
What away team has wrexham as the home team?
### Answer:
SELECT away_team FROM table_name_44 WHERE home_team = "wrexham" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21434618_1 (team__number2 VARCHAR, team__number1 VARCHAR)
### Question:
which team#2 played against poseidon neoi porroi
### Answer:
SELECT team__number2 FROM table_21434618_1 WHERE team__number1 = "Poseidon Neoi Porroi" |
Below is an context that describes a sql 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 (time VARCHAR, name VARCHAR)
### Question:
What was the Time in the Mina Clavero 2 Stage?
### Answer:
SELECT time FROM table_name_74 WHERE name = "mina clavero 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_62 (home_team VARCHAR, away_team VARCHAR)
### Question:
When the Away team of essendon was playing, what was the Home team's score?
### Answer:
SELECT home_team AS score FROM table_name_62 WHERE away_team = "essendon" |
Below is an context that describes a sql 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 (constructor VARCHAR, chassis VARCHAR, rounds VARCHAR)
### Question:
Who constructed the car in round 1 with a Chassis of 250F?
### Answer:
SELECT constructor FROM table_name_86 WHERE chassis = "250f" AND rounds = "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 volume (Weeks_on_Top INTEGER, Artist_ID VARCHAR); CREATE TABLE artist (Artist_ID VARCHAR, age VARCHAR)
### Question:
What is the average weeks on top of volumes associated with the artist aged 25 or younger?
### Answer:
SELECT AVG(T2.Weeks_on_Top) FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T1.age <= 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_10 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR)
### Question:
When the driver is innes ireland and they drove under 53 laps, what was the Time/Retired?
### Answer:
SELECT time_retired FROM table_name_10 WHERE laps < 53 AND driver = "innes ireland" |
Below is an context that describes a sql 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 (position VARCHAR, school VARCHAR)
### Question:
What position is for Dr. Phillips high school?
### Answer:
SELECT position FROM table_name_94 WHERE school = "dr. phillips high 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_78 (Id VARCHAR)
### Question:
Which 1990s 1992 was 3r?
### Answer:
SELECT 1990 FROM table_name_78 WHERE 1992 = "3r" |
Below is an context that describes a sql 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 (largest_city VARCHAR)
### Question:
What is the 3rd largest where the largest city is Ardabil?
### Answer:
SELECT 3 AS rd_largest FROM table_name_35 WHERE largest_city = "ardabil" |
Below is an context that describes a sql 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 (played VARCHAR, lost VARCHAR)
### Question:
What play has a loss of 2?
### Answer:
SELECT played FROM table_name_1 WHERE lost = "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_25316812_1 (rate_limit__p_ VARCHAR, desired_rate_change___percentage_ VARCHAR)
### Question:
What is the rate limit when the desired rate change (%) is +40.4?
### Answer:
SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = "+40.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_73 (score VARCHAR, competition VARCHAR)
### Question:
What is Score, when Competition is "Euro 2004 Qualifier"?
### Answer:
SELECT score FROM table_name_73 WHERE competition = "euro 2004 qualifier" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_91 (week VARCHAR, result VARCHAR)
### Question:
Which week had a result of L 38-21?
### Answer:
SELECT week FROM table_name_91 WHERE result = "l 38-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_59 (date VARCHAR, game VARCHAR, opponent VARCHAR)
### Question:
What is the Date of the game against Detroit in game 31 or after?
### Answer:
SELECT date FROM table_name_59 WHERE game > 31 AND opponent = "detroit" |
Below is an context that describes a sql 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 (poverty__2009__hpi_1__percentage VARCHAR, gdp__ppp___2012__us$_per_capita VARCHAR)
### Question:
What is the sum of poverty (2009) HPI-1 % when the GDP (PPP) (2012) US$ per capita of 11,284?
### Answer:
SELECT COUNT(poverty__2009__hpi_1__percentage) FROM table_name_69 WHERE gdp__ppp___2012__us$_per_capita = "11,284" |
Below is an context that describes a sql 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 (attendance INTEGER, home VARCHAR)
### Question:
What was the highest attendance for the Hispano team?
### Answer:
SELECT MAX(attendance) FROM table_name_56 WHERE home = "hispano" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15002265_1 (mens_doubles VARCHAR, mens_singles VARCHAR, womens_singles VARCHAR)
### Question:
who is the the mens doubles with mens singles being jürgen koch and womens singles being sabine ploner
### Answer:
SELECT mens_doubles FROM table_15002265_1 WHERE mens_singles = "Jürgen Koch" AND womens_singles = "Sabine Ploner" |
Below is an context that describes a sql 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 (colliery VARCHAR, death_toll VARCHAR)
### Question:
Which Colliery has a Death toll of 7?
### Answer:
SELECT colliery FROM table_name_76 WHERE death_toll = 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_23177573_1 (original_air_date VARCHAR, rank__week_ VARCHAR)
### Question:
What is the original air date of the episode that had a week ranking of 21?
### Answer:
SELECT original_air_date FROM table_23177573_1 WHERE rank__week_ = 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_9 (attendance VARCHAR, date VARCHAR)
### Question:
What is the attendance for august 29?
### Answer:
SELECT attendance FROM table_name_9 WHERE date = "august 29" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_30 (number INTEGER, school_club_team VARCHAR)
### Question:
What is the lowest Number, when School/Club Team is Misamis Institute?
### Answer:
SELECT MIN(number) FROM table_name_30 WHERE school_club_team = "misamis institute" |
Below is an context that describes a sql 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 (year INTEGER, country VARCHAR)
### Question:
What is the average year of the film from France/Hong Kong?
### Answer:
SELECT AVG(year) FROM table_name_74 WHERE country = "france/hong kong" |
Below is an context that describes a sql 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 (swimsuit INTEGER, evening_gown VARCHAR, average VARCHAR)
### Question:
What is the sum of swimsuit with an evening gown of 9.773 and average larger than 9.674?
### Answer:
SELECT SUM(swimsuit) FROM table_name_82 WHERE evening_gown = 9.773 AND average > 9.674 |
Below is an context that describes a sql 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 (poles INTEGER, races INTEGER)
### Question:
What Poles have Races smaller than 4?
### Answer:
SELECT AVG(poles) FROM table_name_59 WHERE races < 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_82 (versus VARCHAR, bowling_figures_wickets_runs__overs_ VARCHAR)
### Question:
Who was the opponent during the competition in which the bowling figures were 5-33 (10)?
### Answer:
SELECT versus FROM table_name_82 WHERE bowling_figures_wickets_runs__overs_ = "5-33 (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_86 (venue VARCHAR, closed VARCHAR)
### Question:
Which venue closed in 1996?
### Answer:
SELECT venue FROM table_name_86 WHERE closed = "1996" |
Below is an context that describes a sql 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 (stadium VARCHAR, club VARCHAR)
### Question:
Which stadium has FC Seoul?
### Answer:
SELECT stadium FROM table_name_65 WHERE club = "fc seoul" |
Below is an context that describes a sql 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 (total INTEGER, name VARCHAR, premier_league VARCHAR)
### Question:
What is the average total of kenwyne jones, who has more than 10 premier leagues?
### Answer:
SELECT AVG(total) FROM table_name_43 WHERE name = "kenwyne jones" AND premier_league > 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_56 (venue VARCHAR, away_team VARCHAR)
### Question:
Which venue was melbourne the away team of?
### Answer:
SELECT venue FROM table_name_56 WHERE away_team = "melbourne" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_61 (time_retired VARCHAR, grid VARCHAR)
### Question:
What time is grid 7 in?
### Answer:
SELECT time_retired FROM table_name_61 WHERE grid = 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_35 (record VARCHAR, event VARCHAR)
### Question:
Which Record has an Event of cage rage 23?
### Answer:
SELECT record FROM table_name_35 WHERE event = "cage rage 23" |
Below is an context that describes a sql 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 (score VARCHAR, player VARCHAR)
### Question:
What was Frank Moore's score?
### Answer:
SELECT score FROM table_name_81 WHERE player = "frank moore" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_32 (class VARCHAR, year_s__of_manufacture VARCHAR)
### Question:
Which Class has a Year(s) of Manufacture of 1899?
### Answer:
SELECT class FROM table_name_32 WHERE year_s__of_manufacture = "1899" |
Below is an context that describes a sql 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 (high_points VARCHAR, date VARCHAR)
### Question:
Who had the highest points of the game on March 24?
### Answer:
SELECT high_points FROM table_name_39 WHERE date = "march 24" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_27 (source VARCHAR, date VARCHAR)
### Question:
What is the source on 6 September?
### Answer:
SELECT source FROM table_name_27 WHERE date = "6 september" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_13464416_6 (record VARCHAR, high_assists VARCHAR)
### Question:
how many times have there been helps by damon stoudamire (13)
### Answer:
SELECT COUNT(record) FROM table_13464416_6 WHERE high_assists = "Damon Stoudamire (13)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_41 (orchestra VARCHAR, songwriter_s_ VARCHAR)
### Question:
Name the orchestra for ted varnick
### Answer:
SELECT orchestra FROM table_name_41 WHERE songwriter_s_ = "ted varnick" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16799784_2 (name VARCHAR, latitude VARCHAR)
### Question:
Name the name of 36.0n
### Answer:
SELECT name FROM table_16799784_2 WHERE latitude = "36.0N" |
Below is an context that describes a sql 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 (record VARCHAR, visitor VARCHAR, score VARCHAR)
### Question:
What was the record when the visitor was toronto maple leafs and the score was 3–10?
### Answer:
SELECT record FROM table_name_67 WHERE visitor = "toronto maple leafs" AND score = "3–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_1 (example_meaning_in_english VARCHAR, tone VARCHAR)
### Question:
What is the example in English for a tone of mid rising-falling?
### Answer:
SELECT example_meaning_in_english FROM table_name_1 WHERE tone = "mid rising-falling" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR)
### Question:
How many friends does Dan have?
### Answer:
SELECT COUNT(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan' |
Below is an context that describes a sql 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 (score VARCHAR, game VARCHAR)
### Question:
What was the score of Game 48?
### Answer:
SELECT score FROM table_name_43 WHERE game = "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 Companies (Industry VARCHAR, Headquarters VARCHAR)
### Question:
Show the industries shared by companies whose headquarters are "USA" and companies whose headquarters are "China".
### Answer:
SELECT Industry FROM Companies WHERE Headquarters = "USA" INTERSECT SELECT Industry FROM Companies WHERE Headquarters = "China" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_19 (record VARCHAR, location VARCHAR, opponent VARCHAR)
### Question:
What was Gassaway's record at the fight in mississippi, united states against anthony macias?
### Answer:
SELECT record FROM table_name_19 WHERE location = "mississippi, united states" AND opponent = "anthony macias" |
Below is an context that describes a sql 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 (rocket VARCHAR, cospar_id VARCHAR)
### Question:
What rocket has a COSPAR ID of 2002-001a?
### Answer:
SELECT rocket FROM table_name_31 WHERE cospar_id = "2002-001a" |
Below is an context that describes a sql 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 (count_rectified VARCHAR, material_or_non_material VARCHAR, opponents VARCHAR, positional_or_automatic VARCHAR)
### Question:
Is the count rectified for single opponents, either positional or automatic, and no material or non-material?
### Answer:
SELECT count_rectified FROM table_name_78 WHERE opponents = "single" AND positional_or_automatic = "either" AND material_or_non_material = "no" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_71 (state_s_ VARCHAR, percent_change__1990_2000_ VARCHAR)
### Question:
What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%?
### Answer:
SELECT 2000 AS _population FROM table_name_71 WHERE state_s_ = "ok" AND percent_change__1990_2000_ = "a078 +17.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_33 (date VARCHAR, partner VARCHAR)
### Question:
Which Date has a Partner of daniella dominikovic?
### Answer:
SELECT date FROM table_name_33 WHERE partner = "daniella dominikovic" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11934032_1 (registrations VARCHAR, location VARCHAR)
### Question:
what are all the registrations where location is yaxley
### Answer:
SELECT registrations FROM table_11934032_1 WHERE location = "Yaxley" |
Below is an context that describes a sql 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 (birth_state VARCHAR, election_year INTEGER)
### Question:
What state was the president who was elected earlier than 1848 born in?
### Answer:
SELECT birth_state FROM table_name_43 WHERE election_year < 1848 |
Below is an context that describes a sql 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 (Vice VARCHAR, president VARCHAR, treasurer VARCHAR)
### Question:
Which Vice President has a President of daniel masny, and a Treasurer of rebecca t. altmann?
### Answer:
SELECT Vice AS president FROM table_name_29 WHERE president = "daniel masny" AND treasurer = "rebecca t. altmann" |
Below is an context that describes a sql 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 (decay_mode VARCHAR, discovery_year VARCHAR, isotope VARCHAR)
### Question:
What is the decay mode of the 265m hs isotope discovered in 1984?
### Answer:
SELECT decay_mode FROM table_name_28 WHERE discovery_year = "1984" AND isotope = "265m hs" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21500850_1 (song_title VARCHAR, artist VARCHAR, genre VARCHAR, original_game VARCHAR)
### Question:
What is every song title for the rock genre and Guitar Hero as original game and the artist is Queens of the Stone Age?
### Answer:
SELECT song_title FROM table_21500850_1 WHERE genre = "Rock" AND original_game = "Guitar Hero" AND artist = "Queens of the Stone Age" |
Below is an context that describes a sql 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 (sector VARCHAR, incorporated INTEGER)
### Question:
What is the sector of the company with an incorporated date before 1983?
### Answer:
SELECT sector FROM table_name_64 WHERE incorporated < 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_98 (result VARCHAR, location VARCHAR)
### Question:
What is the result at match reports?
### Answer:
SELECT result FROM table_name_98 WHERE location = "match reports" |
Below is an context that describes a sql 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 (mean_free_path VARCHAR, vacuum_range VARCHAR)
### Question:
What is Mean Free Path, when Vacuum Range is "medium vacuum"?
### Answer:
SELECT mean_free_path FROM table_name_25 WHERE vacuum_range = "medium vacuum" |
Below is an context that describes a sql 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 (spaceport VARCHAR, launcher VARCHAR, launch_complex VARCHAR)
### Question:
What is the spaceport location that houses the LC34 complex and uses the Saturn IB launcher?
### Answer:
SELECT spaceport FROM table_name_82 WHERE launcher = "saturn ib" AND launch_complex = "lc34" |
Below is an context that describes a sql 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 (fencing_victories__pts_ VARCHAR, total VARCHAR)
### Question:
Which Fencing Victories (pts) has a Total of 5640?
### Answer:
SELECT fencing_victories__pts_ FROM table_name_68 WHERE total = 5640 |
Below is an context that describes a sql 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 (season VARCHAR, opponent VARCHAR)
### Question:
What is the Season when the Opponent was zenit st. petersburg?
### Answer:
SELECT season FROM table_name_68 WHERE opponent = "zenit st. petersburg" |
Below is an context that describes a sql 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 (spike VARCHAR, name VARCHAR)
### Question:
What kind of Spike has a Name of mia jerkov category:articles with hcards?
### Answer:
SELECT spike FROM table_name_27 WHERE name = "mia jerkov category:articles with hcards" |
Below is an context that describes a sql 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 (score VARCHAR, home VARCHAR, date VARCHAR)
### Question:
What was teh score of the game where Toronto was the home team on January 28?
### Answer:
SELECT score FROM table_name_43 WHERE home = "toronto" AND date = "january 28" |
Below is an context that describes a sql 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 (date VARCHAR, versus VARCHAR, wicket VARCHAR)
### Question:
What is the date of the game against South Africa and 2nd wickets?
### Answer:
SELECT date FROM table_name_66 WHERE versus = "south africa" AND wicket = "2nd" |
Below is an context that describes a sql 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 (record VARCHAR, attendance VARCHAR)
### Question:
What is the record of the game with 28,135 people in attendance?
### Answer:
SELECT record FROM table_name_30 WHERE attendance = "28,135" |
Below is an context that describes a sql 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 (head_coach VARCHAR, shirt_sponsor VARCHAR)
### Question:
Who is the head coach for the team that has finke as the shirt sponsor?
### Answer:
SELECT head_coach FROM table_name_75 WHERE shirt_sponsor = "finke" |
Below is an context that describes a 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_1 (powershell__cmdlet_ VARCHAR, unix_shell VARCHAR)
### Question:
How many values of powershell (cmdlet) are valid when unix shell is env, export, set, setenv?
### Answer:
SELECT COUNT(powershell__cmdlet_) FROM table_14465871_1 WHERE unix_shell = "env, export, set, setenv" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_77 (hindu VARCHAR, us__1912_ VARCHAR)
### Question:
In 1912 when the U.S used sapphire, what was the Hindu birthstone?
### Answer:
SELECT hindu FROM table_name_77 WHERE us__1912_ = "sapphire" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20217811_1 (green VARCHAR, electorate VARCHAR)
### Question:
Name the green for otaki
### Answer:
SELECT green FROM table_20217811_1 WHERE electorate = "Otaki" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26131768_4 (residence VARCHAR, representative VARCHAR)
### Question:
How many times was Scott Oelslager a representative?
### Answer:
SELECT COUNT(residence) FROM table_26131768_4 WHERE representative = "Scott Oelslager" |
Below is an context that describes a sql 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 (laps INTEGER, team VARCHAR, time_retired VARCHAR)
### Question:
How many laps for mi-jack conquest racing when they went off course?
### Answer:
SELECT SUM(laps) FROM table_name_21 WHERE team = "mi-jack conquest racing" AND time_retired = "off course" |
Below is an context that describes a sql 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 (series_ep VARCHAR, segment_c VARCHAR)
### Question:
Name the series ep for segment c of luxury cars (part 1)
### Answer:
SELECT series_ep FROM table_name_63 WHERE segment_c = "luxury cars (part 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_28 (to_par INTEGER, total VARCHAR)
### Question:
What is the to par for the player with total of 155?
### Answer:
SELECT AVG(to_par) FROM table_name_28 WHERE total = 155 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17288845_9 (score VARCHAR, game VARCHAR)
### Question:
Name the score for game 63
### Answer:
SELECT score FROM table_17288845_9 WHERE game = 63 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_87 (round INTEGER, school_club_team VARCHAR)
### Question:
What is the lowest round of the player from UCLA?
### Answer:
SELECT MIN(round) FROM table_name_87 WHERE school_club_team = "ucla" |
Below is an context that describes 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 (Name VARCHAR, price VARCHAR)
### Question:
List the names of all distinct wines ordered by price.
### Answer:
SELECT DISTINCT Name FROM WINE ORDER BY price |
Below is an context that describes a sql 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 (horizontal_bar VARCHAR, pommel_horse VARCHAR)
### Question:
What horizontal bar score also has a pommel horse score of 15.250?
### Answer:
SELECT horizontal_bar FROM table_name_60 WHERE pommel_horse = "15.250" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12962773_14 (year_born INTEGER, height VARCHAR)
### Question:
What year was the player born who is 2.02m tall?
### Answer:
SELECT MAX(year_born) FROM table_12962773_14 WHERE height = "2.02" |
Below is an context that describes a sql 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 (location VARCHAR, opponent VARCHAR)
### Question:
What is the location of the fight against Zaza Tkeshelashvili?
### Answer:
SELECT location FROM table_name_26 WHERE opponent = "zaza tkeshelashvili" |
Below is an context that describes a sql 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 (tatsuhito_takaiwa VARCHAR, ryusuke_taguchi VARCHAR)
### Question:
Name for me the tatsuhito takaiwa for Ryusuke Taguchi of taguchi (14:31)
### Answer:
SELECT tatsuhito_takaiwa FROM table_name_50 WHERE ryusuke_taguchi = "taguchi (14: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_15 (score VARCHAR, game VARCHAR, time VARCHAR)
### Question:
Game larger than 4, and a Time of 2:26 resulted in what score?
### Answer:
SELECT score FROM table_name_15 WHERE game > 4 AND time = "2:26" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_84 (country VARCHAR, player VARCHAR)
### Question:
What Country is David Toms from?
### Answer:
SELECT country FROM table_name_84 WHERE player = "david toms" |
Below is an context that describes a sql 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 (player VARCHAR, year VARCHAR)
### Question:
Who was the player in 1976?
### Answer:
SELECT player FROM table_name_9 WHERE year = 1976 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_58 (surface VARCHAR, rally_hq VARCHAR)
### Question:
What Surface had a Rally HQ of salou?
### Answer:
SELECT surface FROM table_name_58 WHERE rally_hq = "salou" |
Below is an context that describes a sql 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 (outcome VARCHAR, date VARCHAR)
### Question:
What is the outcome on March 20, 1994?
### Answer:
SELECT outcome FROM table_name_89 WHERE date = "march 20, 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 player (birth_country VARCHAR)
### Question:
List three countries which are the origins of the least players.
### Answer:
SELECT birth_country FROM player GROUP BY birth_country ORDER BY COUNT(*) LIMIT 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_62 (date VARCHAR, description VARCHAR)
### Question:
What is the date listed for the item that has undergoing overhaul, restoration or repairs listed under description?
### Answer:
SELECT date FROM table_name_62 WHERE description = "undergoing overhaul, restoration or repairs" |
Below is an context that describes a sql 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 (date VARCHAR, loss VARCHAR)
### Question:
What was the date of the game with a loss of Wakefield (5-2)?
### Answer:
SELECT date FROM table_name_26 WHERE loss = "wakefield (5-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_74 (engine VARCHAR, year INTEGER)
### Question:
Which engine has a year larger than 1956?
### Answer:
SELECT engine FROM table_name_74 WHERE year > 1956 |
Below is an context that describes a sql 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 (date VARCHAR, opponents VARCHAR)
### Question:
What are the dates where the opponent was guillermo garcía-lópez albert portas?
### Answer:
SELECT date FROM table_name_9 WHERE opponents = "guillermo garcía-lópez albert portas" |
Below is an context that describes a sql 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 (height__m_ VARCHAR, first_time_as_hc_climb VARCHAR, no_of_times_visited VARCHAR, no_of_hc_climbs VARCHAR, most_recent VARCHAR)
### Question:
What is the height with more than 2 HC climbs more recent than 2012, less than 48 times visited, and a first HC climb in 1989?
### Answer:
SELECT height__m_ FROM table_name_69 WHERE no_of_hc_climbs > 2 AND most_recent = 2012 AND no_of_times_visited < 48 AND first_time_as_hc_climb = 1989 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.