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_99 (ncbi_accession_number__mrna_protein_ VARCHAR, protein_identity VARCHAR)
### Question:
What NCBI Accession Number (mRNA/Protein) has a Protein Identity of 69%?
### Answer:
SELECT ncbi_accession_number__mrna_protein_ FROM table_name_99 WHERE protein_identity = "69%" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_47 (power VARCHAR, fuel_system VARCHAR, displacement VARCHAR)
### Question:
How much power does the fuel injection system have with a displacement of 1991cc?
### Answer:
SELECT power FROM table_name_47 WHERE fuel_system = "fuel injection" AND displacement = "1991cc" |
Below is an context that describes a sql 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 (time VARCHAR, method VARCHAR, opponent VARCHAR)
### Question:
How long is the ko (punch) fight against scott smith?
### Answer:
SELECT time FROM table_name_78 WHERE method = "ko (punch)" AND opponent = "scott smith" |
Below is an context that describes a sql 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 (losses INTEGER, byes INTEGER)
### Question:
What were the losses when the byes were less than 0?
### Answer:
SELECT MIN(losses) FROM table_name_41 WHERE byes < 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_46 (status VARCHAR, venue VARCHAR)
### Question:
Name the Status of Venue of sydney sports ground , sydney?
### Answer:
SELECT status FROM table_name_46 WHERE venue = "sydney sports ground , sydney" |
Below is an context that describes a sql 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 (affiliation VARCHAR, owned_since VARCHAR, channel___tv___rf__ VARCHAR)
### Question:
What affiliation has an owned since larger than 1991, and also has a channel (tv/rf) of 42?
### Answer:
SELECT affiliation FROM table_name_58 WHERE owned_since > 1991 AND channel___tv___rf__ = "42" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the 2008 result when 2012 and 2005 are both QF?
### Answer:
SELECT 2008 FROM table_name_67 WHERE 2012 = "qf" AND 2005 = "qf" |
Below is an context that describes a sql 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 (time VARCHAR, rider VARCHAR)
### Question:
What is the time for Alan Oversby?
### Answer:
SELECT time FROM table_name_94 WHERE rider = "alan oversby" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14253123_1 (area_sq_mi__km_2____rank_ VARCHAR, county_seat VARCHAR)
### Question:
When Vincennes is the county seat what is the area sq mi (km 2 ) (rank) ?
### Answer:
SELECT area_sq_mi__km_2____rank_ FROM table_14253123_1 WHERE county_seat = "Vincennes" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24418525_1 (power_kw VARCHAR, coverage VARCHAR)
### Question:
How much power covers dumaguete central visayas region?
### Answer:
SELECT COUNT(power_kw) FROM table_24418525_1 WHERE coverage = "Dumaguete Central Visayas Region" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1507806_1 (year VARCHAR, winning_score VARCHAR)
### Question:
WHAT YEAR WAS IT WHEN THE SCORE WAS 3 & 2?
### Answer:
SELECT year FROM table_1507806_1 WHERE winning_score = "3 & 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_5 (result VARCHAR, week VARCHAR, date VARCHAR)
### Question:
Week larger than 6, and a Date of november 22, 1959 had what result?
### Answer:
SELECT result FROM table_name_5 WHERE week > 6 AND date = "november 22, 1959" |
Below is an context that describes a sql 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 (place VARCHAR, score VARCHAR)
### Question:
What is the Place of the Player with a Score of 73-68-71=212?
### Answer:
SELECT place FROM table_name_16 WHERE score = 73 - 68 - 71 = 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 course (dept_name VARCHAR, credits INTEGER)
### Question:
Find the total credits of courses provided by different department.
### Answer:
SELECT SUM(credits), dept_name FROM course GROUP BY dept_name |
Below is an context that describes a sql 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 (song VARCHAR, televoting__votes_ VARCHAR)
### Question:
What song was 2nd (25,517) in televoting (votes)?
### Answer:
SELECT song FROM table_name_73 WHERE televoting__votes_ = "2nd (25,517)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23214833_1 (capacity VARCHAR, team_captain VARCHAR)
### Question:
How many people can attend games in the stadium of the team whose captain is Vasil Vasilev?
### Answer:
SELECT capacity FROM table_23214833_1 WHERE team_captain = "Vasil Vasilev" |
Below is an context that describes a sql 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 (round VARCHAR, position VARCHAR, player VARCHAR)
### Question:
What is the total number of Round, when Position is "D", and when Player is "Andrew Campbell"?
### Answer:
SELECT COUNT(round) FROM table_name_94 WHERE position = "d" AND player = "andrew campbell" |
Below is an context that describes a sql 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 (cancelable VARCHAR, attribute VARCHAR)
### Question:
For the attribute of onpointerout, what is the cancelable?
### Answer:
SELECT cancelable FROM table_name_75 WHERE attribute = "onpointerout" |
Below is an context that describes a sql 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 (pick__number VARCHAR, college_junior_club_team VARCHAR, position VARCHAR)
### Question:
What is the Pick # for the College/junior/club team of edmonton oil kings (wchl), and the position if defence?
### Answer:
SELECT pick__number FROM table_name_49 WHERE college_junior_club_team = "edmonton oil kings (wchl)" AND position = "defence" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1342233_24 (district VARCHAR, incumbent VARCHAR)
### Question:
Which district is jamie l. whitten from?
### Answer:
SELECT district FROM table_1342233_24 WHERE incumbent = "Jamie L. Whitten" |
Below is an context that describes a sql 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 (lifespan VARCHAR, imperial VARCHAR, nationality VARCHAR)
### Question:
what is the lifespan when the imperial height is 7ft 8 in and the nationality is fiji?
### Answer:
SELECT lifespan FROM table_name_56 WHERE imperial = "7ft 8 in" AND nationality = "fiji" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15887683_3 (content VARCHAR, package_option VARCHAR)
### Question:
How many different contents are offered by the Qualsiasi Tranne Sky HD package?
### Answer:
SELECT COUNT(content) FROM table_15887683_3 WHERE package_option = "qualsiasi tranne Sky HD" |
Below is an context that describes a sql 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 (name VARCHAR, term_ending VARCHAR, nationality VARCHAR)
### Question:
Term Ending smaller than 2018, and a Nationality of new zealand what is the name?
### Answer:
SELECT name FROM table_name_85 WHERE term_ending < 2018 AND nationality = "new zealand" |
Below is an context that describes a sql 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 (country VARCHAR, total VARCHAR)
### Question:
Which Country has a Total of 148?
### Answer:
SELECT country FROM table_name_74 WHERE total = 148 |
Below is an context that describes a sql 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 (batting_team VARCHAR, runs VARCHAR)
### Question:
Which batting team had 624 runs?
### Answer:
SELECT batting_team FROM table_name_84 WHERE runs = "624" |
Below is an context that describes a sql 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 (score VARCHAR, high_points VARCHAR)
### Question:
Which Score has High points of raymond felton (32)?
### Answer:
SELECT score FROM table_name_56 WHERE high_points = "raymond felton (32)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25737761_3 (writer VARCHAR, director VARCHAR)
### Question:
Who directed the episode directed by colin teague?
### Answer:
SELECT writer FROM table_25737761_3 WHERE director = "Colin Teague" |
Below is an context that describes a sql 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 (network VARCHAR, local_name VARCHAR)
### Question:
Which Network has a Local name of moj tata je bolji od tvog tate?
### Answer:
SELECT network FROM table_name_56 WHERE local_name = "moj tata je bolji od tvog tate" |
Below is an context that describes a sql 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 (week INTEGER, date VARCHAR)
### Question:
Which Week is on sunday november 28?
### Answer:
SELECT MIN(week) FROM table_name_32 WHERE date = "sunday november 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_38 (player VARCHAR, nationality VARCHAR, college_junior_club_team__league_ VARCHAR)
### Question:
Which player is from the United States, and played for the Bowling Green Falcons (CCHA) as their College/Junior/Club Team (League)?
### Answer:
SELECT player FROM table_name_38 WHERE nationality = "united states" AND college_junior_club_team__league_ = "bowling green falcons (ccha)" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is 2006 has a 2007 of 3r?
### Answer:
SELECT 2006 FROM table_name_48 WHERE 2007 = "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_18 (location VARCHAR, event VARCHAR)
### Question:
Where was the UFC 154 match held?
### Answer:
SELECT location FROM table_name_18 WHERE event = "ufc 154" |
Below is an context that describes a sql 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 (location VARCHAR, round VARCHAR, opponent VARCHAR)
### Question:
Where was the fight located that lasted 1 round against luiz claudio das dores?
### Answer:
SELECT location FROM table_name_77 WHERE round = "1" AND opponent = "luiz claudio das dores" |
Below is an context that describes a sql 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 (motor VARCHAR, class VARCHAR)
### Question:
Which motor's class was bs 1910?
### Answer:
SELECT motor FROM table_name_84 WHERE class = "bs 1910" |
Below is an context that describes a sql 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 (core__number INTEGER, part_number_opn_ VARCHAR, tdp__w_ VARCHAR)
### Question:
What is the sum of core# with a part number of osa242cep5au and TDP greater than 82.1?
### Answer:
SELECT SUM(core__number) FROM table_name_80 WHERE part_number_opn_ = "osa242cep5au" AND tdp__w_ > 82.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_79 (gold VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR)
### Question:
How many golds for teams ranking below 7 with 3 bronze and less than 5 total medals?
### Answer:
SELECT COUNT(gold) FROM table_name_79 WHERE bronze = 3 AND rank > 7 AND total < 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_73 (province VARCHAR, largest_city VARCHAR)
### Question:
What province has the largest city of Birjand?
### Answer:
SELECT province FROM table_name_73 WHERE largest_city = "birjand" |
Below is an context that describes a sql 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 (rank VARCHAR, points VARCHAR, nation VARCHAR, sp VARCHAR, fs VARCHAR)
### Question:
What is the rank for more than 120.44 points in East Germany and a SP+FS of 3?
### Answer:
SELECT COUNT(rank) FROM table_name_21 WHERE points > 120.44 AND nation = "east germany" AND sp + fs = 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_27764201_2 (game_site VARCHAR, opponent VARCHAR)
### Question:
How many times did the Centurions play the Rhein Fire?
### Answer:
SELECT COUNT(game_site) FROM table_27764201_2 WHERE opponent = "Rhein Fire" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE classroom (building VARCHAR, capacity INTEGER)
### Question:
Find the number of rooms with more than 50 capacity for each building.
### Answer:
SELECT COUNT(*), building FROM classroom WHERE capacity > 50 GROUP BY building |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1342218_35 (candidates VARCHAR, result VARCHAR, first_elected VARCHAR)
### Question:
What candidate was re-elected and was first elected in 1942?
### Answer:
SELECT candidates FROM table_1342218_35 WHERE result = "Re-elected" AND first_elected = 1942 |
Below is an context that describes a sql 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 (played VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, draw VARCHAR)
### Question:
When goals scored is more than 18, draw is less than 4, and goals conceded is more than 24, what is the sum of played?
### Answer:
SELECT COUNT(played) FROM table_name_33 WHERE goals_scored > 18 AND draw < 4 AND goals_conceded > 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_97 (week INTEGER, result VARCHAR, partner VARCHAR)
### Question:
In what Week resulting in the bottom 3 was Endre Jansen Partner?
### Answer:
SELECT MAX(week) FROM table_name_97 WHERE result = "bottom 3" AND partner = "endre jansen" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_15 (appointed_by VARCHAR, title VARCHAR, termination_of_mission VARCHAR)
### Question:
Who was appointed with the title of envoy extraordinary and minister plenipotentiary, and a termination of mission of march 16, 1905?
### Answer:
SELECT appointed_by FROM table_name_15 WHERE title = "envoy extraordinary and minister plenipotentiary" AND termination_of_mission = "march 16, 1905" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR)
### Question:
When esv ingolstadt is the oberbayern b what is the niederbayern?
### Answer:
SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = "ESV Ingolstadt" |
Below is an context that describes a sql 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 (last_win VARCHAR, club VARCHAR, wins VARCHAR)
### Question:
How many Last wins have a Club of mansfield town, and Wins smaller than 1?
### Answer:
SELECT COUNT(last_win) FROM table_name_42 WHERE club = "mansfield town" AND wins < 1 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_55 (stadium VARCHAR, final_score VARCHAR)
### Question:
At what stadium was the game with the final score of 9-23 played?
### Answer:
SELECT stadium FROM table_name_55 WHERE final_score = "9-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_67 (draws INTEGER, season INTEGER)
### Question:
What is the sum of Draws for a season later than 1964?
### Answer:
SELECT SUM(draws) FROM table_name_67 WHERE season > 1964 |
Below is an context that describes a sql 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 (country VARCHAR, money___$__ VARCHAR, score VARCHAR)
### Question:
What is the Country of the Player with a Score of 70-72-70-73=285 and Money ( $ ) of 5,500?
### Answer:
SELECT country FROM table_name_10 WHERE money___$__ = "5,500" AND score = 70 - 72 - 70 - 73 = 285 |
Below is an context that describes a sql 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 (sixth_place VARCHAR, fifth_place VARCHAR)
### Question:
Who was sixth place when Hugo Salazar was fifth place?
### Answer:
SELECT sixth_place FROM table_name_19 WHERE fifth_place = "hugo salazar" |
Below is an context that describes a sql 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 (game INTEGER, record VARCHAR)
### Question:
Name the least game for record of 1-0-2
### Answer:
SELECT MIN(game) FROM table_name_24 WHERE record = "1-0-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_81 (year VARCHAR, opening VARCHAR)
### Question:
Which year had e34 Nimzo-Indian defence is the opening?
### Answer:
SELECT year FROM table_name_81 WHERE opening = "e34 nimzo-indian defence" |
Below is an context that describes a sql 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 (engine VARCHAR, transmission VARCHAR, acceleration_0_100km_h__0_62mph_ VARCHAR)
### Question:
What is the engine when the transmission was 4-speed automatic, and acceleration 0–100km/h (0–62mph) was 10.4 s?
### Answer:
SELECT engine FROM table_name_12 WHERE transmission = "4-speed automatic" AND acceleration_0_100km_h__0_62mph_ = "10.4 s" |
Below is an context that describes a sql 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 (home VARCHAR, leading_scorer VARCHAR, score VARCHAR)
### Question:
Which Home has a Leading scorer of dajuan wagner (25) and a Score of 89–82? Question 3
### Answer:
SELECT home FROM table_name_79 WHERE leading_scorer = "dajuan wagner (25)" AND score = "89–82" |
Below is an context that describes a sql 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 (away_team VARCHAR, match_no VARCHAR)
### Question:
What is the away team of match 9?
### Answer:
SELECT away_team FROM table_name_52 WHERE match_no = "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_18274425_1 (directed_by VARCHAR, written_by VARCHAR)
### Question:
Who were the director/s of episodes written by Mike Daniels?
### Answer:
SELECT directed_by FROM table_18274425_1 WHERE written_by = "Mike Daniels" |
Below is an context that describes a sql 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 (skip VARCHAR, second VARCHAR)
### Question:
Which skip's second is Martin Hejhal?
### Answer:
SELECT skip FROM table_name_51 WHERE second = "martin hejhal" |
Below is an context that describes a sql 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 (music VARCHAR, team VARCHAR, points_jury VARCHAR)
### Question:
What is the Music for Team anna guzik & rafał kamiński that has a Points Jury of 24 (7,5,6,6)?
### Answer:
SELECT music FROM table_name_35 WHERE team = "anna guzik & rafał kamiński" AND points_jury = "24 (7,5,6,6)" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_61 (mpg_us_urban INTEGER, mpg_uk_urban__cold_ VARCHAR, mpg_uk_extra_urban VARCHAR)
### Question:
What's the mpg-US urban when the mpg-UK urban is 20 and the mpg-UK extra urban is less than 37.2?
### Answer:
SELECT SUM(mpg_us_urban) FROM table_name_61 WHERE mpg_uk_urban__cold_ = 20 AND mpg_uk_extra_urban < 37.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_23944006_4 (surface VARCHAR, opponents VARCHAR)
### Question:
Name the surface for cara black rennae stubbs
### Answer:
SELECT surface FROM table_23944006_4 WHERE opponents = "Cara Black Rennae Stubbs" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_34 (away_team VARCHAR, home_team VARCHAR)
### Question:
Who is the away side when collingwood is at home?
### Answer:
SELECT away_team FROM table_name_34 WHERE home_team = "collingwood" |
Below is an context that describes a sql 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 (opponent VARCHAR, record VARCHAR)
### Question:
What is the Opponent when the Record is 34–31–6?
### Answer:
SELECT opponent FROM table_name_3 WHERE record = "34–31–6" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21980_1 (january__°f_ VARCHAR, location VARCHAR)
### Question:
What were the January (°F) temperatures in the Corner Brook location?
### Answer:
SELECT january__°f_ FROM table_21980_1 WHERE location = "Corner Brook" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_99 (tournament VARCHAR)
### Question:
Name the 2009 for wta premier mandatory tournaments
### Answer:
SELECT 2009 FROM table_name_99 WHERE tournament = "wta premier mandatory tournaments" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR)
### Question:
What is Score, when Place is "T8", and when Player is "Orville Moody"?
### Answer:
SELECT score FROM table_name_40 WHERE place = "t8" AND player = "orville moody" |
Below is an context that describes a sql 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 (outcome VARCHAR, date VARCHAR)
### Question:
What was the outcome of the match on 01/07/2007?
### Answer:
SELECT outcome FROM table_name_39 WHERE date = "01/07/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_90 (name___generation VARCHAR, architecture_version VARCHAR, model VARCHAR)
### Question:
What is the name of the architecture version of the MIPS-III 64-bit, and model 2b?
### Answer:
SELECT name___generation FROM table_name_90 WHERE architecture_version = "mips-iii 64-bit" AND model = "2b" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19925114_1 (directed_by VARCHAR, no_in_series VARCHAR)
### Question:
How many episodes had the series number of 38?
### Answer:
SELECT COUNT(directed_by) FROM table_19925114_1 WHERE no_in_series = 38 |
Below is an context that describes a sql 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 (date VARCHAR, record VARCHAR)
### Question:
What is the Date of the game with a Record of 2-3?
### Answer:
SELECT date FROM table_name_86 WHERE record = "2-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_222771_1 (numeric_code VARCHAR, alpha_3_code VARCHAR)
### Question:
What is the number reference for LIE?
### Answer:
SELECT numeric_code FROM table_222771_1 WHERE alpha_3_code = "LIE" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_40 (gdp_per_capita__us$_ VARCHAR, gdp__billion_us$_ VARCHAR)
### Question:
What is the per-capita GDP of the country with an overall GDP of 80.955?
### Answer:
SELECT gdp_per_capita__us$_ FROM table_name_40 WHERE gdp__billion_us$_ = "80.955" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17186229_4 (opponent VARCHAR, record VARCHAR)
### Question:
Name the total number of opponent of record 9-2
### Answer:
SELECT COUNT(opponent) FROM table_17186229_4 WHERE record = "9-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_20745706_1 (score VARCHAR, date VARCHAR)
### Question:
What was the score on February 8, 1992?
### Answer:
SELECT score FROM table_20745706_1 WHERE date = "February 8, 1992" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, a_winning_car VARCHAR)
### Question:
Name the b winning car for #88 team mitsubishi 88 mitsubishi starion
### Answer:
SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26686908_2 (city___state VARCHAR, circuit VARCHAR)
### Question:
Which city and state hosted the adelaide street circuit?
### Answer:
SELECT city___state FROM table_26686908_2 WHERE circuit = "Adelaide Street circuit" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_96 (numbers__quantity_ordered_ VARCHAR, make__model VARCHAR, fuel_propulsion VARCHAR, year VARCHAR)
### Question:
Which Numbers (Quantity Ordered) have a Fuel Propulsion of cng, and a Year smaller than 2008, and a Make/ Model of nabi 40-lfw?
### Answer:
SELECT numbers__quantity_ordered_ FROM table_name_96 WHERE fuel_propulsion = "cng" AND year < 2008 AND make__model = "nabi 40-lfw" |
Below is an context that describes a sql 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 (player VARCHAR, place VARCHAR, score VARCHAR)
### Question:
Who is the player with a t8 place and a 74-74-76-77=301 score?
### Answer:
SELECT player FROM table_name_16 WHERE place = "t8" AND score = 74 - 74 - 76 - 77 = 301 |
Below is an context that describes a sql 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 (accreditation_type VARCHAR, company_name VARCHAR)
### Question:
What is the accreditation type of Vodacom Group PTY LTD (Vodafone group)?
### Answer:
SELECT accreditation_type FROM table_name_22 WHERE company_name = "vodacom group pty ltd (vodafone group)" |
Below is an context that describes a sql 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 (wins VARCHAR, points VARCHAR, class VARCHAR)
### Question:
How many wins for the team with points less than 6 and a 350cc class?
### Answer:
SELECT wins FROM table_name_35 WHERE points < 6 AND class = "350cc" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_99 (method VARCHAR, date_of_execution VARCHAR, name VARCHAR)
### Question:
In what way was Kewaubis executed on December 27, 1827?
### Answer:
SELECT method FROM table_name_99 WHERE date_of_execution = "december 27, 1827" AND name = "kewaubis" |
Below is an context that describes a sql 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 (birth VARCHAR, name VARCHAR)
### Question:
When was anne of lorraine born?
### Answer:
SELECT birth FROM table_name_91 WHERE name = "anne of lorraine" |
Below is an context that describes a sql 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 (_number___county VARCHAR, location VARCHAR)
### Question:
What county is Fountain City?
### Answer:
SELECT _number___county FROM table_name_8 WHERE location = "fountain city" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341884_19 (candidates VARCHAR, result VARCHAR, party VARCHAR)
### Question:
What candidates were in the election when a republican was re-elected?
### Answer:
SELECT candidates FROM table_1341884_19 WHERE result = "Re-elected" AND party = "Republican" |
Below is an context that describes a sql 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 (event VARCHAR, total VARCHAR)
### Question:
What event is defending champion the total?
### Answer:
SELECT event FROM table_name_4 WHERE total = "defending champion" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_34 (res VARCHAR, opponent VARCHAR)
### Question:
Which of the Res., has Ryan Scheepe as an opponent?
### Answer:
SELECT res FROM table_name_34 WHERE opponent = "ryan scheepe" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_45 (tries_for VARCHAR, try_bonus VARCHAR)
### Question:
How many tries did the club with a try bonus of correct as of 2 June 2009 have?
### Answer:
SELECT tries_for FROM table_name_45 WHERE try_bonus = "correct as of 2 june 2009" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_56 (prize_fund___us INTEGER, owgr_pts VARCHAR, dates VARCHAR)
### Question:
What is the average Prize fund ( US$ ), when OWGR pts is greater than 20, and when Dates is Nov 6-9?
### Answer:
SELECT AVG(prize_fund___us) AS $__ FROM table_name_56 WHERE owgr_pts > 20 AND dates = "nov 6-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_6 (partner VARCHAR, championship VARCHAR, score VARCHAR)
### Question:
Who was the partner at the Australian Open, Melbourne when the score was 2–6, 7–5, 6–2, 4–6, 3–6?
### Answer:
SELECT partner FROM table_name_6 WHERE championship = "australian open, melbourne" AND score = "2–6, 7–5, 6–2, 4–6, 3–6" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_19 (int INTEGER, rating VARCHAR, yards VARCHAR)
### Question:
How many Ints have a Rating smaller than 87, and Yards larger than 4?
### Answer:
SELECT AVG(int) FROM table_name_19 WHERE rating < 87 AND yards > 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_91 (bronze INTEGER, rank INTEGER)
### Question:
What is the lowest number of bronze medals for teams ranked below 13?
### Answer:
SELECT MIN(bronze) FROM table_name_91 WHERE rank > 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_27132791_3 (position VARCHAR, college VARCHAR)
### Question:
If the college is Vanderbilt, what is the position?
### Answer:
SELECT position FROM table_27132791_3 WHERE college = "Vanderbilt" |
Below is an context that describes a sql 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 (nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)
### Question:
which NHL team has a College/Junior/Club Team (League) of shattuck-saint mary's school (midget major aaa)?
### Answer:
SELECT nhl_team FROM table_name_63 WHERE college_junior_club_team__league_ = "shattuck-saint mary's school (midget major aaa)" |
Below is an context that describes a sql 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 (score INTEGER, to_par VARCHAR, country VARCHAR)
### Question:
What is the low score for TO par +2 in japan?
### Answer:
SELECT MIN(score) FROM table_name_5 WHERE to_par = "+2" AND country = "japan" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_99 (laps INTEGER, driver VARCHAR, grid VARCHAR)
### Question:
what is the laps when the driver is tony rolt and the grid is less than 10?
### Answer:
SELECT SUM(laps) FROM table_name_99 WHERE driver = "tony rolt" AND grid < 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_64 (against INTEGER, status VARCHAR)
### Question:
What is the average against for a test match?
### Answer:
SELECT AVG(against) FROM table_name_64 WHERE status = "test match" |
Below is an context that describes a sql 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 (crowd INTEGER, home_team VARCHAR)
### Question:
Which Crowd has a Home team of richmond?
### Answer:
SELECT SUM(crowd) FROM table_name_14 WHERE home_team = "richmond" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_51 (rank VARCHAR, class VARCHAR, year VARCHAR)
### Question:
What was the rank of the 1983 team in the 250cc class?
### Answer:
SELECT rank FROM table_name_51 WHERE class = "250cc" AND year = 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_52 (first_elected INTEGER, district VARCHAR)
### Question:
Which First elected has a District of illinois 3?
### Answer:
SELECT MAX(first_elected) FROM table_name_52 WHERE district = "illinois 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_2850912_8 (position VARCHAR, nhl_team VARCHAR, player VARCHAR)
### Question:
how many parts does detroit red wings person urban nordin play
### Answer:
SELECT COUNT(position) FROM table_2850912_8 WHERE nhl_team = "Detroit Red Wings" AND player = "Urban Nordin" |
Below is an context that describes a sql 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 (away_team VARCHAR, home_team VARCHAR)
### Question:
What is the away side score when footscray is the home side?
### Answer:
SELECT away_team AS score FROM table_name_38 WHERE home_team = "footscray" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.