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_25595209_1 (sail_number VARCHAR, skipper VARCHAR)
### Question:
What is Matt Allen's sail number?
### Answer:
SELECT sail_number FROM table_25595209_1 WHERE skipper = "Matt Allen" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_76 (jianshu VARCHAR, qiangshu VARCHAR, total VARCHAR, athlete VARCHAR)
### Question:
What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66?
### Answer:
SELECT COUNT(jianshu) FROM table_name_76 WHERE total > 19.16 AND athlete = "nguyen huy thanh ( vie )" AND qiangshu > 9.66 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE publication (Publication_Date VARCHAR)
### Question:
What is the number of distinct publication dates?
### Answer:
SELECT COUNT(DISTINCT Publication_Date) FROM publication |
Below is an context that describes a sql 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 (points_diff VARCHAR, points_against VARCHAR)
### Question:
What is points diff when points against is 123?
### Answer:
SELECT points_diff FROM table_name_73 WHERE points_against = "123" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2140071_7 (external_link VARCHAR, premier_date VARCHAR)
### Question:
How many episodes have a premier date of july 24, 2006
### Answer:
SELECT COUNT(external_link) FROM table_2140071_7 WHERE premier_date = "July 24, 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_10 (sr_no INTEGER, builder VARCHAR, secr_no VARCHAR)
### Question:
What is Beyer Peacock's SR number with a SECR number of 769?
### Answer:
SELECT AVG(sr_no) FROM table_name_10 WHERE builder = "beyer peacock" AND secr_no = 769 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1449169_1 (common VARCHAR, area__km_2__ VARCHAR)
### Question:
Which common has an area (km2) of 103.02?
### Answer:
SELECT common FROM table_1449169_1 WHERE area__km_2__ = "103.02" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_60 (venue VARCHAR, away_team VARCHAR)
### Question:
What venue did melbourne play at as the away team?
### Answer:
SELECT venue FROM table_name_60 WHERE away_team = "melbourne" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_62 (outcome VARCHAR, partner VARCHAR)
### Question:
What was the outcome of the final with a partner of Brett Steven?
### Answer:
SELECT outcome FROM table_name_62 WHERE partner = "brett steven" |
Below is an context that describes 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 (CName VARCHAR, Days VARCHAR)
### Question:
Which courses are taught on days MTW?
### Answer:
SELECT CName FROM COURSE WHERE Days = "MTW" |
Below is an context that describes a sql 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 (political_party VARCHAR, name VARCHAR)
### Question:
Which Political Party has a Name of mehdi bej frashëri (2nd time)?
### Answer:
SELECT political_party FROM table_name_72 WHERE name = "mehdi bej frashëri (2nd time)" |
Below is an context that describes a sql 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 (opponent VARCHAR, tv_time VARCHAR)
### Question:
Which opponent had a bye for the TV Time?
### Answer:
SELECT opponent FROM table_name_96 WHERE tv_time = "bye" |
Below is an context that describes a sql 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 (winner VARCHAR, date VARCHAR)
### Question:
What is the Winner of the Event on September 26-30, 2012?
### Answer:
SELECT winner FROM table_name_82 WHERE date = "september 26-30, 2012" |
Below is an context that describes a sql 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 (language VARCHAR, film VARCHAR)
### Question:
What language is the film Marion Bridge?
### Answer:
SELECT language FROM table_name_46 WHERE film = "marion 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_name_11 (alliance__association VARCHAR, airline_holding VARCHAR)
### Question:
For airlines named Aeroflot Group, what is the alliance?
### Answer:
SELECT alliance__association FROM table_name_11 WHERE airline_holding = "aeroflot 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_14 (date VARCHAR, home_team VARCHAR)
### Question:
Name the Home team of tranmere rovers?
### Answer:
SELECT date FROM table_name_14 WHERE home_team = "tranmere rovers" |
Below is an context that describes a sql 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 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
### Question:
What was the score on January 14 when the Chicago Black Hawks were home against the New York Rangers?
### Answer:
SELECT score FROM table_name_18 WHERE home = "chicago black hawks" AND visitor = "new york rangers" AND date = "january 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_47 (date VARCHAR, attendance INTEGER)
### Question:
Name the date for attendance more than 20,268
### Answer:
SELECT date FROM table_name_47 WHERE attendance > 20 OFFSET 268 |
Below is an context that describes a sql 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 (laps INTEGER, driver VARCHAR)
### Question:
What are toranosuke takagi's average laps?
### Answer:
SELECT AVG(laps) FROM table_name_14 WHERE driver = "toranosuke takagi" |
Below is an context that describes a sql 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 (place VARCHAR, money___£__ VARCHAR, player VARCHAR)
### Question:
What is the place of player sergio garcía, who has £77,500?
### Answer:
SELECT place FROM table_name_45 WHERE money___£__ = "77,500" AND player = "sergio garcí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_name_66 (club VARCHAR, league_goals VARCHAR)
### Question:
Which Club has a League goals of 21?
### Answer:
SELECT club FROM table_name_66 WHERE league_goals = "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 (institutional_authority VARCHAR, launch_date VARCHAR)
### Question:
Name the institutional authority for launch date of october 12, 2004
### Answer:
SELECT institutional_authority FROM table_name_47 WHERE launch_date = "october 12, 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_22 (rank INTEGER, wickets INTEGER)
### Question:
What is the highest rank for less than 15 Wickets?
### Answer:
SELECT MAX(rank) FROM table_name_22 WHERE wickets < 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_16788123_5 (points VARCHAR, team VARCHAR)
### Question:
how many points scored by sportivo luqueño
### Answer:
SELECT COUNT(points) FROM table_16788123_5 WHERE team = "Sportivo Luqueño" |
Below is an context that describes a sql 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 (opponent_in_the_final VARCHAR, date VARCHAR)
### Question:
For the tournament played on September 25, 1995, who was the Finals opponent?
### Answer:
SELECT opponent_in_the_final FROM table_name_15 WHERE date = "september 25, 1995" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_95 (name VARCHAR, date VARCHAR)
### Question:
Which Name has a Date of 11 june 1940?
### Answer:
SELECT name FROM table_name_95 WHERE date = "11 june 1940" |
Below is an context that describes a sql 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 (sio_2 INTEGER, na_2_o VARCHAR, k_2_o VARCHAR, fe_2_o_3 VARCHAR)
### Question:
What is the highest SiO 2, when K 2 O is greater than 0.16, when Fe 2 O 3 is greater than 0.16, and when Na 2 O is less than 7.53?
### Answer:
SELECT MAX(sio_2) FROM table_name_50 WHERE k_2_o > 0.16 AND fe_2_o_3 > 0.16 AND na_2_o < 7.53 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_247955_2 (to_par VARCHAR, winning_score VARCHAR)
### Question:
What were the shots below par when the winning score was 67-64-63-71-66=331?
### Answer:
SELECT to_par FROM table_247955_2 WHERE winning_score = 67 - 64 - 63 - 71 - 66 = 331 |
Below is an context that describes a sql 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 (record VARCHAR, attendance VARCHAR)
### Question:
What was the team's record at the game attended by 30,452?
### Answer:
SELECT record FROM table_name_22 WHERE attendance = "30,452" |
Below is an context that describes a sql 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 (silver INTEGER, bronze VARCHAR)
### Question:
What is the silver medal count of the team that finished with 8 bronze medals?
### Answer:
SELECT SUM(silver) FROM table_name_41 WHERE bronze = 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_29302711_12 (country VARCHAR, points VARCHAR)
### Question:
how many countries had 21 points
### Answer:
SELECT COUNT(country) FROM table_29302711_12 WHERE points = 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_5 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
### Question:
What day was the margin of victory 1 stroke when the tournament was colonial national invitation?
### Answer:
SELECT date FROM table_name_5 WHERE margin_of_victory = "1 stroke" AND tournament = "colonial national invitation" |
Below is an context that describes a sql 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 (record VARCHAR, attendance VARCHAR)
### Question:
For the game with 26,236 attendance, what was the record?
### Answer:
SELECT record FROM table_name_81 WHERE attendance = "26,236" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27487712_1 (incumbent VARCHAR, elected VARCHAR)
### Question:
Who was the incumbent for the election in 1978?
### Answer:
SELECT incumbent FROM table_27487712_1 WHERE elected = 1978 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1876825_3 (production_code VARCHAR, no_in_season VARCHAR)
### Question:
What is the production code for episode 6 in the season?
### Answer:
SELECT production_code FROM table_1876825_3 WHERE no_in_season = 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_81 (_number_of_candidates INTEGER, general_election VARCHAR, result VARCHAR, _number_of_seats_won VARCHAR)
### Question:
What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections?
### Answer:
SELECT AVG(_number_of_candidates) FROM table_name_81 WHERE result = "liberal majority" AND _number_of_seats_won = 51 AND general_election > 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_84 (tonnage_grt INTEGER, nationality VARCHAR, ship VARCHAR)
### Question:
what is the least tonnage grt when the nationality is british and the ship is kidalton?
### Answer:
SELECT MIN(tonnage_grt) FROM table_name_84 WHERE nationality = "british" AND ship = "kidalton" |
Below is an context that describes a sql 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 (date_sent VARCHAR, constellation VARCHAR, designation_hd VARCHAR)
### Question:
What date sent has cygnus as a constellation, and hd 190360 as a designation HD?
### Answer:
SELECT date_sent FROM table_name_65 WHERE constellation = "cygnus" AND designation_hd = "hd 190360" |
Below is an context that describes a sql 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 (couple VARCHAR, number_of_dances VARCHAR, total VARCHAR, rank_by_average VARCHAR, average VARCHAR)
### Question:
Which Couple has a Rank by average larger than 3, and an Average larger than 16.5, and a Total smaller than 195, and a Number of dances larger than 3?
### Answer:
SELECT couple FROM table_name_20 WHERE rank_by_average > 3 AND average > 16.5 AND total < 195 AND number_of_dances > 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_24 (result VARCHAR, week VARCHAR)
### Question:
What is week 15's result?
### Answer:
SELECT result FROM table_name_24 WHERE week = 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_17650725_1 (total_transfers INTEGER, country VARCHAR)
### Question:
Name the least total transfers for romania
### Answer:
SELECT MIN(total_transfers) FROM table_17650725_1 WHERE country = "Romania" |
Below is an context that describes a sql 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 (games INTEGER, points_difference VARCHAR, points VARCHAR)
### Question:
Points difference of 18 - 33, and a Points smaller than 4 is the total of what sum of games?
### Answer:
SELECT SUM(games) FROM table_name_10 WHERE points_difference = "18 - 33" AND points < 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_67 (score VARCHAR, to_par VARCHAR, country VARCHAR)
### Question:
Which Score has a To par of +1 in sweden?
### Answer:
SELECT score FROM table_name_67 WHERE to_par = "+1" AND country = "sweden" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_57 (away_team VARCHAR, tie_no VARCHAR)
### Question:
Who is the away team when there are 15 ties?
### Answer:
SELECT away_team FROM table_name_57 WHERE tie_no = "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_54 (level VARCHAR, season INTEGER)
### Question:
What Level has a Season larger than 2010?
### Answer:
SELECT level FROM table_name_54 WHERE season > 2010 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21350934_2 (round VARCHAR, attendance VARCHAR)
### Question:
How many rounds have 6,150 as attendance?
### Answer:
SELECT round FROM table_21350934_2 WHERE attendance = "6,150" |
Below is an context that describes a sql 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 (fleet_series__quantity_ VARCHAR, builder VARCHAR, order_year VARCHAR)
### Question:
Which Fleet Series (Quantity) that has a Builder of mci, and an Order Year of 2002?
### Answer:
SELECT fleet_series__quantity_ FROM table_name_23 WHERE builder = "mci" AND order_year = "2002" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE mill (name VARCHAR, built_year VARCHAR, TYPE VARCHAR)
### Question:
What are the names and year of construction for the mills of 'Grondzeiler' type?
### Answer:
SELECT name, built_year FROM mill WHERE TYPE = 'Grondzeiler' |
Below is an context that describes a sql 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 (against INTEGER, date VARCHAR)
### Question:
Can you tell me the average Against thaylt has the Date of 23/03/2002?
### Answer:
SELECT AVG(against) FROM table_name_44 WHERE date = "23/03/2002" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22607062_1 (comptroller VARCHAR, ticket___office VARCHAR)
### Question:
Name the comptroller for office of prohibition
### Answer:
SELECT comptroller FROM table_22607062_1 WHERE ticket___office = "Prohibition" |
Below is an context that describes a sql 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 (events VARCHAR, tournament VARCHAR, top_25 VARCHAR)
### Question:
Tell me the total number of events for tournament of masters tournament and top 25 less than 6
### Answer:
SELECT COUNT(events) FROM table_name_32 WHERE tournament = "masters tournament" AND top_25 < 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_44 (athletes VARCHAR, rank VARCHAR)
### Question:
Which Athletes have a Rank of bronze?
### Answer:
SELECT athletes FROM table_name_44 WHERE rank = "bronze" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_69 (leagues_entering VARCHAR, clubs VARCHAR)
### Question:
What is the item for Leagues entering, when the value for Clubs is 8 → 4?
### Answer:
SELECT leagues_entering FROM table_name_69 WHERE clubs = "8 → 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_1601027_1 (headphone_model VARCHAR, driver_matched_db VARCHAR, us_msrp VARCHAR)
### Question:
Which headphone models have a driver-matched DB of 0.1 and a US MSRP of $49?
### Answer:
SELECT headphone_model FROM table_1601027_1 WHERE driver_matched_db = "0.1" AND us_msrp = "$49" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_7 (club_team VARCHAR, player VARCHAR, position VARCHAR, nationality VARCHAR)
### Question:
Which Club Team has a Position of (d), a Nationality of canada, and a Player of andrew macwilliam?
### Answer:
SELECT club_team FROM table_name_7 WHERE position = "(d)" AND nationality = "canada" AND player = "andrew macwilliam" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_7 (nation VARCHAR, silver VARCHAR, bronze VARCHAR)
### Question:
Which nation has the number of silver medals greater than 1, and bronze medals as 1?
### Answer:
SELECT nation FROM table_name_7 WHERE silver > 1 AND bronze = 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_96 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
### Question:
What is the nationality of the guard who plays at Utah?
### Answer:
SELECT nationality FROM table_name_96 WHERE position = "guard" AND school_club_team = "utah" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_221398_1 (pop_density___km²_ VARCHAR, number_in_map VARCHAR)
### Question:
How many prefectures have a population density of 16 people/kilometers squared?
### Answer:
SELECT COUNT(pop_density___km²_) FROM table_221398_1 WHERE number_in_map = "16" |
Below is an context that describes a sql 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 (lost INTEGER, draw INTEGER)
### Question:
How many losses have a draw greater than 0?
### Answer:
SELECT SUM(lost) FROM table_name_99 WHERE draw > 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_27 (aircraft VARCHAR, weapon_systems_officer VARCHAR)
### Question:
Which aircraft Weapon Systems Officer Capt Charles B. Debellevue belongs on?
### Answer:
SELECT aircraft FROM table_name_27 WHERE weapon_systems_officer = "capt charles b. debellevue" |
Below is an context that describes a sql 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 (result VARCHAR, date VARCHAR)
### Question:
What is Result, when Date is "December 12"?
### Answer:
SELECT result FROM table_name_70 WHERE date = "december 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_16 (name VARCHAR, left_office VARCHAR)
### Question:
What is the Left Office of cabinet secretary for culture and external affairs named?
### Answer:
SELECT name FROM table_name_16 WHERE left_office = "cabinet secretary for culture and external affairs" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16323766_3 (evening_gown VARCHAR, preliminary_average VARCHAR)
### Question:
What was the evening gown score for the one who had a preliminary average of 8.121 (8)?
### Answer:
SELECT evening_gown FROM table_16323766_3 WHERE preliminary_average = "8.121 (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_43 (heat INTEGER, time VARCHAR, lane VARCHAR)
### Question:
What is the average of all Heats of competitors with a Time of 59.11 and a lane higher than 3?
### Answer:
SELECT AVG(heat) FROM table_name_43 WHERE time = "59.11" AND lane > 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_11 (position VARCHAR, college_junior_club_team__league_ VARCHAR, round VARCHAR)
### Question:
Which Position has a College/Junior/Club Team (League) of estevan bruins (wchl), and a Round of 3?
### Answer:
SELECT position FROM table_name_11 WHERE college_junior_club_team__league_ = "estevan bruins (wchl)" 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_name_12 (result VARCHAR, opponent VARCHAR)
### Question:
what is the result when the opponent is at dallas cowboys?
### Answer:
SELECT result FROM table_name_12 WHERE opponent = "at dallas cowboys" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20803065_1 (state VARCHAR, senator VARCHAR)
### Question:
Which state does congressman jim demint represent?
### Answer:
SELECT state FROM table_20803065_1 WHERE senator = "Jim DeMint" |
Below is an context that describes a sql 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 (days VARCHAR, the_presenter VARCHAR, launch_date VARCHAR)
### Question:
Which days were presented by Andreas Mikroutsikos and were launched on March 10, 2003?
### Answer:
SELECT days FROM table_name_48 WHERE the_presenter = "andreas mikroutsikos" AND launch_date = "march 10, 2003" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_76 (guest VARCHAR, score__first_match_ VARCHAR)
### Question:
Who were the guest team wehn the match score was 3:0 (0:2)?
### Answer:
SELECT guest FROM table_name_76 WHERE score__first_match_ = "3:0 (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_70 (birthplace VARCHAR, ring_name VARCHAR)
### Question:
What is Birthplace, when Ring Name is Masunoyama Tomoharu?
### Answer:
SELECT birthplace FROM table_name_70 WHERE ring_name = "masunoyama tomoharu" |
Below is an context that describes a sql 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 (date_of_birth VARCHAR, club VARCHAR)
### Question:
What is the Date of Birth of the Player from the CSK VMF Moscow Club?
### Answer:
SELECT date_of_birth FROM table_name_50 WHERE club = "csk vmf moscow" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1099080_1 (condition VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
### Question:
What conditions had both prolonged bleeding times and prolonged partial thromboplastin times
### Answer:
SELECT condition FROM table_1099080_1 WHERE partial_thromboplastin_time = "Prolonged" AND bleeding_time = "Prolonged" |
Below is an context that describes a sql 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 (casualties VARCHAR, location VARCHAR)
### Question:
What were the casualties in the Baghlan location?
### Answer:
SELECT casualties FROM table_name_64 WHERE location = "baghlan" |
Below is an context that describes a sql 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 (televote_points VARCHAR, televotes VARCHAR)
### Question:
Who received 6,131 televotes?
### Answer:
SELECT televote_points FROM table_name_1 WHERE televotes = "6,131" |
Below is an context that describes a sql 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 (score VARCHAR, visitor VARCHAR)
### Question:
What score did the Green Bay Packers get as visitor?
### Answer:
SELECT score FROM table_name_8 WHERE visitor = "green bay packers" |
Below is an context that describes a sql 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 (mpeg_1 VARCHAR, realvideo VARCHAR)
### Question:
Tell me the MPEG-1 for real video of no
### Answer:
SELECT mpeg_1 FROM table_name_77 WHERE realvideo = "no" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16729930_11 (fsb VARCHAR, model_number VARCHAR)
### Question:
Name the fsb for atom z540
### Answer:
SELECT fsb FROM table_16729930_11 WHERE model_number = "Atom Z540" |
Below is an context that describes a sql 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 (league_goals VARCHAR, club VARCHAR)
### Question:
what was the total for the Wolverhampton Wanderers?
### Answer:
SELECT league_goals FROM table_name_61 WHERE club = "wolverhampton wanderers" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_171236_2 (official_name VARCHAR, area_km_2 VARCHAR)
### Question:
What's the official name of the place with an Area KM 2 of 295.07
### Answer:
SELECT official_name FROM table_171236_2 WHERE area_km_2 = "295.07" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21977704_1 (constructor VARCHAR, driver VARCHAR)
### Question:
Name the constructor for alberto ascari
### Answer:
SELECT constructor FROM table_21977704_1 WHERE driver = "Alberto Ascari" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_59 (december INTEGER, opponent VARCHAR, game VARCHAR)
### Question:
What is the sum for December against the vancouver canucks earlier than game 33?
### Answer:
SELECT SUM(december) FROM table_name_59 WHERE opponent = "vancouver canucks" AND game < 33 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_21530474_1 (model_no VARCHAR, chassis_code VARCHAR)
### Question:
Name the model number for usf46
### Answer:
SELECT model_no FROM table_21530474_1 WHERE chassis_code = "USF46" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11214772_2 (score VARCHAR, semi_finalist__number1 VARCHAR)
### Question:
List the scores of all games when Miami were listed as the first Semi finalist
### Answer:
SELECT score FROM table_11214772_2 WHERE semi_finalist__number1 = "Miami" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1672804_2 (region VARCHAR, name_of_city VARCHAR)
### Question:
What is the region where Iquitos is located?
### Answer:
SELECT region FROM table_1672804_2 WHERE name_of_city = "Iquitos" |
Below is an context that describes a sql 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 (Id VARCHAR)
### Question:
What is the 2011 with 1r in 2010?
### Answer:
SELECT 2011 FROM table_name_32 WHERE 2010 = "1r" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25042332_22 (tertiary__18_24_years_ VARCHAR, secondary__14_17_years_ VARCHAR)
### Question:
What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43?
### Answer:
SELECT tertiary__18_24_years_ FROM table_25042332_22 WHERE secondary__14_17_years_ = "71.43" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_7 (frequency VARCHAR, multiplier VARCHAR)
### Question:
Which Frequency has a Multiplier of 6×?
### Answer:
SELECT frequency FROM table_name_7 WHERE multiplier = "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_24837750_1 (date_in_service VARCHAR, county VARCHAR)
### Question:
When did the wind farm in Musselshell started service?
### Answer:
SELECT date_in_service FROM table_24837750_1 WHERE county = "Musselshell" |
Below is an context that describes a sql 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 (enemy_aircraft VARCHAR, soviet_unit VARCHAR, date__ddmmyyyy_ VARCHAR)
### Question:
What was the enemy aircraft on 14.09.1942, when the Soviet Unit was 437 iap?
### Answer:
SELECT enemy_aircraft FROM table_name_46 WHERE soviet_unit = "437 iap" AND date__ddmmyyyy_ = "14.09.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_94 (top_25 INTEGER, events VARCHAR, wins VARCHAR)
### Question:
What is the lowest Top-25 that has 3 Events and Wins greater than 0?
### Answer:
SELECT MIN(top_25) FROM table_name_94 WHERE events = 3 AND wins > 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_2731431_1 (col_location VARCHAR, location VARCHAR)
### Question:
What is the col location for the location of france / italy?
### Answer:
SELECT col_location FROM table_2731431_1 WHERE location = "France / Italy" |
Below is an context that describes a sql 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 (attendance INTEGER, home VARCHAR)
### Question:
What is the attendance when Pittsburgh is the home team?
### Answer:
SELECT AVG(attendance) FROM table_name_78 WHERE home = "pittsburgh" |
Below is an context that describes a sql 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 (to_par VARCHAR, place VARCHAR, player VARCHAR)
### Question:
Which To par has a Place of t4, and wayne grady is in?
### Answer:
SELECT to_par FROM table_name_87 WHERE place = "t4" AND player = "wayne grady" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1908049_1 (year VARCHAR, playoffs VARCHAR)
### Question:
what was the year where in the playoffs was champions
### Answer:
SELECT year FROM table_1908049_1 WHERE playoffs = "Champions" |
Below is an context that describes a sql 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 (high_rebounds VARCHAR, game VARCHAR)
### Question:
Who had the highest rebounds on game 5?
### Answer:
SELECT high_rebounds FROM table_name_33 WHERE game = 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_13012165_1 (year VARCHAR, maryland VARCHAR)
### Question:
In what year did Easton LL Easton play in Maryland?
### Answer:
SELECT COUNT(year) FROM table_13012165_1 WHERE maryland = "Easton LL Easton" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11964047_9 (leading_scorer VARCHAR, home VARCHAR)
### Question:
what's the leading scorer where home is sacramento kings
### Answer:
SELECT leading_scorer FROM table_11964047_9 WHERE home = "Sacramento Kings" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18788823_5 (position_in_table VARCHAR, date_of_vacancy VARCHAR)
### Question:
Which vacancy happened on 4 November 2008?
### Answer:
SELECT position_in_table FROM table_18788823_5 WHERE date_of_vacancy = "4 November 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_29163303_2 (partner VARCHAR, championship VARCHAR)
### Question:
Who was Bob Bryan's partner in the Championship where the result is US Open (2)?
### Answer:
SELECT partner FROM table_29163303_2 WHERE championship = "US Open (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_99 (Id VARCHAR)
### Question:
What 1978 has a 1976 of 62%?
### Answer:
SELECT 1978 FROM table_name_99 WHERE 1976 = "62%" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.