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_20 (grid INTEGER, constructor VARCHAR, laps VARCHAR)
### Question:
What is the low grid that has brm and over 54 laps?
### Answer:
SELECT MIN(grid) FROM table_name_20 WHERE constructor = "brm" AND laps > 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_60 (player VARCHAR, score INTEGER)
### Question:
Can you tell me the Player that has the Score larger than 67?
### Answer:
SELECT player FROM table_name_60 WHERE score > 67 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_37 (frequency_mhz INTEGER, city_of_license VARCHAR)
### Question:
What is the frequency for the city of Lamar, Colorado?
### Answer:
SELECT AVG(frequency_mhz) FROM table_name_37 WHERE city_of_license = "lamar, colorado" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE exhibition (artist_id VARCHAR); CREATE TABLE artist (name VARCHAR, country VARCHAR, artist_id VARCHAR)
### Question:
What is the name and country for the artist with most number of exhibitions?
### Answer:
SELECT T2.name, T2.country FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id GROUP BY T1.artist_id ORDER BY COUNT(*) 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_name_32 (home_team VARCHAR, away_team VARCHAR)
### Question:
When the Away team is south melbourne, what's the Home team score?
### Answer:
SELECT home_team AS score FROM table_name_32 WHERE away_team = "south 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_60 (score_in_the_final VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
### Question:
What is the score in the final with a hard surface and is against Hiromi Nagano?
### Answer:
SELECT score_in_the_final FROM table_name_60 WHERE surface = "hard" AND opponent_in_the_final = "hiromi nagano" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22282917_26 (code_ VARCHAR, _location VARCHAR, launch_site_condition_owner VARCHAR)
### Question:
What is every code and location where the launch site condition and owner is obliterated?
### Answer:
SELECT code_ & _location FROM table_22282917_26 WHERE launch_site_condition_owner = "Obliterated" |
Below is an context that describes a sql 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 (championships VARCHAR, established INTEGER)
### Question:
Which championship was established after 2005?
### Answer:
SELECT championships FROM table_name_1 WHERE established > 2005 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1682026_6 (profits__billion_$_ VARCHAR, market_value__billion_$_ VARCHAR)
### Question:
what is the amount of profits in billions for companies with a market value of 204.9 billion?
### Answer:
SELECT profits__billion_$_ FROM table_1682026_6 WHERE market_value__billion_$_ = "204.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_16078390_2 (institution VARCHAR, team_nickname VARCHAR)
### Question:
Which school's team has the nickname of the Wildcats?
### Answer:
SELECT institution FROM table_16078390_2 WHERE team_nickname = "Wildcats" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17596418_5 (age VARCHAR, started VARCHAR)
### Question:
what ist he total number of ages where the start date is 6 november?
### Answer:
SELECT COUNT(age) FROM table_17596418_5 WHERE started = "6 November" |
Below is an context that describes a sql 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 (shooter VARCHAR, score_points VARCHAR, event VARCHAR)
### Question:
Who got 13 score points at wc kerrville?
### Answer:
SELECT shooter FROM table_name_16 WHERE score_points = "13" AND event = "wc kerrville" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27588823_2 (callsign VARCHAR, location VARCHAR)
### Question:
How many call signs does the location masinloc, zambales have?
### Answer:
SELECT COUNT(callsign) FROM table_27588823_2 WHERE location = "Masinloc, Zambales" |
Below is an context that describes a sql 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 (top_division_debut VARCHAR, tournaments VARCHAR, name VARCHAR)
### Question:
Which Top Division debut for Kitazakura has Tournaments less than 88?
### Answer:
SELECT top_division_debut FROM table_name_12 WHERE tournaments < 88 AND name = "kitazakura" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22779004_1 (regular_season_winner VARCHAR, tournament_winner VARCHAR)
### Question:
Who won the regular season when Maryland won the tournament?
### Answer:
SELECT regular_season_winner FROM table_22779004_1 WHERE tournament_winner = "Maryland" |
Below is an context that describes a sql 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 (career_sr VARCHAR)
### Question:
What is 2001, when 1987 is N/A, and when Career SR is N/A?
### Answer:
SELECT 2001 FROM table_name_50 WHERE 1987 = "n/a" AND career_sr = "n/a" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27755603_10 (high_points VARCHAR, team VARCHAR)
### Question:
What was the high points when the team was Washington?
### Answer:
SELECT high_points FROM table_27755603_10 WHERE team = "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_1277350_3 (saturday_shani__saturn_ VARCHAR, sunday_surya__the_sun_ VARCHAR)
### Question:
In the system where Sunday is ஞாயிற்று கிழமை nyāyitru kizhamai, what is Saturday?
### Answer:
SELECT saturday_shani__saturn_ FROM table_1277350_3 WHERE sunday_surya__the_sun_ = "ஞாயிற்று கிழமை Nyāyitru kizhamai" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11206787_5 (average INTEGER)
### Question:
What is the average?
### Answer:
SELECT MIN(average) FROM table_11206787_5 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_89 (stolen_ends INTEGER, ends_lost INTEGER)
### Question:
Name the average Stolen Ends which has an Ends Lost smaller than 35?
### Answer:
SELECT AVG(stolen_ends) FROM table_name_89 WHERE ends_lost < 35 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Apartments (apt_number VARCHAR, room_count VARCHAR)
### Question:
Return all the apartment numbers sorted by the room count in ascending order.
### Answer:
SELECT apt_number FROM Apartments ORDER BY room_count |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14981555_3 (result VARCHAR, venue VARCHAR)
### Question:
In Ascot (UK), what was the result?
### Answer:
SELECT result FROM table_14981555_3 WHERE venue = "Ascot (UK)" |
Below is an context that describes a sql 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 (score VARCHAR, to_par VARCHAR, player VARCHAR)
### Question:
With a To par of –1, what is Player Henrik Stenson's Score?
### Answer:
SELECT score FROM table_name_48 WHERE to_par = "–1" AND player = "henrik stenson" |
Below is an context that describes a sql 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 (glendale VARCHAR, pasadena VARCHAR)
### Question:
What is the percentage of Glendale when Pasadena is 14%?
### Answer:
SELECT glendale FROM table_name_87 WHERE pasadena = "14%" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_50 (silver INTEGER, nation VARCHAR, total VARCHAR)
### Question:
What is the highest number of Silver, when the Nation is Japan (JPN), and when the Total is greater than 37?
### Answer:
SELECT MAX(silver) FROM table_name_50 WHERE nation = "japan (jpn)" AND total > 37 |
Below is an context that describes a sql 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 (country VARCHAR, rider VARCHAR)
### Question:
What is Country , when Rider is Lindsay Porter?
### Answer:
SELECT country FROM table_name_63 WHERE rider = "lindsay porter" |
Below is an context that describes a sql 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 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
### Question:
Which Gold has a Nation of south korea (kor), and Bronze smaller than 65?
### Answer:
SELECT AVG(gold) FROM table_name_83 WHERE nation = "south korea (kor)" AND bronze < 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_name_72 (event VARCHAR, score INTEGER)
### Question:
Which event had a score of over 673 points?
### Answer:
SELECT event FROM table_name_72 WHERE score > 673 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR)
### Question:
What is the % of same-sex marriages for the year of 2011?
### Answer:
SELECT _percentage_same_sex_marriages FROM table_19614212_1 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_name_11 (money___£__ VARCHAR, country VARCHAR)
### Question:
How much Money( £ )australia has ?
### Answer:
SELECT money___£__ FROM table_name_11 WHERE country = "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_66 (overall INTEGER, college VARCHAR)
### Question:
What is stanford's average overall?
### Answer:
SELECT AVG(overall) FROM table_name_66 WHERE college = "stanford" |
Below is an context that describes a sql 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 (name VARCHAR, chief_judge VARCHAR, award VARCHAR)
### Question:
What student won 3rd with Peter Agre as Chief Judge?
### Answer:
SELECT name FROM table_name_78 WHERE chief_judge = "peter agre" AND award = "3rd" |
Below is an context that describes a sql 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 (laps INTEGER, grid VARCHAR, points VARCHAR)
### Question:
What is the top lap that had 6 grids and more than 19 points?
### Answer:
SELECT MAX(laps) FROM table_name_38 WHERE grid = "6" AND points > 19 |
Below is an context that describes a sql 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 (draw VARCHAR, artist VARCHAR, points VARCHAR)
### Question:
What is the draw with less than 107 points by the artist Jan Johansen?
### Answer:
SELECT COUNT(draw) FROM table_name_9 WHERE artist = "jan johansen" AND points < 107 |
Below is an context that describes a sql 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 (air_date VARCHAR, rating VARCHAR, weekly_winner VARCHAR)
### Question:
What is Air Date, when Rating is "N/A", and when Weekly Winner is "Wedding DJ Chris Dixon"?
### Answer:
SELECT air_date FROM table_name_19 WHERE rating = "n/a" AND weekly_winner = "wedding dj chris dixon" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14903081_1 (current_venue VARCHAR, location VARCHAR)
### Question:
Which current venues location is Mason, Ohio?
### Answer:
SELECT current_venue FROM table_14903081_1 WHERE location = "Mason, Ohio" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18373863_2 (mlb_team VARCHAR, fcsl_team VARCHAR)
### Question:
When winter pines is the fcsl team how many mlb teams are there?
### Answer:
SELECT COUNT(mlb_team) FROM table_18373863_2 WHERE fcsl_team = "Winter Pines" |
Below is an context that describes a sql 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 (result VARCHAR, venue VARCHAR, date VARCHAR)
### Question:
Which Result has a Venue of kinnarps arena, and a Date of thursday, february 19?
### Answer:
SELECT result FROM table_name_86 WHERE venue = "kinnarps arena" AND date = "thursday, february 19" |
Below is an context that describes a sql 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 (music VARCHAR, style VARCHAR)
### Question:
Which music is jive?
### Answer:
SELECT music FROM table_name_20 WHERE style = "jive" |
Below is an context that describes a sql 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 (position VARCHAR, number VARCHAR)
### Question:
Which position does number 23 play?
### Answer:
SELECT position FROM table_name_13 WHERE number = "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_17326036_6 (location_attendance VARCHAR, date VARCHAR)
### Question:
What was the attendance and location on December 15?
### Answer:
SELECT location_attendance FROM table_17326036_6 WHERE date = "December 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 table_name_24 (house VARCHAR, what VARCHAR, three VARCHAR)
### Question:
What is "house", when "what" is "ano", and when "three" is "tulo"?
### Answer:
SELECT house FROM table_name_24 WHERE what = "ano" AND three = "tulo" |
Below is an context that describes a sql 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 (driver VARCHAR, points VARCHAR, team VARCHAR)
### Question:
Which driver has 7 points for team Australia?
### Answer:
SELECT driver FROM table_name_28 WHERE points = 7 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_44 (record VARCHAR, game_site VARCHAR, opponent VARCHAR)
### Question:
What was the record when the Denver Broncos played the New York Titans at Bears Stadium?
### Answer:
SELECT record FROM table_name_44 WHERE game_site = "bears stadium" AND opponent = "new york titans" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20996923_20 (date VARCHAR, bowl_game VARCHAR)
### Question:
What was the date for the Champs Sports Bowl?
### Answer:
SELECT date FROM table_20996923_20 WHERE bowl_game = "Champs Sports Bowl" |
Below is an context that describes a sql 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 (rank VARCHAR, transfer_fee___€_million_ VARCHAR, year VARCHAR)
### Question:
What was the rank of a transfer fee larger than 13 million, and after 2008?
### Answer:
SELECT COUNT(rank) FROM table_name_26 WHERE transfer_fee___€_million_ > 13 AND year > 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_19 (Id VARCHAR)
### Question:
What is the 2009 value with lq in 2012, 2r in 2011, and lq in 2008?
### Answer:
SELECT 2009 FROM table_name_19 WHERE 2012 = "lq" AND 2011 = "2r" AND 2008 = "lq" |
Below is an context that describes a sql 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 (points INTEGER, year VARCHAR)
### Question:
What is the smallest number of points for a 1981 team?
### Answer:
SELECT MIN(points) FROM table_name_15 WHERE year = 1981 |
Below is an context that describes a sql 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 (record VARCHAR, date VARCHAR)
### Question:
Name the record for may 3
### Answer:
SELECT record FROM table_name_92 WHERE date = "may 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_1342379_23 (incumbent VARCHAR, candidates VARCHAR)
### Question:
who is the the incumbent with candidates being percy e. quin (d) unopposed
### Answer:
SELECT incumbent FROM table_1342379_23 WHERE candidates = "Percy E. Quin (D) Unopposed" |
Below is an context that describes a sql 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 (result VARCHAR, attendance VARCHAR)
### Question:
What was the result when the attendance was 47,971?
### Answer:
SELECT result FROM table_name_65 WHERE attendance = "47,971" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE city (District VARCHAR, Population INTEGER)
### Question:
Find the number of cities in each district whose population is greater than the average population of cities?
### Answer:
SELECT COUNT(*), District FROM city WHERE Population > (SELECT AVG(Population) FROM city) GROUP BY District |
Below is an context that describes a sql 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 (birthdate VARCHAR, birthplace VARCHAR)
### Question:
On what date was the player from Melrose, Massachusetts born?
### Answer:
SELECT birthdate FROM table_name_54 WHERE birthplace = "melrose, massachusetts" |
Below is an context that describes a sql 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 VARCHAR, points VARCHAR)
### Question:
what is the song that has 17 points?
### Answer:
SELECT song FROM table_name_38 WHERE points = 17 |
Below is an context that describes a sql 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 (state VARCHAR, mountain_peak VARCHAR)
### Question:
Which state is Mount Chiginagak located in?
### Answer:
SELECT state FROM table_name_8 WHERE mountain_peak = "mount chiginagak" |
Below is an context that describes a sql 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 (wins INTEGER, tournament VARCHAR, cuts_made VARCHAR)
### Question:
In the Open Championship with more than 3 cuts made, what is the average wins?
### Answer:
SELECT AVG(wins) FROM table_name_15 WHERE tournament = "the open championship" AND cuts_made > 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_83 (years_in_toronto VARCHAR, player VARCHAR)
### Question:
How long has Sebastian Telfair played for Toronto?
### Answer:
SELECT years_in_toronto FROM table_name_83 WHERE player = "sebastian telfair" |
Below is an context that describes a sql 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 (attendance INTEGER, venue VARCHAR)
### Question:
What is the attendance in texas stadium?
### Answer:
SELECT SUM(attendance) FROM table_name_86 WHERE venue = "texas 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_27713030_11 (record VARCHAR, location_attendance VARCHAR)
### Question:
What was the record for the location and attendance of american airlines arena 19,825?
### Answer:
SELECT record FROM table_27713030_11 WHERE location_attendance = "American Airlines Arena 19,825" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26996293_2 (pick__number VARCHAR, college VARCHAR)
### Question:
where college is st. francis xavier what are all the pick #
### Answer:
SELECT pick__number FROM table_26996293_2 WHERE college = "St. Francis Xavier" |
Below is an context that describes a sql 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 (result VARCHAR, competition VARCHAR, venue VARCHAR)
### Question:
What is the result of the friendly match in Seoul?
### Answer:
SELECT result FROM table_name_47 WHERE competition = "friendly match" AND venue = "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_66 (location VARCHAR, opponent VARCHAR)
### Question:
What was the location of the fight when Gassaway fought kevin knabjian?
### Answer:
SELECT location FROM table_name_66 WHERE opponent = "kevin knabjian" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_206359_1 (_percentage_of_votes VARCHAR, _percentage_of_capital VARCHAR)
### Question:
What percentage of votes does the shareholder with 78.19% of capital have?
### Answer:
SELECT _percentage_of_votes FROM table_206359_1 WHERE _percentage_of_capital = "78.19" |
Below is an context that describes a sql 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 (laps INTEGER, driver VARCHAR)
### Question:
What is the least number of laps for the driver Jo Siffert?
### Answer:
SELECT MIN(laps) FROM table_name_58 WHERE driver = "jo siffert" |
Below is an context that describes a sql 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_for VARCHAR, points_against VARCHAR)
### Question:
Name the points for when points against is of 450
### Answer:
SELECT points_for FROM table_name_97 WHERE points_against = "450" |
Below is an context that describes a sql 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 (date VARCHAR, region VARCHAR, catalog VARCHAR)
### Question:
What's the Date for the Region of Europe and has the Catalog of 28765 22392 8?
### Answer:
SELECT date FROM table_name_70 WHERE region = "europe" AND catalog = "28765 22392 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_24 (location_attendance VARCHAR, game VARCHAR, date VARCHAR)
### Question:
What is the loaction attendance that has a game greater than 35, with January 30 as the date?
### Answer:
SELECT location_attendance FROM table_name_24 WHERE game > 35 AND date = "january 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_name_57 (attendance INTEGER, week VARCHAR, date VARCHAR)
### Question:
What is the top attendance for weeks past 2 on october 29, 1961?
### Answer:
SELECT MAX(attendance) FROM table_name_57 WHERE week > 2 AND date = "october 29, 1961" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_4 (county VARCHAR, name VARCHAR)
### Question:
In which county is the swann covered bridge located?
### Answer:
SELECT county FROM table_name_4 WHERE name = "swann covered bridge" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20760407_1 (record VARCHAR, bruins_points VARCHAR)
### Question:
What was the record when the Bruins had 41 points?
### Answer:
SELECT record FROM table_20760407_1 WHERE bruins_points = 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_86 (birthplace VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR)
### Question:
What was the birthplace of the player who weighs 98 KG and was born on May 1, 1984?
### Answer:
SELECT birthplace FROM table_name_86 WHERE weight__kg_ = 98 AND birthdate = "may 1, 1984" |
Below is an context that describes a sql 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 (result VARCHAR, competition VARCHAR)
### Question:
What is the result of the 2007 AFC asian cup?
### Answer:
SELECT result FROM table_name_19 WHERE competition = "2007 afc asian cup" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_27 (division VARCHAR, position VARCHAR)
### Question:
In what division did they place 4th?
### Answer:
SELECT division FROM table_name_27 WHERE position = "4th" |
Below is an context that describes a sql 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 (tournament VARCHAR)
### Question:
During the Hamburg Masters Tournament, during which Jiří Novák was absent(A) in 1998, how did he do in 1997?
### Answer:
SELECT 1997 FROM table_name_93 WHERE 1998 = "a" AND tournament = "hamburg masters" |
Below is an context that describes a sql 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 (score VARCHAR, competition VARCHAR, date VARCHAR)
### Question:
Competition of friendly, and a Date of 03-jun-62 had what score?
### Answer:
SELECT score FROM table_name_72 WHERE competition = "friendly" AND date = "03-jun-62" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341672_10 (district VARCHAR, incumbent VARCHAR)
### Question:
what is the district where the incumbent is richard kelly?
### Answer:
SELECT district FROM table_1341672_10 WHERE incumbent = "Richard Kelly" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1850282_7 (bocas_is VARCHAR, species VARCHAR)
### Question:
Name the bocas for chironius multiventris septentrionalis
### Answer:
SELECT bocas_is FROM table_1850282_7 WHERE species = "Chironius multiventris septentrionalis" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28211674_3 (u21_mens VARCHAR, mixed_restricted VARCHAR, u21_womens VARCHAR)
### Question:
Who was the U21 Mens winner when Mike Marsden was the mixed restricted winner and Claire Nelson was the U21 Womens winner?
### Answer:
SELECT u21_mens FROM table_28211674_3 WHERE mixed_restricted = "Mike Marsden" AND u21_womens = "Claire Nelson" |
Below is an context that describes a sql 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 (date VARCHAR, set_1 VARCHAR, set_3 VARCHAR)
### Question:
What date was the set 1 25–23, and a Set 3 of 25–14?
### Answer:
SELECT date FROM table_name_12 WHERE set_1 = "25–23" AND set_3 = "25–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_13114949_3 (event VARCHAR, qualifying_score VARCHAR)
### Question:
how many times was the qualifying score 60.750?
### Answer:
SELECT COUNT(event) FROM table_13114949_3 WHERE qualifying_score = "60.750" |
Below is an context that describes a sql 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 (city_of_license VARCHAR, erp_w INTEGER)
### Question:
What is the city of license with an ERP W less than 170?
### Answer:
SELECT city_of_license FROM table_name_15 WHERE erp_w < 170 |
Below is an context that describes a sql 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 (crowd INTEGER, venue VARCHAR)
### Question:
What is the lowest crowd at windy hill?
### Answer:
SELECT MIN(crowd) FROM table_name_28 WHERE venue = "windy 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_35 (opponent VARCHAR, date VARCHAR)
### Question:
What was the opponent for july 21?
### Answer:
SELECT opponent FROM table_name_35 WHERE date = "july 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_47 (ship_type VARCHAR, disposition_of_ship VARCHAR, tonnage VARCHAR)
### Question:
What is the Ship Type of the Prize Disposition of ship and a tonnage less than 151?
### Answer:
SELECT ship_type FROM table_name_47 WHERE disposition_of_ship = "prize" AND tonnage < 151 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25695027_1 (cylinder_size VARCHAR, number_built VARCHAR)
### Question:
What was the cylinder size of this engine that was made with only 88 pieces?
### Answer:
SELECT cylinder_size FROM table_25695027_1 WHERE number_built = "88" |
Below is an context that describes a sql 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 (rank__timeslot_ INTEGER, rank__night_ VARCHAR, rating VARCHAR)
### Question:
What is the timeslor rank for the episode with larger than 2.9 rating, rating/share of 2.6/8 and rank for the night higher than 5?
### Answer:
SELECT AVG(rank__timeslot_) FROM table_name_2 WHERE rating > 2.9 AND rating / SHARE(18 - 49) = 2.6 / 8 AND rank__night_ > 5 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_82 (score VARCHAR, year VARCHAR)
### Question:
What score has 1998 as the year?
### Answer:
SELECT score FROM table_name_82 WHERE year = 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_name_22 (award VARCHAR, category VARCHAR)
### Question:
Which award show had the category of best supporting actress?
### Answer:
SELECT award FROM table_name_22 WHERE category = "best supporting actress" |
Below is an context that describes a sql 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 (tournament VARCHAR, runner_s__up VARCHAR)
### Question:
For what tournament was Bubba Watson the runner-up?
### Answer:
SELECT tournament FROM table_name_29 WHERE runner_s__up = "bubba watson" |
Below is an context that describes a sql 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 (city VARCHAR, date VARCHAR)
### Question:
On October 8, what city was the game played?
### Answer:
SELECT city FROM table_name_82 WHERE date = "october 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_10705060_1 (points VARCHAR, season VARCHAR)
### Question:
How many points for 2005?
### Answer:
SELECT COUNT(points) FROM table_10705060_1 WHERE season = "2005" |
Below is an context that describes a sql 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 (ngc_number INTEGER, constellation VARCHAR)
### Question:
Which NGC number has a Constellation of ursa major?
### Answer:
SELECT MAX(ngc_number) FROM table_name_1 WHERE constellation = "ursa major" |
Below is an context that describes a sql 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 (crowd INTEGER, venue VARCHAR)
### Question:
What was the smallest crowd in games at the corio oval?
### Answer:
SELECT MIN(crowd) FROM table_name_13 WHERE venue = "corio oval" |
Below is an context that describes a sql 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 (result VARCHAR, date VARCHAR)
### Question:
Where Date is september 13, 1998 what is result?
### Answer:
SELECT result FROM table_name_89 WHERE date = "september 13, 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_name_17 (wins INTEGER, ties VARCHAR, goals_against VARCHAR, losses VARCHAR)
### Question:
What has the lowest number of wins with GA smaller than 39, more than 2 losses, and ties greater than 0?
### Answer:
SELECT MIN(wins) FROM table_name_17 WHERE goals_against < 39 AND losses > 2 AND ties > 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_81 (position VARCHAR, school_club_team VARCHAR, round VARCHAR)
### Question:
What position does Maryland have a player for Round 3?
### Answer:
SELECT position FROM table_name_81 WHERE school_club_team = "maryland" AND round = 3 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15780049_6 (high_assists VARCHAR, team VARCHAR)
### Question:
Who had the most assist when the opponent was Cleveland?
### Answer:
SELECT high_assists FROM table_15780049_6 WHERE team = "Cleveland" |
Below is an context that describes a sql 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 (band VARCHAR, purpose VARCHAR, frequency VARCHAR)
### Question:
The community station broadcasting at frequency 0 96.9 is in what band?
### Answer:
SELECT band FROM table_name_87 WHERE purpose = "community" AND frequency = "0 96.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_35 (player VARCHAR, score VARCHAR)
### Question:
What player scored 70-72-70=212?
### Answer:
SELECT player FROM table_name_35 WHERE score = 70 - 72 - 70 = 212 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE shop (name VARCHAR, shop_id VARCHAR); CREATE TABLE hiring (name VARCHAR, shop_id VARCHAR)
### Question:
Find the name of the shops that do not hire any employee.
### Answer:
SELECT name FROM shop WHERE NOT shop_id IN (SELECT shop_id FROM hiring) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.