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_81 (total INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
### Question:
What is the least total that has fewer golds than 2, a higher rank than 4 and fewer bronzes than 1?
### Answer:
SELECT MIN(total) FROM table_name_81 WHERE gold < 2 AND rank = 4 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_28194879_1 (_number VARCHAR, production_code VARCHAR)
### Question:
What is the number in season of the episode whose production code is pabf05?
### Answer:
SELECT _number FROM table_28194879_1 WHERE production_code = "PABF05" |
Below is an context that describes a sql 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 (frequency VARCHAR, power__kw_ VARCHAR)
### Question:
What is the frequency where the power is 25kw?
### Answer:
SELECT frequency FROM table_name_10 WHERE power__kw_ = "25kw" |
Below is an context that describes a sql 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 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
### Question:
What is the highest amount of silver when gold is 1 and bronze larger than 0?
### Answer:
SELECT MAX(silver) FROM table_name_40 WHERE gold = 1 AND bronze > 0 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_16 (year VARCHAR, quarter_finalists VARCHAR, semi_finalists VARCHAR)
### Question:
Which Year has a Quarter-Finalists of £1,000, and Semi-Finalists of £1,500?
### Answer:
SELECT year FROM table_name_16 WHERE quarter_finalists = "£1,000" AND semi_finalists = "£1,500" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_49 (laps VARCHAR, qual VARCHAR)
### Question:
What was Len Sutton's total number of completed laps when his qualifying time was 142.653?
### Answer:
SELECT COUNT(laps) FROM table_name_49 WHERE qual = "142.653" |
Below is an context that describes a sql 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 (date VARCHAR, competition VARCHAR)
### Question:
What is the date of the 1986 FIFA World Cup?
### Answer:
SELECT date FROM table_name_19 WHERE competition = "1986 fifa world cup" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_83 (tie_no VARCHAR, score VARCHAR)
### Question:
How many ties occurred with a score of 2–2?
### Answer:
SELECT tie_no FROM table_name_83 WHERE score = "2–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_74 (events_won_by_kcl VARCHAR, year VARCHAR, winner VARCHAR, events_won_by_kclMS VARCHAR)
### Question:
Which event won by KCLMS in 2008 has KCLMS as the winner and less than 10 wins by KCL?
### Answer:
SELECT events_won_by_kcl FROM table_name_74 WHERE winner = "kclms" AND events_won_by_kclMS < 10 AND year = 2008 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_50 (team VARCHAR, crew_chief VARCHAR)
### Question:
Walter Giles is Crew Chief of what team?
### Answer:
SELECT team FROM table_name_50 WHERE crew_chief = "walter giles" |
Below is an context that describes a sql 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 (crowd VARCHAR, away_team VARCHAR)
### Question:
How many people in total have attended games where carlton played as away?
### Answer:
SELECT COUNT(crowd) FROM table_name_99 WHERE away_team = "carlton" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_159359_2 (end_date__last_night_ VARCHAR, season VARCHAR)
### Question:
When are end dates (last night) for the season of 1918?
### Answer:
SELECT end_date__last_night_ FROM table_159359_2 WHERE season = "1918" |
Below is an context that describes a sql 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 (method VARCHAR, opponent VARCHAR, record VARCHAR)
### Question:
Opponent of sergei bondarovich, and a Record of 2–0 had what method?
### Answer:
SELECT method FROM table_name_72 WHERE opponent = "sergei bondarovich" AND record = "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_28 (position VARCHAR, team VARCHAR)
### Question:
What is the position of the player from the denver broncos?
### Answer:
SELECT position FROM table_name_28 WHERE team = "denver broncos" |
Below is an context that describes a sql 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 (hometown VARCHAR, name VARCHAR)
### Question:
What hometown is Kyle love from?
### Answer:
SELECT hometown FROM table_name_47 WHERE name = "kyle love" |
Below is an context that describes a sql 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 (time_retired VARCHAR, grid VARCHAR)
### Question:
What is the time/retired for the driver with 16 grids?
### Answer:
SELECT time_retired FROM table_name_81 WHERE grid = 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_62 (final_score VARCHAR, date VARCHAR)
### Question:
what is the final score when the date is 2009-02-26?
### Answer:
SELECT final_score FROM table_name_62 WHERE date = "2009-02-26" |
Below is an context that describes a sql 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 (home_captain VARCHAR, venue VARCHAR)
### Question:
Who was the Home Captain at Sabina Park?
### Answer:
SELECT home_captain FROM table_name_65 WHERE venue = "sabina park" |
Below is an context that describes a sql 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 (contribution VARCHAR, album VARCHAR)
### Question:
For the album Board Up the House, what is the contribution?
### Answer:
SELECT contribution FROM table_name_49 WHERE album = "board up the house" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_53 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
### Question:
What was the date of appointment for javier aguirre's replacement?
### Answer:
SELECT date_of_appointment FROM table_name_53 WHERE outgoing_manager = "javier aguirre" |
Below is an context that describes a sql 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 (country VARCHAR, player VARCHAR)
### Question:
Billy Ray Brown plays for what country?
### Answer:
SELECT country FROM table_name_9 WHERE player = "billy ray brown" |
Below is an context that describes a sql 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 (rank INTEGER, total VARCHAR)
### Question:
Which average rank has a total of 16?
### Answer:
SELECT AVG(rank) FROM table_name_78 WHERE total = 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_22265261_1 (jockey VARCHAR, position VARCHAR)
### Question:
Who was the jockey in 7th position?
### Answer:
SELECT jockey FROM table_22265261_1 WHERE position = "7th" |
Below is an context that describes a sql 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 (season INTEGER, venue VARCHAR, second VARCHAR)
### Question:
What is the sum of season when the venue was donington park, and Brazil came in second?
### Answer:
SELECT SUM(season) FROM table_name_21 WHERE venue = "donington park" AND second = "brazil" |
Below is an context that describes a sql 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 (builder VARCHAR, works_number VARCHAR)
### Question:
Which Builder has a Works Number of 16272?
### Answer:
SELECT builder FROM table_name_86 WHERE works_number = "16272" |
Below is an context that describes a sql 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 (score VARCHAR, venue VARCHAR)
### Question:
What was the score in Kathmandu?
### Answer:
SELECT score FROM table_name_96 WHERE venue = "kathmandu" |
Below is an context that describes a sql 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 (rd_7 INTEGER, rd_8 VARCHAR, team VARCHAR, position VARCHAR, rd_6 VARCHAR)
### Question:
What is the sum of values of Rd 7 with RD 6 less than 48 and Rd 8 less than 4 for TC Motorsport in a position greater than 1?
### Answer:
SELECT SUM(rd_7) FROM table_name_97 WHERE position > 1 AND rd_6 < 48 AND team = "tc motorsport" AND rd_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_name_18 (record VARCHAR, home VARCHAR)
### Question:
What is the record of the team with a St. Louis home?
### Answer:
SELECT record FROM table_name_18 WHERE home = "st. louis" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2077192_2 (phonetic_greek VARCHAR, french VARCHAR)
### Question:
How many Phonetic Greek words translate to grenouille in French?
### Answer:
SELECT COUNT(phonetic_greek) FROM table_2077192_2 WHERE french = "grenouille" |
Below is an context that describes a sql 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 (date VARCHAR, record VARCHAR, decision VARCHAR, home VARCHAR)
### Question:
Decision of parent, and a Home of philadelphia, and a Record of 20–16–7 is on what date?
### Answer:
SELECT date FROM table_name_23 WHERE decision = "parent" AND home = "philadelphia" AND record = "20–16–7" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_68 (round INTEGER, college VARCHAR, overall VARCHAR)
### Question:
what is the round when the college is north carolina and the overall is more than 124?
### Answer:
SELECT SUM(round) FROM table_name_68 WHERE college = "north carolina" AND overall > 124 |
Below is an context that describes a sql 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 (week VARCHAR, attendance VARCHAR)
### Question:
Which week's game was attended by 54,015 people?
### Answer:
SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE phone (chip_model VARCHAR, screen_mode VARCHAR, Hardware_Model_name VARCHAR); CREATE TABLE chip_model (WiFi VARCHAR, Model_name VARCHAR); CREATE TABLE screen_mode (Type VARCHAR, Graphics_mode VARCHAR)
### Question:
What are the wifi and screen mode type of the hardware model named "LG-P760"?
### Answer:
SELECT T1.WiFi, T3.Type FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T2.Hardware_Model_name = "LG-P760" |
Below is an context that describes a sql 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 (races VARCHAR, chassis VARCHAR, engine VARCHAR)
### Question:
Which person drove a Reynard 2ki with a Honda Hrk engine?
### Answer:
SELECT races FROM table_name_95 WHERE chassis = "reynard 2ki" AND engine = "honda hrk" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24074130_5 (against VARCHAR, opponent VARCHAR)
### Question:
What is every entry for against with opponent Andreas Vinciguerra?
### Answer:
SELECT against FROM table_24074130_5 WHERE opponent = "Andreas Vinciguerra" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE bank (city VARCHAR, state VARCHAR, bname VARCHAR)
### Question:
Find the city and state of the bank branch named morningside.
### Answer:
SELECT city, state FROM bank WHERE bname = 'morningside' |
Below is an context that describes a sql 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 (richmond_ VARCHAR, staten_is VARCHAR)
### Question:
What was the candidate that got 1,019 votes for staten island?
### Answer:
SELECT 1953 FROM table_name_25 WHERE richmond_[staten_is] = "1,019" |
Below is an context that describes a sql 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 (original_west_end_cast VARCHAR, first_us_tour_cast VARCHAR)
### Question:
Who was the Original West End Cast when the irst US Tour Cast was lael van keuren?
### Answer:
SELECT original_west_end_cast FROM table_name_55 WHERE first_us_tour_cast = "lael van keuren" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_53 (drawn INTEGER, played INTEGER)
### Question:
What is the average number of games drawn among teams that played over 14 games?
### Answer:
SELECT AVG(drawn) FROM table_name_53 WHERE played > 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_20360535_2 (written_by VARCHAR, television_order VARCHAR)
### Question:
who wrote s01e06
### Answer:
SELECT written_by FROM table_20360535_2 WHERE television_order = "S01E06" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_30 (Id VARCHAR)
### Question:
When in 2008 that has a 2007 of f?
### Answer:
SELECT 2008 FROM table_name_30 WHERE 2007 = "f" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_38 (width VARCHAR, year VARCHAR)
### Question:
What is the width for the year of the 1970?
### Answer:
SELECT width FROM table_name_38 WHERE year = "1970" |
Below is an context that describes a sql 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 (rank INTEGER, name VARCHAR)
### Question:
Which Rank is the lowest one that has a Name of maribor cathedral?
### Answer:
SELECT MIN(rank) FROM table_name_27 WHERE name = "maribor cathedral" |
Below is an context that describes a sql 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 (country VARCHAR, athlete VARCHAR)
### Question:
Name the country for athlete of ziedonis zaļkalns
### Answer:
SELECT country FROM table_name_72 WHERE athlete = "ziedonis zaļkalns" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1341522_41 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)
### Question:
How many republican incumbents first elected in 1974?
### Answer:
SELECT COUNT(incumbent) FROM table_1341522_41 WHERE party = "Republican" AND first_elected = 1974 |
Below is an context that describes a sql 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 (position VARCHAR, nationality VARCHAR)
### Question:
What is the position of the player from the Ukraine?
### Answer:
SELECT position FROM table_name_1 WHERE nationality = "ukraine" |
Below is an context that describes a sql 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 (term_end VARCHAR, party VARCHAR)
### Question:
On what date or dates did the term with the Centre Party end?
### Answer:
SELECT term_end FROM table_name_85 WHERE party = "centre party" |
Below is an context that describes a sql 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 (label VARCHAR, catalogue VARCHAR)
### Question:
What is the label for catalogue 7200222?
### Answer:
SELECT label FROM table_name_77 WHERE catalogue = "7200222" |
Below is an context that describes a sql 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 (sport VARCHAR, date VARCHAR, winning_team VARCHAR)
### Question:
WHich port is on march 17, 2006 and has a Winning team of iowa state?
### Answer:
SELECT sport FROM table_name_70 WHERE date = "march 17, 2006" AND winning_team = "iowa state" |
Below is an context that describes a sql 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 (frequency VARCHAR, model_number VARCHAR)
### Question:
What is the Frequency for Model Number c7 1.0?
### Answer:
SELECT frequency FROM table_name_54 WHERE model_number = "c7 1.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 (tries_against VARCHAR, lost VARCHAR, club VARCHAR)
### Question:
What is the Tries against when lost shows 12 for pontycymmer rfc?
### Answer:
SELECT tries_against FROM table_name_79 WHERE lost = "12" AND club = "pontycymmer rfc" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_16741821_9 (opponents VARCHAR, against VARCHAR)
### Question:
Who are all the opponents of Slovakia?
### Answer:
SELECT opponents FROM table_16741821_9 WHERE against = "Slovakia" |
Below is an context that describes a sql 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 (county VARCHAR, mascot VARCHAR)
### Question:
What county has a school mascot of the Pioneers?
### Answer:
SELECT county FROM table_name_71 WHERE mascot = "pioneers" |
Below is an context that describes a sql 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 (date VARCHAR, record VARCHAR)
### Question:
On what date was their record 46-39?
### Answer:
SELECT date FROM table_name_17 WHERE record = "46-39" |
Below is an context that describes a sql 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 (record VARCHAR, method VARCHAR)
### Question:
What is the record for the Ko (head kick) method?
### Answer:
SELECT record FROM table_name_24 WHERE method = "ko (head kick)" |
Below is an context that describes a sql 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 (league VARCHAR, home VARCHAR)
### Question:
WHAT IS THE LEAGUE WITH HOME 1-1?
### Answer:
SELECT league FROM table_name_63 WHERE home = "1-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_16323766_3 (evening_gown VARCHAR, interview VARCHAR)
### Question:
What was the evening gown score for the woman who scored 7.600 (9) in her interview?
### Answer:
SELECT evening_gown FROM table_16323766_3 WHERE interview = "7.600 (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_31 (winner VARCHAR, finalist VARCHAR)
### Question:
Who was the winner when the finalist was fsv frankfurt?
### Answer:
SELECT winner FROM table_name_31 WHERE finalist = "fsv frankfurt" |
Below is an context that describes a sql 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 (event VARCHAR, round VARCHAR, time VARCHAR)
### Question:
What event ended in 3:02 of round 1?
### Answer:
SELECT event FROM table_name_92 WHERE round = 1 AND time = "3: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_70 (tournament VARCHAR, location VARCHAR)
### Question:
What tournament is in Arizona?
### Answer:
SELECT tournament FROM table_name_70 WHERE location = "arizona" |
Below is an context that describes a sql 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 (opponent VARCHAR, week VARCHAR)
### Question:
Who was the opponent on week 3?
### Answer:
SELECT opponent FROM table_name_10 WHERE week = 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_22824297_1 (player VARCHAR, hometown VARCHAR)
### Question:
Who are all players from hometown of Carbondale, Illinois?
### Answer:
SELECT player FROM table_22824297_1 WHERE hometown = "Carbondale, Illinois" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_98 (year INTEGER, result VARCHAR)
### Question:
Tell me the highest year for result of 9th
### Answer:
SELECT MAX(year) FROM table_name_98 WHERE result = "9th" |
Below is an context that describes a sql 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 (structure VARCHAR, year VARCHAR, continent VARCHAR)
### Question:
Listed with a continent of Africa and before 2009 this structure is called what?
### Answer:
SELECT structure FROM table_name_83 WHERE year < 2009 AND continent = "africa" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE climber (Id VARCHAR)
### Question:
How many climbers are there?
### Answer:
SELECT COUNT(*) FROM climber |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_2 (no_result VARCHAR, wins VARCHAR, losses VARCHAR)
### Question:
WHAT kind of No Result has Wins smaller than 2, and Losses larger than 1?
### Answer:
SELECT no_result FROM table_name_2 WHERE wins < 2 AND losses > 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_12 (Id VARCHAR)
### Question:
What was the position for 2008, where 2012 was q1, and 2010 was 1r?
### Answer:
SELECT 2008 FROM table_name_12 WHERE 2012 = "q1" AND 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_name_13 (team_1 VARCHAR, agg VARCHAR)
### Question:
Which Team 1 has an aggregate score of 1-1 1?
### Answer:
SELECT team_1 FROM table_name_13 WHERE agg = "1-1 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_57 (manner_of_departure VARCHAR, team VARCHAR)
### Question:
What is Motherwell Team's manner of departure?
### Answer:
SELECT manner_of_departure FROM table_name_57 WHERE team = "motherwell" |
Below is an context that describes a sql 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 (call_sign VARCHAR, branding VARCHAR)
### Question:
What is the Call sign of the Frequency 106.9 the X?
### Answer:
SELECT call_sign FROM table_name_19 WHERE branding = "106.9 the x" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_13 (wins VARCHAR, season VARCHAR, podiums VARCHAR, races VARCHAR)
### Question:
How many wins has a podiums greater than 1 and 9 as the races with a season after 1984?
### Answer:
SELECT COUNT(wins) FROM table_name_13 WHERE podiums > 1 AND races = 9 AND season > 1984 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_70 (novelty VARCHAR, location VARCHAR, name VARCHAR)
### Question:
What novelty has USA as the location, and coryloides as the name?
### Answer:
SELECT novelty FROM table_name_70 WHERE location = "usa" AND name = "coryloides" |
Below is an context that describes a sql 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 (set_3 VARCHAR, total VARCHAR)
### Question:
What is the Set 3 when the Total was 98 - 92?
### Answer:
SELECT set_3 FROM table_name_27 WHERE total = "98 - 92" |
Below is an context that describes a sql 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 (player VARCHAR, span VARCHAR)
### Question:
What is the player with a Span of 1998-2009?
### Answer:
SELECT player FROM table_name_8 WHERE span = "1998-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_23981741_1 (release_date VARCHAR, year VARCHAR, additional_rock_band_3_features VARCHAR)
### Question:
How many release dates are there for year of 1988 and additional rock band 3 features is none?
### Answer:
SELECT COUNT(release_date) FROM table_23981741_1 WHERE year = 1988 AND additional_rock_band_3_features = "None" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12148147_2 (first_year VARCHAR, third_year VARCHAR)
### Question:
What is the first year course in the program where geometry is taken in the third year?
### Answer:
SELECT first_year FROM table_12148147_2 WHERE third_year = "Geometry" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22673956_1 (race_name VARCHAR, date VARCHAR)
### Question:
How many races took place on October 1?
### Answer:
SELECT COUNT(race_name) FROM table_22673956_1 WHERE date = "October 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_22670216_1 (location VARCHAR, winning_driver VARCHAR)
### Question:
What is the location is the winning driver is Bill Vukovich II?
### Answer:
SELECT location FROM table_22670216_1 WHERE winning_driver = "Bill Vukovich II" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29572583_20 (new_points INTEGER, player VARCHAR)
### Question:
how many new points does the player roberta vinci have?
### Answer:
SELECT MAX(new_points) FROM table_29572583_20 WHERE player = "Roberta Vinci" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
### Question:
How many distinct courses are enrolled in by students?
### Answer:
SELECT COUNT(course_id) FROM Student_Course_Enrolment |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE orchestra (Record_Company VARCHAR)
### Question:
Please show the different record companies and the corresponding number of orchestras.
### Answer:
SELECT Record_Company, COUNT(*) FROM orchestra GROUP BY Record_Company |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10470082_4 (director VARCHAR, writer VARCHAR)
### Question:
Who is the director of the episode whom Scott Peters is the writer?
### Answer:
SELECT director FROM table_10470082_4 WHERE writer = "Scott Peters" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28068063_2 (aggregate_score VARCHAR, winners VARCHAR)
### Question:
What was the aggregate score for the match won by Brive?
### Answer:
SELECT aggregate_score FROM table_28068063_2 WHERE winners = "Brive" |
Below is an context that describes a sql 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 (h___a VARCHAR, opponents VARCHAR)
### Question:
Was the game with Kashima antlers at home or away?
### Answer:
SELECT h___a FROM table_name_86 WHERE opponents = "kashima antlers" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_38 (laps INTEGER, qual VARCHAR)
### Question:
What is the most laps with a qualification of 106.185?
### Answer:
SELECT MAX(laps) FROM table_name_38 WHERE qual = "106.185" |
Below is an context that describes a sql 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 (elevator VARCHAR, elector VARCHAR)
### Question:
What is the elevator when the elector is Pietro Colonna?
### Answer:
SELECT elevator FROM table_name_77 WHERE elector = "pietro colonna" |
Below is an context that describes a sql 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 (place VARCHAR, player VARCHAR)
### Question:
Where is Miller Barber from?
### Answer:
SELECT place FROM table_name_52 WHERE player = "miller barber" |
Below is an context that describes a sql 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 (crowd INTEGER, venue VARCHAR)
### Question:
What is the total number of people that attended the glenferrie oval venue?
### Answer:
SELECT SUM(crowd) FROM table_name_39 WHERE venue = "glenferrie 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_10 (owner VARCHAR, trainer VARCHAR, year VARCHAR)
### Question:
Who was the owner in 1996 of trainer Nick Zito?
### Answer:
SELECT owner FROM table_name_10 WHERE trainer = "nick zito" AND 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_90 (team VARCHAR, points VARCHAR, rank VARCHAR)
### Question:
Which team has 16 points and ranks 14th?
### Answer:
SELECT team FROM table_name_90 WHERE points = 16 AND rank = "14th" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2780146_6 (standard VARCHAR, pm__g_kwh_ VARCHAR)
### Question:
How many different standards have a PM of 0.02 g/kWh?
### Answer:
SELECT COUNT(standard) FROM table_2780146_6 WHERE pm__g_kwh_ = "0.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_68 (home_away VARCHAR, field VARCHAR, date VARCHAR)
### Question:
What is the home/away of the game at Nickerson Field at July 10?
### Answer:
SELECT home_away FROM table_name_68 WHERE field = "nickerson field" AND date = "july 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_29217650_1 (movies VARCHAR, december_25 VARCHAR)
### Question:
What film earmed p3.2 million on December 25?
### Answer:
SELECT movies FROM table_29217650_1 WHERE december_25 = "P3.2 million" |
Below is an context that describes a sql 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 (top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR)
### Question:
For events with under 3 times played and fewer than 1 cut made, what is the total number of top-10 finishes?
### Answer:
SELECT COUNT(top_10) FROM table_name_24 WHERE events < 3 AND cuts_made < 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_20350118_1 (county VARCHAR, mccain_number VARCHAR)
### Question:
Where did McCain get 20226 votes?
### Answer:
SELECT county FROM table_20350118_1 WHERE mccain_number = 20226 |
Below is an context that describes a sql 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 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR)
### Question:
what is the outcome when the opponent in the final is william renshaw after year 1882?
### Answer:
SELECT outcome FROM table_name_24 WHERE year > 1882 AND opponent_in_the_final = "william renshaw" |
Below is an context that describes a sql 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 (total INTEGER, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
### Question:
What is the highest total that has a bronze greater than 1, a gold greater than 1, with a silver less than 4?
### Answer:
SELECT MAX(total) FROM table_name_34 WHERE bronze > 1 AND gold > 1 AND silver < 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_17326036_6 (location_attendance VARCHAR, date VARCHAR)
### Question:
How many location attendance was recorded for December 5?
### Answer:
SELECT COUNT(location_attendance) FROM table_17326036_6 WHERE date = "December 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_1341865_20 (first_elected VARCHAR, district VARCHAR)
### Question:
How many candidates were elected in the Louisiana 4 district?
### Answer:
SELECT COUNT(first_elected) FROM table_1341865_20 WHERE district = "Louisiana 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_13940275_5 (losing_bonus VARCHAR, played VARCHAR, tries_against VARCHAR)
### Question:
what's the losing bonus with played being 22 and tries against being 38
### Answer:
SELECT losing_bonus FROM table_13940275_5 WHERE played = "22" AND tries_against = "38" |
Subsets and Splits