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_58 (country VARCHAR, player VARCHAR)
### Question:
What was the country for Sam Snead?
### Answer:
SELECT country FROM table_name_58 WHERE player = "sam snead" |
Below is an context that describes a sql 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 (rarotongan VARCHAR, tahitian VARCHAR)
### Question:
What kind of Rarotongan has a Tahitian of /metua/?
### Answer:
SELECT rarotongan FROM table_name_15 WHERE tahitian = "/metua/" |
Below is an context that describes a sql 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 (nation___athlete_s_ VARCHAR, sport VARCHAR, record VARCHAR)
### Question:
What is the Nation - athlete(s), when the Sport is luge - men's singles, and when the Record is, "track"?
### Answer:
SELECT nation___athlete_s_ FROM table_name_12 WHERE sport = "luge - men's singles" AND record = "track" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR)
### Question:
On what Date was the Record 9–6–4?
### Answer:
SELECT date FROM table_name_62 WHERE record = "9–6–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_87 (steals VARCHAR, rebounds VARCHAR)
### Question:
Who was the leader in Steals when Travis Watson (9) was the leader in Rebounds?
### Answer:
SELECT steals FROM table_name_87 WHERE rebounds = "travis watson (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_50 (strain VARCHAR, genes VARCHAR)
### Question:
Which strain has 1,312 genes?
### Answer:
SELECT strain FROM table_name_50 WHERE genes = "1,312" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22457674_1 (master_recording VARCHAR, artist VARCHAR)
### Question:
Name the master recording for europe
### Answer:
SELECT master_recording FROM table_22457674_1 WHERE artist = "Europe" |
Below is an context that describes a sql 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 (money___ INTEGER, player VARCHAR)
### Question:
How much money did the player Ed Oliver win?
### Answer:
SELECT SUM(money___) AS $__ FROM table_name_74 WHERE player = "ed oliver" |
Below is an context that describes a sql 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 (win_percentage VARCHAR, lost VARCHAR, drew VARCHAR)
### Question:
What is the Win percentage where there were 5 lost and 0 is drew?
### Answer:
SELECT win_percentage FROM table_name_62 WHERE lost = 5 AND drew = 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_79 (linkedin VARCHAR, site VARCHAR, myspace VARCHAR)
### Question:
How many linkedin have Facebook as the site, with a myspace less than 64?
### Answer:
SELECT COUNT(linkedin) FROM table_name_79 WHERE site = "facebook" AND myspace < 64 |
Below is an context that describes a sql 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 (title VARCHAR, leading_lady VARCHAR)
### Question:
Which title had Muriel Evans as leading lady?
### Answer:
SELECT title FROM table_name_28 WHERE leading_lady = "muriel evans" |
Below is an context that describes a sql 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 (title VARCHAR, production_num VARCHAR)
### Question:
With 4645 as the production number what was the title?
### Answer:
SELECT title FROM table_name_4 WHERE production_num = 4645 |
Below is an context that describes a sql 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 (tie_no VARCHAR, home_team VARCHAR)
### Question:
What was the Tie no when Manchester United was the home team?
### Answer:
SELECT tie_no FROM table_name_51 WHERE home_team = "manchester united" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE competition (YEAR VARCHAR, Competition_type VARCHAR)
### Question:
What are the distinct years in which the competitions type is not "Tournament"?
### Answer:
SELECT DISTINCT YEAR FROM competition WHERE Competition_type <> "Tournament" |
Below is an context that describes a sql 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 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR)
### Question:
What is the lowest draw that has less than 4 wins, 14 losses, and against more than 1836?
### Answer:
SELECT MIN(draws) FROM table_name_4 WHERE wins < 4 AND losses = 14 AND against > 1836 |
Below is an context that describes a sql 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 (years VARCHAR, nationality VARCHAR, goals VARCHAR)
### Question:
Name the years for spain with 215 goals
### Answer:
SELECT years FROM table_name_31 WHERE nationality = "spain" AND goals = 215 |
Below is an context that describes a sql 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 (assumed_office INTEGER, name VARCHAR)
### Question:
Tell me the loewst assume office for madeleine bordallo
### Answer:
SELECT MIN(assumed_office) FROM table_name_60 WHERE name = "madeleine bordallo" |
Below is an context that describes a sql 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 INTEGER, score_in_the_final VARCHAR)
### Question:
How many Dates have a Score in the final of 6–4, 6–2?
### Answer:
SELECT SUM(date) FROM table_name_92 WHERE score_in_the_final = "6–4, 6–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_83 (team VARCHAR, laps VARCHAR, co_drivers VARCHAR)
### Question:
Name the team with laps less than 315 and co-drivers of david brabham franck lagorce?
### Answer:
SELECT team FROM table_name_83 WHERE laps < 315 AND co_drivers = "david brabham franck lagorce" |
Below is an context that describes a sql 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 (name VARCHAR, term_expires VARCHAR, appointing_governor VARCHAR)
### Question:
Who has a term that expires on December 31, 2020 and Terry Branstad for an appointing governor?
### Answer:
SELECT name FROM table_name_33 WHERE term_expires = "december 31, 2020" AND appointing_governor = "terry branstad" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR)
### Question:
Find products with max page size as "A4" or pages per minute color smaller than 5.
### Answer:
SELECT product FROM product WHERE max_page_size = "A4" OR pages_per_minute_color < 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_71 (result VARCHAR, date VARCHAR)
### Question:
Name the Result on october 15, 1995?
### Answer:
SELECT result FROM table_name_71 WHERE date = "october 15, 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_75 (home_team VARCHAR, away_team VARCHAR)
### Question:
What was the score for the away team at Collingwood?
### Answer:
SELECT home_team AS score FROM table_name_75 WHERE away_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_26 (club VARCHAR, position VARCHAR, wins VARCHAR, goals_against VARCHAR)
### Question:
What Club has 13 wins, goals against less than 48, and a position of 4?
### Answer:
SELECT club FROM table_name_26 WHERE wins = 13 AND goals_against < 48 AND position = 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_28 (staterooms INTEGER, guests INTEGER)
### Question:
What is the number of staterooms when guests was larger than 210?
### Answer:
SELECT AVG(staterooms) FROM table_name_28 WHERE guests > 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_54 (départment__or_collectivity_ VARCHAR, since VARCHAR, président VARCHAR)
### Question:
Which department has Guy-Dominique Kennel as president since 2008?
### Answer:
SELECT départment__or_collectivity_ FROM table_name_54 WHERE since = 2008 AND président = "guy-dominique kennel" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_30120633_1 (civil_parish VARCHAR, townland VARCHAR)
### Question:
What is Ballymurphy North's civil parish?
### Answer:
SELECT civil_parish FROM table_30120633_1 WHERE townland = "Ballymurphy North" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE products (price INTEGER)
### Question:
Find all information of all the products with a price between $60 and $120.
### Answer:
SELECT * FROM products WHERE price BETWEEN 60 AND 120 |
Below is an context that describes a sql 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 (builder VARCHAR, country VARCHAR, location VARCHAR)
### Question:
What is Builder, when Country is "United Kingdom", and when Location is "Chatham, Kent"?
### Answer:
SELECT builder FROM table_name_35 WHERE country = "united kingdom" AND location = "chatham, kent" |
Below is an context that describes a sql 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 (inscription VARCHAR, identification VARCHAR)
### Question:
What is the inscription with John Vanbrugh listed as the identification?
### Answer:
SELECT inscription FROM table_name_26 WHERE identification = "john vanbrugh" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23429629_4 (place_came VARCHAR, artist VARCHAR)
### Question:
What was the final place came for the performance of Erlend Bratland?
### Answer:
SELECT place_came FROM table_23429629_4 WHERE artist = "Erlend Bratland" |
Below is an context that describes a sql 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 (round VARCHAR, margin VARCHAR)
### Question:
which round has a margin of 178?
### Answer:
SELECT round FROM table_name_24 WHERE margin = "178" |
Below is an context that describes a sql 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 (position INTEGER, goals_against VARCHAR, goals_for VARCHAR)
### Question:
What is the lowest position number when goals against was 59, and a goals for is smaller than 24?
### Answer:
SELECT MIN(position) FROM table_name_92 WHERE goals_against = 59 AND goals_for < 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_11 (platform VARCHAR, system VARCHAR)
### Question:
What is the name of the platform used for various computers and consoles?
### Answer:
SELECT platform FROM table_name_11 WHERE system = "various computers and consoles" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18600760_18 (ansi_code INTEGER, land___sqmi__ VARCHAR)
### Question:
What is the ANSI code of the township where the area is 35.737 square miles?
### Answer:
SELECT MIN(ansi_code) FROM table_18600760_18 WHERE land___sqmi__ = "35.737" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16387653_1 (crowd INTEGER, away_team VARCHAR)
### Question:
What was the maximum crowd size against St Kilda?
### Answer:
SELECT MAX(crowd) FROM table_16387653_1 WHERE away_team = "St Kilda" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1855342_5 (background INTEGER, ability_to_compromise VARCHAR)
### Question:
When the ability to compromise is 13, what is background?
### Answer:
SELECT MAX(background) FROM table_1855342_5 WHERE ability_to_compromise = 13 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_76 (segment_a VARCHAR, segment_d VARCHAR)
### Question:
What segment A is associated with a Segment D of manual motorcycle transmissions?
### Answer:
SELECT segment_a FROM table_name_76 WHERE segment_d = "manual motorcycle transmissions" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_13665809_2 (uu_usu_score VARCHAR, winner VARCHAR)
### Question:
what are all the uu-usu score with winner is #5 brigham young (2–0)
### Answer:
SELECT uu_usu_score FROM table_13665809_2 WHERE winner = "#5 Brigham Young (2–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_41 (year_born__age_ VARCHAR, current_club VARCHAR, position VARCHAR)
### Question:
Which Year born (Age) has a Current Club of sporting al riyadi beirut, and a Position of pf?
### Answer:
SELECT year_born__age_ FROM table_name_41 WHERE current_club = "sporting al riyadi beirut" AND position = "pf" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_9 (laps INTEGER, qual VARCHAR)
### Question:
How many laps did Duke Nelson complete when his qualifying time was 136.498?
### Answer:
SELECT MAX(laps) FROM table_name_9 WHERE qual = "136.498" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20866024_2 (model_type VARCHAR, model_designation VARCHAR)
### Question:
What model type has model designation 97500?
### Answer:
SELECT model_type FROM table_20866024_2 WHERE model_designation = "97500" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_93 (venue VARCHAR, year VARCHAR, competition VARCHAR, event VARCHAR)
### Question:
what is the venue when the competition is asian games, the event is 4x400 m relay and the year is 2002?
### Answer:
SELECT venue FROM table_name_93 WHERE competition = "asian games" AND event = "4x400 m relay" AND 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 table_name_42 (attendance VARCHAR, rank__number VARCHAR)
### Question:
What was the attendance when they had a ranking of #4?
### Answer:
SELECT attendance FROM table_name_42 WHERE rank__number = "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_42 (best_film VARCHAR, best_supporting_actress VARCHAR)
### Question:
Which Best Film has a Best Supporting Actress of shamaine buencamino for niño?
### Answer:
SELECT best_film FROM table_name_42 WHERE best_supporting_actress = "shamaine buencamino for niñ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_4 (internet_explorer VARCHAR, opera VARCHAR, period VARCHAR)
### Question:
What internet explorer has 1.67% as the opera, with 2012 q1 as the period?
### Answer:
SELECT internet_explorer FROM table_name_4 WHERE opera = "1.67%" AND period = "2012 q1" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18505065_1 (table_points VARCHAR, difference VARCHAR)
### Question:
How many table points are listed for the deficit is +194?
### Answer:
SELECT COUNT(table_points) FROM table_18505065_1 WHERE difference = "+194" |
Below is an context that describes a sql 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 (wood VARCHAR, earth VARCHAR)
### Question:
Which wood has stabilizing earth?
### Answer:
SELECT wood FROM table_name_50 WHERE earth = "stabilizing" |
Below is an context that describes a sql 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 (record VARCHAR, week VARCHAR)
### Question:
What was the team record by Week 8?
### Answer:
SELECT record FROM table_name_60 WHERE week = "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_2221374_3 (production_code VARCHAR, no_in_season VARCHAR)
### Question:
What is the production code for episode 3 of the season?
### Answer:
SELECT production_code FROM table_2221374_3 WHERE no_in_season = 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_17085947_32 (swim__15km_ VARCHAR, athlete VARCHAR)
### Question:
What was the duration of Daniela Ryf's swimming stage?
### Answer:
SELECT swim__15km_ FROM table_17085947_32 WHERE athlete = "Daniela Ryf" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_25 (province VARCHAR, mountain_range VARCHAR)
### Question:
Which province includes Axel Heiberg Island?
### Answer:
SELECT province FROM table_name_25 WHERE mountain_range = "axel heiberg island" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11449590_2 (kickoff_ VARCHAR, a_ VARCHAR, opponent VARCHAR)
### Question:
Which kickoff has the opponent at new orleans saints?
### Answer:
SELECT kickoff_[a_] FROM table_11449590_2 WHERE opponent = "at New Orleans Saints" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19359427_6 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)
### Question:
What was Gary Megson's manner of departure?
### Answer:
SELECT manner_of_departure FROM table_19359427_6 WHERE outgoing_manager = "Gary Megson" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14975415_1 (director VARCHAR, english_title VARCHAR)
### Question:
Who is the director for diary for my loves?
### Answer:
SELECT director FROM table_14975415_1 WHERE english_title = "Diary for My Loves" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29743928_4 (games VARCHAR, years VARCHAR)
### Question:
When 2010 is the year what is the game?
### Answer:
SELECT games FROM table_29743928_4 WHERE years = "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_name_75 (away_team VARCHAR, venue VARCHAR)
### Question:
What was the away team's score at Western Oval?
### Answer:
SELECT away_team AS score FROM table_name_75 WHERE venue = "western oval" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_97 (played INTEGER, pd_per_game VARCHAR, loss VARCHAR)
### Question:
Which Played has a PD per game larger than 6.28, and a Loss smaller than 4?
### Answer:
SELECT MIN(played) FROM table_name_97 WHERE pd_per_game > 6.28 AND loss < 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_98 (release_date VARCHAR, developer_s_ VARCHAR)
### Question:
When did Masthead Studios release their game?
### Answer:
SELECT release_date FROM table_name_98 WHERE developer_s_ = "masthead studios" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2249087_1 (south_american_rank INTEGER, nation VARCHAR)
### Question:
Name the south american rank for venezuela
### Answer:
SELECT MIN(south_american_rank) FROM table_2249087_1 WHERE nation = "Venezuela" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_37 (Id VARCHAR)
### Question:
Which 2005 has a 1999 of 0–0?
### Answer:
SELECT 2005 FROM table_name_37 WHERE 1999 = "0–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_17 (result VARCHAR, attendance VARCHAR)
### Question:
What is the result of the game with 57,234 people in attendance?
### Answer:
SELECT result FROM table_name_17 WHERE attendance = "57,234" |
Below is an context that describes a sql 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 (week INTEGER, record VARCHAR)
### Question:
What is the value of the lowest Week with a Record of 2–9?
### Answer:
SELECT MIN(week) FROM table_name_46 WHERE record = "2–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_71 (player VARCHAR, college VARCHAR)
### Question:
Who is the Cincinnati College player?
### Answer:
SELECT player FROM table_name_71 WHERE college = "cincinnati" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15001957_1 (mixed_doubles VARCHAR, year VARCHAR)
### Question:
How many mixed doubles were won in 1996?
### Answer:
SELECT COUNT(mixed_doubles) FROM table_15001957_1 WHERE year = 1996 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_29 (total INTEGER, nation VARCHAR, bronze VARCHAR, gold VARCHAR)
### Question:
What was Italy's highest total when there were less than 4 bronze and 1 gold?
### Answer:
SELECT MAX(total) FROM table_name_29 WHERE bronze < 4 AND gold = 1 AND nation = "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_86 (college VARCHAR, pick VARCHAR)
### Question:
Which college's pick was 14?
### Answer:
SELECT college FROM table_name_86 WHERE pick = "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_29535057_4 (location VARCHAR, big_ten_team VARCHAR)
### Question:
Where did the games that had Wisconsin as big ten team take place?
### Answer:
SELECT location FROM table_29535057_4 WHERE big_ten_team = "Wisconsin" |
Below is an context that describes a sql 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, january VARCHAR, points VARCHAR)
### Question:
Which Score has a January larger than 21, and Points of 63?
### Answer:
SELECT score FROM table_name_18 WHERE january > 21 AND points = 63 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_20 (airport VARCHAR, country VARCHAR, icao VARCHAR)
### Question:
Which airport is in Saudi Arabia when the ICAO is oejn?
### Answer:
SELECT airport FROM table_name_20 WHERE country = "saudi arabia" AND icao = "oejn" |
Below is an context that describes a sql 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 (score VARCHAR, home_team VARCHAR)
### Question:
What is the final score of the game home team Bolton Wanderers played?
### Answer:
SELECT score FROM table_name_66 WHERE home_team = "bolton 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_name_84 (round VARCHAR, state VARCHAR)
### Question:
How many rounds were run in New South Wales?
### Answer:
SELECT COUNT(round) FROM table_name_84 WHERE state = "new south wales" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17758010_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
### Question:
How many original air dates have U.S. Views (millions) of 19.49?
### Answer:
SELECT COUNT(original_air_date) FROM table_17758010_2 WHERE us_viewers__millions_ = "19.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_21 (record VARCHAR, week VARCHAR, attendance VARCHAR)
### Question:
What was the record of the game after Week 6 with an attendance larger than 52,560?
### Answer:
SELECT record FROM table_name_21 WHERE week > 6 AND attendance > 52 OFFSET 560 |
Below is an context that describes a sql 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 (constituency VARCHAR, result VARCHAR, liberal_democrats VARCHAR)
### Question:
In what constituency was the result labour hold and Liberal democrat Elizabeth Newton won?
### Answer:
SELECT constituency FROM table_name_12 WHERE result = "labour hold" AND liberal_democrats = "elizabeth newton" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_160728_4 (network VARCHAR, station VARCHAR)
### Question:
What station on the network is tv3?
### Answer:
SELECT network FROM table_160728_4 WHERE station = "TV3" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29289372_1 (pop_density__per_km²_ VARCHAR, area__km²_ VARCHAR)
### Question:
When 82.74 is the area in kilometers squared what is the pop.density (per km2)?
### Answer:
SELECT pop_density__per_km²_ FROM table_29289372_1 WHERE area__km²_ = "82.74" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1357052_6 (distribution VARCHAR, rsbac VARCHAR)
### Question:
what's the dbeingtribution with rsbac being unknown
### Answer:
SELECT distribution FROM table_1357052_6 WHERE rsbac = "Unknown" |
Below is an context that describes a sql 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 (years_of_operation VARCHAR, location VARCHAR)
### Question:
During what Years of Operation was the location prospect 33 prospect ave?
### Answer:
SELECT years_of_operation FROM table_name_35 WHERE location = "prospect 33 prospect ave" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12526990_1 (gayndah INTEGER, perry VARCHAR)
### Question:
What is the gayndah when perry is 304?
### Answer:
SELECT MAX(gayndah) FROM table_12526990_1 WHERE perry = 304 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14345690_2 (entered VARCHAR, celebrity VARCHAR)
### Question:
When did Darren Day enter?
### Answer:
SELECT entered FROM table_14345690_2 WHERE celebrity = "Darren Day" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_23937219_2 (original_air_date VARCHAR, written_by VARCHAR, directed_by VARCHAR)
### Question:
Name the original air date for harry hannigan directed by adam weissman
### Answer:
SELECT original_air_date FROM table_23937219_2 WHERE written_by = "Harry Hannigan" AND directed_by = "Adam Weissman" |
Below is an context that describes a sql 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 (floor_exercise INTEGER, pommel_horse VARCHAR, parallel_bars VARCHAR)
### Question:
Name the least floor exercise for parallel bars more than 9.687 and pommel horse less than 8.45
### Answer:
SELECT MIN(floor_exercise) FROM table_name_58 WHERE pommel_horse < 8.45 AND parallel_bars > 9.687 |
Below is an context that describes a sql 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 (team_2 VARCHAR)
### Question:
What is the 2nd leg score for the match with a team 2 of Werder Bremen?
### Answer:
SELECT 2 AS nd_leg FROM table_name_48 WHERE team_2 = "werder bremen" |
Below is an context that describes a sql 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 (results¹ VARCHAR, city VARCHAR)
### Question:
What's the result of the game played in Belgrade?
### Answer:
SELECT results¹ FROM table_name_70 WHERE city = "belgrade" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR)
### Question:
In season 2007–08 who is the runner-up?
### Answer:
SELECT runner_up FROM table_25058269_1 WHERE season = "2007–08" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17157367_1 (model VARCHAR, method VARCHAR)
### Question:
what is the model where the method is ha?
### Answer:
SELECT model FROM table_17157367_1 WHERE method = "HA" |
Below is an context that describes a sql 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 (duration VARCHAR, test_flight VARCHAR)
### Question:
What it Duration, when Test Flight is Free Flight #3?
### Answer:
SELECT duration FROM table_name_79 WHERE test_flight = "free flight #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_20195922_3 (number_of_winning_tickets VARCHAR, prize__eur_ VARCHAR)
### Question:
What are the number of winning tickets that have 180.00 as the prize (eur)?
### Answer:
SELECT number_of_winning_tickets FROM table_20195922_3 WHERE prize__eur_ = "180.00" |
Below is an context that describes a sql 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 (record VARCHAR, date VARCHAR, home VARCHAR, score VARCHAR)
### Question:
What is the Record that has a Home of detroit red wings, and a Score of 1–2 on december 29?
### Answer:
SELECT record FROM table_name_23 WHERE home = "detroit red wings" AND score = "1–2" AND date = "december 29" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26736342_1 (no_in_series INTEGER, us_viewers__millions_ VARCHAR)
### Question:
What is the earliest episode that was watched by 1.32 million viewers?
### Answer:
SELECT MIN(no_in_series) FROM table_26736342_1 WHERE us_viewers__millions_ = "1.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_name_18 (score VARCHAR, away_team VARCHAR)
### Question:
What is Score, when Away Team is "Newcastle Benfield"?
### Answer:
SELECT score FROM table_name_18 WHERE away_team = "newcastle benfield" |
Below is an context that describes a sql 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 (attendance INTEGER, opponent VARCHAR)
### Question:
What was the lowest attendance was the opponent was chelsea?
### Answer:
SELECT MIN(attendance) FROM table_name_68 WHERE opponent = "chelsea" |
Below is an context that describes a sql 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 (hanyu_pinyin VARCHAR, area__km²_ VARCHAR)
### Question:
What is the Hanyu Pinyin with an area of 400?
### Answer:
SELECT hanyu_pinyin FROM table_name_94 WHERE area__km²_ = "400" |
Below is an context that describes a sql 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 (surface VARCHAR, score VARCHAR)
### Question:
On which surface was the score w/o?
### Answer:
SELECT surface FROM table_name_82 WHERE score = "w/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_87 (husband VARCHAR, image VARCHAR)
### Question:
Who is the husband of the image of renata of lorraine?
### Answer:
SELECT husband FROM table_name_87 WHERE image = "renata 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_36 (erp_w INTEGER, call_sign VARCHAR)
### Question:
Name the average ERP W and call sign of w237br
### Answer:
SELECT AVG(erp_w) FROM table_name_36 WHERE call_sign = "w237br" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24222929_4 (total_viewers_on_hallmark VARCHAR, title VARCHAR)
### Question:
Name the total viewers on hallmark for pilot
### Answer:
SELECT total_viewers_on_hallmark + 1 FROM table_24222929_4 WHERE title = "Pilot" |
Below is an context that describes a sql 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 (award VARCHAR, actor VARCHAR, year VARCHAR)
### Question:
What award did Forest Whitaker win in 1989?
### Answer:
SELECT award FROM table_name_54 WHERE actor = "forest whitaker" AND year = 1989 |
Below is an context that describes a sql 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 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR)
### Question:
Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no?
### Answer:
SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.