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_23 (leader_at_the_summit VARCHAR, year VARCHAR)
### Question:
Who was the leader at the summit for the race in 2005?
### Answer:
SELECT leader_at_the_summit FROM table_name_23 WHERE year = 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_20549371_3 (epa_rated_highway_fuel_economy VARCHAR, type_of_powertrain VARCHAR)
### Question:
What is the epa highway fuel economy for an electric suv?
### Answer:
SELECT epa_rated_highway_fuel_economy FROM table_20549371_3 WHERE type_of_powertrain = "Electric SUV" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28178756_1 (race_time VARCHAR, date VARCHAR)
### Question:
List the race time for may 11.
### Answer:
SELECT race_time FROM table_28178756_1 WHERE date = "May 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_298883_5 (reverse VARCHAR, value VARCHAR)
### Question:
What is on the reverse side of the ₩500 coin?
### Answer:
SELECT reverse FROM table_298883_5 WHERE value = "₩500" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_191105_2 (music_by VARCHAR, performed_by VARCHAR)
### Question:
When zachary sanders is the performer how many people is the music by?
### Answer:
SELECT COUNT(music_by) FROM table_191105_2 WHERE performed_by = "Zachary Sanders" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2367847_2 (middle_schools INTEGER, year VARCHAR)
### Question:
Name the most middle schools for 2005-2006
### Answer:
SELECT MAX(middle_schools) FROM table_2367847_2 WHERE year = "2005-2006" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_3 (result VARCHAR, film_title_used_in_nomination VARCHAR)
### Question:
WHAT IS THE RESULT WITH A FILM TITLE FIREDANCER?
### Answer:
SELECT result FROM table_name_3 WHERE film_title_used_in_nomination = "firedancer" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_90 (season VARCHAR, apps VARCHAR, club VARCHAR)
### Question:
In what Season does the Internazionale Club have more than 2 Apps?
### Answer:
SELECT season FROM table_name_90 WHERE apps > 2 AND club = "internazionale" |
Below is an context that describes a sql 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 (years VARCHAR, character VARCHAR)
### Question:
What years have joyce couwenberg as the character?
### Answer:
SELECT years FROM table_name_62 WHERE character = "joyce couwenberg" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_206419_3 (s_b_share INTEGER, percent_of_votes VARCHAR)
### Question:
What is the s B share for the shareholder that has 2.12 percent of votes?
### Answer:
SELECT MIN(s_b_share) FROM table_206419_3 WHERE percent_of_votes = "2.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_6 (semifinalists VARCHAR, tournament VARCHAR)
### Question:
Who were the semifinalists in the Rome tournament?
### Answer:
SELECT semifinalists FROM table_name_6 WHERE tournament = "rome" |
Below is an context that describes a sql 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 (wins INTEGER, conceded VARCHAR, draws VARCHAR, losses VARCHAR)
### Question:
What's the sum of WIns with Draws that's larger than 1, Losses that's smaller than 4, and Conceded of 20?
### Answer:
SELECT SUM(wins) FROM table_name_82 WHERE draws > 1 AND losses < 4 AND conceded = 20 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_42 (home VARCHAR, record VARCHAR)
### Question:
Name the home with record of 33-18-9
### Answer:
SELECT home FROM table_name_42 WHERE record = "33-18-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_54 (trainer VARCHAR, time VARCHAR, jockey VARCHAR)
### Question:
What Trainer had Jockey William Jenkins in a race with Time of 1:44.80?
### Answer:
SELECT trainer FROM table_name_54 WHERE time = "1:44.80" AND jockey = "william jenkins" |
Below is an context that describes a sql 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 (tracks VARCHAR, catalog VARCHAR, length VARCHAR)
### Question:
What is the Tracks of the release in Catalog BA 222304 with a Length of 2:57?
### Answer:
SELECT tracks FROM table_name_20 WHERE catalog = "ba 222304" AND length = "2:57" |
Below is an context that describes a sql 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 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
### Question:
Name the fewest gold for tanzania with bronze less than 0
### Answer:
SELECT MIN(gold) FROM table_name_54 WHERE nation = "tanzania" AND 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_160510_1 (province VARCHAR, hanja VARCHAR)
### Question:
The hanja 朔州 is for what province?
### Answer:
SELECT province FROM table_160510_1 WHERE hanja = "朔州" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_3 (method VARCHAR, time VARCHAR, record VARCHAR)
### Question:
What is the method when the time is 5:00, and the record is 14–6–1?
### Answer:
SELECT method FROM table_name_3 WHERE time = "5:00" AND record = "14–6–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_53 (team VARCHAR, year INTEGER)
### Question:
Which team is from earlier than 1994?
### Answer:
SELECT team FROM table_name_53 WHERE year < 1994 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_82 (weekly_rank VARCHAR, official_ratings__millions_ VARCHAR)
### Question:
Which Weekly Rank has an Official ratings (millions) of 11.58?
### Answer:
SELECT weekly_rank FROM table_name_82 WHERE official_ratings__millions_ = 11.58 |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the 2005 value with 1r in 2013 and q2 in 2011?
### Answer:
SELECT 2005 FROM table_name_73 WHERE 2013 = "1r" AND 2011 = "q2" |
Below is an context that describes a sql 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 (average VARCHAR, matches VARCHAR, wickets VARCHAR, career VARCHAR)
### Question:
Name the total number of average for wickets more than 537, career of 1899/00-1925/26 and matches less than 211
### Answer:
SELECT COUNT(average) FROM table_name_21 WHERE wickets > 537 AND career = "1899/00-1925/26" AND matches < 211 |
Below is an context that describes a sql 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 (year VARCHAR, laps INTEGER)
### Question:
Which year did Tony Bettenhausen complete more than 200 laps?
### Answer:
SELECT year FROM table_name_43 WHERE laps > 200 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_41 (format VARCHAR, catalog VARCHAR, date VARCHAR)
### Question:
What is the Format of the September 22, 2008 release with Catalog number RTRADCD491?
### Answer:
SELECT format FROM table_name_41 WHERE catalog = "rtradcd491" AND date = "september 22, 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_44 (year INTEGER, result VARCHAR)
### Question:
What is the latest year they were nominated?
### Answer:
SELECT MAX(year) FROM table_name_44 WHERE result = "nominated" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_86 (attendance INTEGER, date VARCHAR)
### Question:
What was the Attendance on September 26, 1971?
### Answer:
SELECT AVG(attendance) FROM table_name_86 WHERE date = "september 26, 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_name_82 (background VARCHAR, hometown VARCHAR)
### Question:
What is the Background of the Candidate from Barrington, Illinois?
### Answer:
SELECT background FROM table_name_82 WHERE hometown = "barrington, illinois" |
Below is an context that describes a sql 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 (score VARCHAR, year VARCHAR)
### Question:
What was the winning score in 2000?
### Answer:
SELECT score FROM table_name_30 WHERE year = 2000 |
Below is an context that describes a sql 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 (ends INTEGER, transfer_fee VARCHAR)
### Question:
When the transfer fee is £8.5m, what is the total ends?
### Answer:
SELECT SUM(ends) FROM table_name_70 WHERE transfer_fee = "£8.5m" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19810459_1 (result VARCHAR, background VARCHAR)
### Question:
What was the result for the contestant whose background was as a business major?
### Answer:
SELECT result FROM table_19810459_1 WHERE background = "Business 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 airports (country VARCHAR, elevation INTEGER)
### Question:
Find the average elevation of all airports for each country.
### Answer:
SELECT AVG(elevation), country FROM airports GROUP BY country |
Below is an context that describes a sql 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 (final VARCHAR, lane VARCHAR)
### Question:
What were the final time for the swimmer on lane 4?
### Answer:
SELECT final FROM table_name_1 WHERE lane = 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 trip (bike_id VARCHAR, zip_code VARCHAR)
### Question:
Which bike traveled the most often in zip code 94002?
### Answer:
SELECT bike_id FROM trip WHERE zip_code = 94002 GROUP BY bike_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_91 (home_team VARCHAR, attendance VARCHAR)
### Question:
Which Home team had attendance 160?
### Answer:
SELECT home_team FROM table_name_91 WHERE attendance = "160" |
Below is an context that describes a sql 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 (crowd INTEGER, away_team VARCHAR)
### Question:
When the away team is Geelong, what is the highest crowd count?
### Answer:
SELECT MAX(crowd) FROM table_name_86 WHERE away_team = "geelong" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1057262_2 (south_australia VARCHAR, victoria VARCHAR)
### Question:
what's the total number of south australia with victoria value of 2173
### Answer:
SELECT COUNT(south_australia) FROM table_1057262_2 WHERE victoria = 2173 |
Below is an context that describes a sql 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 (postposition VARCHAR, noun_root__meaning_ VARCHAR)
### Question:
What is Postposition, when Noun Root (Meaning) is "mshobl- (parent)"?
### Answer:
SELECT postposition FROM table_name_75 WHERE noun_root__meaning_ = "mshobl- (parent)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18676973_3 (most_recent_cyclist VARCHAR, rank VARCHAR)
### Question:
When 12 is the rank who is the most recent cyclist?
### Answer:
SELECT most_recent_cyclist FROM table_18676973_3 WHERE rank = "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_32 (pick VARCHAR, round VARCHAR, player VARCHAR, nationality VARCHAR, draft VARCHAR)
### Question:
What is the total pick number of player curt bennett from canada with a draft before 1976 and a round less than 2?
### Answer:
SELECT COUNT(pick) FROM table_name_32 WHERE nationality = "canada" AND draft < 1976 AND player = "curt bennett" AND round < 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_48 (snatch VARCHAR, total__kg_ VARCHAR, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR)
### Question:
How many people have a Clean & jerk smaller than 142.5, a Bodyweight smaller than 55.58, and a Total (kg) larger than 210?
### Answer:
SELECT COUNT(snatch) FROM table_name_48 WHERE clean_ & _jerk < 142.5 AND bodyweight < 55.58 AND total__kg_ > 210 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_86 (label VARCHAR, region VARCHAR, catalog VARCHAR)
### Question:
What label is associated with the United Kingdom and the chem036 catalog?
### Answer:
SELECT label FROM table_name_86 WHERE region = "united kingdom" AND catalog = "chem036" |
Below is an context that describes a sql 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 (attendance VARCHAR, date VARCHAR)
### Question:
What is the attandance figure on October 7, 1990?
### Answer:
SELECT attendance FROM table_name_23 WHERE date = "october 7, 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 country (Id VARCHAR)
### Question:
How many countries are there in total?
### Answer:
SELECT COUNT(*) FROM country |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26173063_2 (orthodoxy VARCHAR, × VARCHAR)
### Question:
What is orthodoxy when x is wehdat?
### Answer:
SELECT orthodoxy FROM table_26173063_2 WHERE × = "wehdat" |
Below is an context that describes a sql 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 (attendance VARCHAR, opponent VARCHAR)
### Question:
What attendance has Washington redskins as the opponent?
### Answer:
SELECT attendance FROM table_name_89 WHERE opponent = "washington redskins" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23449363_1 (round VARCHAR, new_entries_this_round VARCHAR)
### Question:
Which round had 24 new entries?
### Answer:
SELECT round FROM table_23449363_1 WHERE new_entries_this_round = "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 singer (citizenship VARCHAR)
### Question:
What is the most common singer citizenship ?
### Answer:
SELECT citizenship FROM singer GROUP BY citizenship 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_92 (date VARCHAR, game VARCHAR)
### Question:
What was the date of game 4?
### Answer:
SELECT date FROM table_name_92 WHERE game = 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_228973_11 (written_by VARCHAR, original_air_date VARCHAR)
### Question:
The episode which originally aired on December 17, 2004 was written by whom?
### Answer:
SELECT written_by FROM table_228973_11 WHERE original_air_date = "December 17, 2004" |
Below is an context that describes a sql 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 (school VARCHAR, hometown VARCHAR)
### Question:
Which school has a hometown of winter park, FL?
### Answer:
SELECT school FROM table_name_68 WHERE hometown = "winter park, fl" |
Below is an context that describes a sql 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 (outcome VARCHAR, opponent VARCHAR)
### Question:
Name the outcome for opponent of michaëlla krajicek eleni daniilidou
### Answer:
SELECT outcome FROM table_name_98 WHERE opponent = "michaëlla krajicek eleni daniilidou" |
Below is an context that describes a sql 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 (assists VARCHAR, pims VARCHAR, goals VARCHAR, points VARCHAR)
### Question:
What is the total number of assists of the player with 0 goals, more than 1 points, and more than 0 pims?
### Answer:
SELECT COUNT(assists) FROM table_name_85 WHERE goals = 0 AND points > 1 AND pims > 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_17102076_5 (high_rebounds VARCHAR, game VARCHAR)
### Question:
Name the high rebounds for game 11
### Answer:
SELECT high_rebounds FROM table_17102076_5 WHERE game = 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_29285076_2 (location VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
### Question:
Where was the race with Luke Ellery as fastest lap and Wayne Boyd as winning driver?
### Answer:
SELECT location FROM table_29285076_2 WHERE fastest_lap = "Luke Ellery" AND winning_driver = "Wayne Boyd" |
Below is an context that describes a sql 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 (home_team VARCHAR, result VARCHAR)
### Question:
WHAT IS THE HOME TEAM, RESULT 99-112?
### Answer:
SELECT home_team FROM table_name_21 WHERE result = "99-112" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23346303_4 (rebounds VARCHAR, player VARCHAR)
### Question:
How many rebounds did crystal ayers have?
### Answer:
SELECT COUNT(rebounds) FROM table_23346303_4 WHERE player = "Crystal Ayers" |
Below is an context that describes a sql 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 (air_date VARCHAR, winner VARCHAR, challenge VARCHAR)
### Question:
What air date has a red winner and an emergency braking challenge?
### Answer:
SELECT air_date FROM table_name_39 WHERE winner = "red" AND challenge = "emergency braking" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_49 (Id VARCHAR)
### Question:
What 2009 has 18.5% as the 2007?
### Answer:
SELECT 2009 FROM table_name_49 WHERE 2007 = "18.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_15 (time VARCHAR, rider VARCHAR)
### Question:
What time has jules croft as the rider?
### Answer:
SELECT time FROM table_name_15 WHERE rider = "jules croft" |
Below is an context that describes a sql 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 (country_territory VARCHAR, mr_gay_international VARCHAR)
### Question:
In what Country/Territory did Jason Keatly win Mr. Gay Internatnional?
### Answer:
SELECT country_territory FROM table_name_89 WHERE mr_gay_international = "jason keatly" |
Below is an context that describes a sql 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 (away VARCHAR, club VARCHAR)
### Question:
What is NK Rijeka's away score?
### Answer:
SELECT away FROM table_name_75 WHERE club = "nk rijeka" |
Below is an context that describes a sql 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 (examples VARCHAR, australian VARCHAR)
### Question:
Which Examples has Australian of əm?
### Answer:
SELECT examples FROM table_name_10 WHERE australian = "əm" |
Below is an context that describes a sql 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 (game VARCHAR, rams_points VARCHAR)
### Question:
In what Game did Rams Points equal 0?
### Answer:
SELECT game FROM table_name_82 WHERE rams_points = 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_65 (price VARCHAR, sampling_rate VARCHAR)
### Question:
How much is a product with a Sampling Rate of 12-bit 40khz?
### Answer:
SELECT price FROM table_name_65 WHERE sampling_rate = "12-bit 40khz" |
Below is an context that describes a sql 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 (result VARCHAR, champions VARCHAR, year VARCHAR, runners_up VARCHAR)
### Question:
What is the result for the champions jeonju kcc egis with runners-up seoul samsung thunders after 2007?
### Answer:
SELECT result FROM table_name_39 WHERE year > 2007 AND runners_up = "seoul samsung thunders" AND champions = "jeonju kcc egis" |
Below is an context that describes a sql 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 (record VARCHAR, high_rebounds VARCHAR)
### Question:
What is the Record when the high rebounds was Antonio Davis (9)?
### Answer:
SELECT record FROM table_name_5 WHERE high_rebounds = "antonio davis (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_57 (average VARCHAR, band VARCHAR)
### Question:
Which Average has a Band of f?
### Answer:
SELECT average FROM table_name_57 WHERE band = "f" |
Below is an context that describes a sql 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 (album VARCHAR, year INTEGER)
### Question:
What Album has a Year that's larger than 2001?
### Answer:
SELECT album FROM table_name_39 WHERE year > 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_14 (year_of_recording INTEGER, conductor VARCHAR)
### Question:
What is the year that a record was recorded with Libor Pesek as conductor?
### Answer:
SELECT SUM(year_of_recording) FROM table_name_14 WHERE conductor = "libor pesek" |
Below is an context that describes a sql 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 (agency VARCHAR, birthday VARCHAR)
### Question:
What's the agency of the member born on 1998.11.09?
### Answer:
SELECT agency FROM table_name_32 WHERE birthday = "1998.11.09" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2361788_1 (regular_season VARCHAR, year VARCHAR)
### Question:
Name the number of regular season for 2007
### Answer:
SELECT COUNT(regular_season) FROM table_2361788_1 WHERE year = 2007 |
Below is an context that describes a sql 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 (average INTEGER, yards VARCHAR)
### Question:
What is the sum of average values for 23 yards?
### Answer:
SELECT SUM(average) FROM table_name_5 WHERE yards = 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_50 (score VARCHAR, to_par VARCHAR, player VARCHAR)
### Question:
What is the Score of Stewart Cink with a To par of +4?
### Answer:
SELECT score FROM table_name_50 WHERE to_par = "+4" AND player = "stewart cink" |
Below is an context that describes a sql 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 (position VARCHAR, class VARCHAR)
### Question:
Which position has a sophomore class?
### Answer:
SELECT position FROM table_name_31 WHERE class = "sophomore" |
Below is an context that describes a sql 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 (tone VARCHAR, standard_thai VARCHAR)
### Question:
Which tone has a Standard Thai at ปลา?
### Answer:
SELECT tone FROM table_name_65 WHERE standard_thai = "ปลา" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_18 (ansi_code INTEGER, land___sqmi__ VARCHAR, township VARCHAR, longitude VARCHAR, geo_id VARCHAR)
### Question:
What is the smallest ANSI code for adler township when Longitude is more than -101.333926, GEO ID is less than 3806700900, and Land ( sqmi ) is more than 35.84?
### Answer:
SELECT MIN(ansi_code) FROM table_name_18 WHERE longitude > -101.333926 AND geo_id < 3806700900 AND township = "adler" AND land___sqmi__ > 35.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_name_62 (jump_2 VARCHAR, jump_3 VARCHAR)
### Question:
What is the Jump 2 of the person that has a Jump 3 of 7.77?
### Answer:
SELECT jump_2 FROM table_name_62 WHERE jump_3 = "7.77" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE airports (city VARCHAR)
### Question:
List the cities which have more than one airport and number of airports.
### Answer:
SELECT city, COUNT(*) FROM airports GROUP BY city 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_16381914_1 (enrollment VARCHAR, founded VARCHAR)
### Question:
What was the enrollment of the school founded in 1846?
### Answer:
SELECT enrollment FROM table_16381914_1 WHERE founded = 1846 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1404984_1 (network VARCHAR, virtual_channel VARCHAR)
### Question:
What network is virtual channel 9.1 linked to?
### Answer:
SELECT network FROM table_1404984_1 WHERE virtual_channel = "9.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_15 (region VARCHAR, format VARCHAR, label VARCHAR)
### Question:
Which region has the format CD and label MCA?
### Answer:
SELECT region FROM table_name_15 WHERE format = "cd" AND label = "mca" |
Below is an context that describes a sql 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 (date VARCHAR, first_prize VARCHAR)
### Question:
When was the game that had a first prize of $161,480?
### Answer:
SELECT date FROM table_name_64 WHERE first_prize = "$161,480" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12340907_1 (population INTEGER, police_officers VARCHAR)
### Question:
If the number of police officers is 94, what is the lowest population number?
### Answer:
SELECT MIN(population) FROM table_12340907_1 WHERE police_officers = 94 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19810459_1 (original_team VARCHAR, result VARCHAR)
### Question:
What team was the contestant who finished in 10th place originally on?
### Answer:
SELECT original_team FROM table_19810459_1 WHERE result = "10th place" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23730973_5 (rating VARCHAR, viewers__millions_ VARCHAR)
### Question:
What was the rating/share for 18-49 for the episode that had 5.90 million viewers?
### Answer:
SELECT rating / SHARE(18 - 49) FROM table_23730973_5 WHERE viewers__millions_ = "5.90" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2102714_1 (episode VARCHAR, viewers__in_millions_ VARCHAR)
### Question:
What episode had 9.7 million viewers?
### Answer:
SELECT episode FROM table_2102714_1 WHERE viewers__in_millions_ = "9.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_64 (league VARCHAR, year VARCHAR)
### Question:
What is the League with a Year that is 1990/91?
### Answer:
SELECT league FROM table_name_64 WHERE year = "1990/91" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1342338_5 (first_elected VARCHAR, incumbent VARCHAR)
### Question:
What year was incumbent Claude Fuller first elected?
### Answer:
SELECT first_elected FROM table_1342338_5 WHERE incumbent = "Claude Fuller" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE HOST (Nationality VARCHAR)
### Question:
Show the most common nationality of hosts.
### Answer:
SELECT Nationality FROM HOST GROUP BY Nationality 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_80 (ends VARCHAR, transfer_fee VARCHAR)
### Question:
What is the total number of ends when the transfer fee was dkk 14m?
### Answer:
SELECT COUNT(ends) FROM table_name_80 WHERE transfer_fee = "dkk 14m" |
Below is an context that describes a sql 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 (pick__number INTEGER, reg_gp VARCHAR, rd__number VARCHAR, player VARCHAR)
### Question:
What is the highest Pick number that had a road number that was less than 6, featured Bob Dailey as a player, and which had a Reg GP bigger than 257?
### Answer:
SELECT MAX(pick__number) FROM table_name_43 WHERE rd__number < 6 AND player = "bob dailey" AND reg_gp > 257 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2668243_17 (candidates VARCHAR, district VARCHAR)
### Question:
Name the candidates for new york 21
### Answer:
SELECT candidates FROM table_2668243_17 WHERE district = "New York 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_77 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
### Question:
When was outgoing manager Zoltán Varga appointed?
### Answer:
SELECT date_of_appointment FROM table_name_77 WHERE outgoing_manager = "zoltán varga" |
Below is an context that describes a sql 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 (local_name VARCHAR, dates_aired VARCHAR)
### Question:
What is the local name for the episodes that aired in 1981?
### Answer:
SELECT local_name FROM table_name_28 WHERE dates_aired = "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_53 (episode VARCHAR, segment_d VARCHAR)
### Question:
How many episodes have a segment d that is goalie masks (part 2)?
### Answer:
SELECT COUNT(episode) FROM table_name_53 WHERE segment_d = "goalie masks (part 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_28138035_26 (mens_singles VARCHAR, womens_singles VARCHAR)
### Question:
Who won the mens singles when lau sui fei won the womens singles?
### Answer:
SELECT mens_singles FROM table_28138035_26 WHERE womens_singles = "Lau Sui Fei" |
Below is an context that describes a sql 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 (elevation_msl VARCHAR, housing__2007_ VARCHAR)
### Question:
What is the elevation of the city with a number of 91,385 Housing dwellings in 2007?
### Answer:
SELECT elevation_msl FROM table_name_71 WHERE housing__2007_ = "91,385" |
Below is an context that describes a sql 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 (class_aA VARCHAR, class_a VARCHAR, school_year VARCHAR)
### Question:
Name the class AA with class A of rule and school year of 1995-96
### Answer:
SELECT class_aA FROM table_name_52 WHERE class_a = "rule" AND school_year = "1995-96" |
Below is an context that describes a sql 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 (try_bonus VARCHAR, points_for VARCHAR)
### Question:
For a team with 332 points for, what was the try bonus?
### Answer:
SELECT try_bonus FROM table_name_16 WHERE points_for = "332" |
Below is an context that describes a sql 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 (attendance INTEGER, home_team VARCHAR)
### Question:
What is the lowest Attendance, when Home Team is "Welling United"?
### Answer:
SELECT MIN(attendance) FROM table_name_26 WHERE home_team = "welling united" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.