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_64 (sport VARCHAR, club VARCHAR)
### Question:
What sport is the rayo vallecano club in?
### Answer:
SELECT sport FROM table_name_64 WHERE club = "rayo vallecano" |
Below is an context that describes a sql 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 (of_4 VARCHAR, country VARCHAR)
### Question:
What is the OF-4 of Albania?
### Answer:
SELECT of_4 FROM table_name_47 WHERE country = "albania" |
Below is an context that describes a sql 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_built VARCHAR, model VARCHAR)
### Question:
In what year was the ctc-3 model built?
### Answer:
SELECT year_built FROM table_name_41 WHERE model = "ctc-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_1242447_2 (strongs__number VARCHAR, hebrew_word VARCHAR)
### Question:
What is the strongs # for the hebrew word יִרְמְיָה?
### Answer:
SELECT strongs__number FROM table_1242447_2 WHERE hebrew_word = "יִרְמְיָה" |
Below is an context that describes a sql 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 (player VARCHAR, years_for_jazz VARCHAR)
### Question:
Which player was active in Jazz in 1975-79?
### Answer:
SELECT player FROM table_name_36 WHERE years_for_jazz = "1975-79" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2781227_4 (pick INTEGER, player VARCHAR)
### Question:
For player is jamal mayers mention the minimum pick
### Answer:
SELECT MIN(pick) FROM table_2781227_4 WHERE player = "Jamal Mayers" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARCHAR)
### Question:
Who was the mountain classification winner in the stage won by Alessandro Ballan?
### Answer:
SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = "Alessandro Ballan" |
Below is an context that describes a sql 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 (result VARCHAR, venue VARCHAR)
### Question:
What was the results of the game at Doha?
### Answer:
SELECT result FROM table_name_51 WHERE venue = "doha" |
Below is an context that describes a sql 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 (decile INTEGER, name VARCHAR)
### Question:
What is the average decile for te puru school?
### Answer:
SELECT AVG(decile) FROM table_name_84 WHERE name = "te puru school" |
Below is an context that describes a sql 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 (tournament VARCHAR)
### Question:
What is the 2013 of the grand slam tournaments?
### Answer:
SELECT 2013 FROM table_name_71 WHERE tournament = "grand slam tournaments" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_14 (result VARCHAR, venue VARCHAR)
### Question:
Which result's venue was in Rotterdam, Netherlands?
### Answer:
SELECT result FROM table_name_14 WHERE venue = "rotterdam, netherlands" |
Below is an context that describes a sql 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 (votes VARCHAR, artist VARCHAR)
### Question:
What are the Votes for the Song by Artist Filipa Batista?
### Answer:
SELECT votes FROM table_name_11 WHERE artist = "filipa batista" |
Below is an context that describes a sql 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 (home_team VARCHAR, venue VARCHAR)
### Question:
What is the home team score that played at Kardinia Park?
### Answer:
SELECT home_team AS score FROM table_name_25 WHERE venue = "kardinia 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_55 (november VARCHAR, game INTEGER)
### Question:
What day in November has the game less than 12?
### Answer:
SELECT november FROM table_name_55 WHERE game < 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_38 (shots INTEGER, points INTEGER)
### Question:
What is the lowest Shots with a Point that is larger than 32?
### Answer:
SELECT MIN(shots) FROM table_name_38 WHERE points > 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_94 (oklahoma VARCHAR, nevada VARCHAR, colorado VARCHAR)
### Question:
What's the value for oklahoma when nevada and colorado are clinton?
### Answer:
SELECT oklahoma FROM table_name_94 WHERE nevada = "clinton" AND colorado = "clinton" |
Below is an context that describes a sql 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 (points VARCHAR, played INTEGER)
### Question:
What is the total number of points combined from the teams that played over 14 games?
### Answer:
SELECT COUNT(points) FROM table_name_52 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_13259034_2 (week INTEGER, date VARCHAR)
### Question:
In what week was November 27, 1977?
### Answer:
SELECT MAX(week) FROM table_13259034_2 WHERE date = "November 27, 1977" |
Below is an context that describes a sql 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 (to_par VARCHAR, place VARCHAR, country VARCHAR)
### Question:
What was the to par when South Africa was in T4 place?
### Answer:
SELECT to_par FROM table_name_16 WHERE place = "t4" AND country = "south 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 table_name_90 (date VARCHAR, attendance VARCHAR)
### Question:
What was the date when the attendance was 77,918?
### Answer:
SELECT date FROM table_name_90 WHERE attendance = "77,918" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_24225238_1 (leading_actress VARCHAR, leading_actor VARCHAR, oscars VARCHAR)
### Question:
Who was the leading actress in a film with Warren Beatty as the leading actor and also at the 40th Oscars?
### Answer:
SELECT leading_actress FROM table_24225238_1 WHERE leading_actor = "Warren Beatty" AND oscars = "40th" |
Below is an context that describes a sql 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 (the_winner VARCHAR, the_presenter VARCHAR)
### Question:
Who won when the presenter was Tatiana Stefanidou?
### Answer:
SELECT the_winner FROM table_name_92 WHERE the_presenter = "tatiana stefanidou" |
Below is an context that describes a sql 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 (notes VARCHAR, year VARCHAR, position VARCHAR)
### Question:
What is the note result when the runner finished 19th in 2008?
### Answer:
SELECT notes FROM table_name_94 WHERE year = 2008 AND position = "19th" |
Below is an context that describes a sql 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 (country VARCHAR, place VARCHAR, score VARCHAR)
### Question:
What is the country with a t7 place and a 69-68-72=209 score?
### Answer:
SELECT country FROM table_name_70 WHERE place = "t7" AND score = 69 - 68 - 72 = 209 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, condition VARCHAR)
### Question:
Is uremia affect prothrombin?
### Answer:
SELECT prothrombin_time FROM table_1226250_1 WHERE condition = "Uremia" |
Below is an context that describes a sql 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 (date VARCHAR, week VARCHAR, result VARCHAR)
### Question:
Tell me the date that has a week larger than 3 and a result of w 28-27
### Answer:
SELECT date FROM table_name_26 WHERE week > 3 AND result = "w 28-27" |
Below is an context that describes a sql 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 (peak_position VARCHAR, date VARCHAR)
### Question:
What was the Peak Position on July 11, 2001?
### Answer:
SELECT peak_position FROM table_name_12 WHERE date = "july 11, 2001" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27268238_4 (player VARCHAR, average VARCHAR)
### Question:
If the average is 50.16, who is the player?
### Answer:
SELECT player FROM table_27268238_4 WHERE average = "50.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 (set_5 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)
### Question:
What is the set 5 for the game with a set 2 of 21-25 and a set 1 of 41633?
### Answer:
SELECT set_5 FROM table_name_62 WHERE set_2 = "21-25" AND set_1 = "41633" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_6 (released VARCHAR, album_number VARCHAR)
### Question:
Album # of 1st was released on what date?
### Answer:
SELECT released FROM table_name_6 WHERE album_number = "1st" |
Below is an context that describes a sql 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 (game VARCHAR, date VARCHAR)
### Question:
What game was played on May 29?
### Answer:
SELECT game FROM table_name_1 WHERE date = "may 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_name_37 (money___ INTEGER, place VARCHAR)
### Question:
What is the Money of the Player in Place 5?
### Answer:
SELECT SUM(money___) AS $__ FROM table_name_37 WHERE place = "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_95 (debut_year INTEGER, player VARCHAR, games VARCHAR)
### Question:
Which Debut year has a Player of noel carroll, and Games smaller than 12?
### Answer:
SELECT MAX(debut_year) FROM table_name_95 WHERE player = "noel carroll" AND games < 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_15 (lane VARCHAR, name VARCHAR, rank VARCHAR)
### Question:
Name the total number of lane for brooke bennett and rank less than 1
### Answer:
SELECT COUNT(lane) FROM table_name_15 WHERE name = "brooke bennett" AND rank < 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_58 (lost VARCHAR, points VARCHAR, points_against VARCHAR)
### Question:
when points were 36 and points against 489 what is the lost?
### Answer:
SELECT lost FROM table_name_58 WHERE points = "36" AND points_against = "489" |
Below is an context that describes 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 (product_id VARCHAR, product_price VARCHAR); CREATE TABLE complaints (staff_id VARCHAR, product_id VARCHAR); CREATE TABLE staff (last_name VARCHAR, staff_id VARCHAR)
### Question:
Find the last name of the staff member who processed the complaint of the cheapest product.
### Answer:
SELECT t1.last_name FROM staff AS t1 JOIN complaints AS t2 ON t1.staff_id = t2.staff_id JOIN products AS t3 ON t2.product_id = t3.product_id ORDER BY t3.product_price LIMIT 1 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_75 (record VARCHAR, attendance VARCHAR)
### Question:
What was the Indians record during the game that had 19,823 fans attending?
### Answer:
SELECT record FROM table_name_75 WHERE attendance = "19,823" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1342426_18 (incumbent VARCHAR, candidates VARCHAR)
### Question:
Who was the incumbent in the election of henry garland dupré (d) unopposed?
### Answer:
SELECT incumbent FROM table_1342426_18 WHERE candidates = "Henry Garland Dupré (D) Unopposed" |
Below is an context that describes a sql 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 (date VARCHAR, week VARCHAR, opponent VARCHAR)
### Question:
What was the date of the game after week 5 against the Houston Oilers?
### Answer:
SELECT date FROM table_name_87 WHERE week > 5 AND opponent = "houston oilers" |
Below is an context that describes a sql 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 (away VARCHAR, attendance VARCHAR)
### Question:
What team was the away team for the game with 916 in attendance?
### Answer:
SELECT away FROM table_name_45 WHERE attendance = 916 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_2562572_25 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
### Question:
When дероње is the cyrillic name other names what is the largest ethnic group of 2002?
### Answer:
SELECT largest_ethnic_group__2002_ FROM table_2562572_25 WHERE cyrillic_name_other_names = "Дероње" |
Below is an context that describes a sql 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 (date_of_vacancy VARCHAR, position_in_table VARCHAR, team VARCHAR)
### Question:
what is the date of vacancy when the position in table is 10th and the team is balboa?
### Answer:
SELECT date_of_vacancy FROM table_name_70 WHERE position_in_table = "10th" AND team = "balboa" |
Below is an context that describes a sql 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 (callsign VARCHAR, brand VARCHAR, webcast VARCHAR, frequency VARCHAR)
### Question:
Which Callsign includes a frequency under 1210, Newsradio 740 KTRH, and webcasts with listen live?
### Answer:
SELECT callsign FROM table_name_97 WHERE webcast = "listen live" AND frequency < 1210 AND brand = "newsradio 740 ktrh" |
Below is an context that describes a sql 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 (accreditation_level VARCHAR, network_brand_name VARCHAR)
### Question:
What is the accreditation level of the network brand Movistar?
### Answer:
SELECT accreditation_level FROM table_name_76 WHERE network_brand_name = "movistar" |
Below is an context that describes a sql 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 (series VARCHAR, winner VARCHAR)
### Question:
Which series was won by Paul Morris?
### Answer:
SELECT series FROM table_name_16 WHERE winner = "paul morris" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE party (minister VARCHAR, left_office VARCHAR)
### Question:
Return the minister who left office at the latest time.
### Answer:
SELECT minister FROM party ORDER BY left_office DESC LIMIT 1 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_62 (event VARCHAR, venue VARCHAR)
### Question:
What is the name of the Event with a venue that was in toronto, canada?
### Answer:
SELECT event FROM table_name_62 WHERE venue = "toronto, canada" |
Below is an context that describes a sql 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 (year VARCHAR, record VARCHAR)
### Question:
How many years have a Record of 73-65?
### Answer:
SELECT COUNT(year) FROM table_name_74 WHERE record = "73-65" |
Below is an context that describes a sql 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 (label VARCHAR, format VARCHAR, release VARCHAR)
### Question:
What is the label of release we are the rage with a cd format?
### Answer:
SELECT label FROM table_name_28 WHERE format = "cd" AND release = "we are the rage" |
Below is an context that describes a sql 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 (position VARCHAR, agg VARCHAR)
### Question:
What position has a 2-6 agg.?
### Answer:
SELECT position FROM table_name_8 WHERE agg = "2-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_18 (rank INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)
### Question:
Which Rank has a Nationality of france, and a Name of alain bernard, and a Lane smaller than 6?
### Answer:
SELECT AVG(rank) FROM table_name_18 WHERE nationality = "france" AND name = "alain bernard" AND lane < 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_26375386_22 (total VARCHAR, public VARCHAR)
### Question:
Name the total number for 3 public
### Answer:
SELECT COUNT(total) FROM table_26375386_22 WHERE public = 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_25572068_1 (circuit VARCHAR, series VARCHAR)
### Question:
What circuit was the FR3.5 11 series on?
### Answer:
SELECT circuit FROM table_25572068_1 WHERE series = "FR3.5 11" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_26 (date VARCHAR, attendance VARCHAR)
### Question:
When was the game that had 58,025 people in attendance?
### Answer:
SELECT date FROM table_name_26 WHERE attendance = "58,025" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25691838_2 (the_wørd VARCHAR, original_airdate VARCHAR)
### Question:
What was the word for the episode that aired February 11?
### Answer:
SELECT the_wørd FROM table_25691838_2 WHERE original_airdate = "February 11" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_47 (place INTEGER, draw VARCHAR, points VARCHAR)
### Question:
Name the least place for draw more than 3 and points of 8
### Answer:
SELECT MIN(place) FROM table_name_47 WHERE draw > 3 AND points = 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_51 (drawn INTEGER, position VARCHAR, played VARCHAR)
### Question:
What is the smallest drawn with a position bigger than 10 and a played less than 20?
### Answer:
SELECT MIN(drawn) FROM table_name_51 WHERE position > 10 AND played < 20 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE Timed_Status_of_Things (Status_of_Thing_Code VARCHAR)
### Question:
How many different status codes of things are there?
### Answer:
SELECT COUNT(DISTINCT Status_of_Thing_Code) FROM Timed_Status_of_Things |
Below is an context that describes a sql 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 (away_team VARCHAR, venue VARCHAR)
### Question:
What away team played at Kardinia Park?
### Answer:
SELECT away_team FROM table_name_24 WHERE venue = "kardinia 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_91 (matches INTEGER, country VARCHAR, rank VARCHAR)
### Question:
When the country is austria germany and the rank is kept under 5, what's the average number of matches played?
### Answer:
SELECT AVG(matches) FROM table_name_91 WHERE country = "austria germany" AND rank < 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_69 (railway VARCHAR, built VARCHAR)
### Question:
Which railway was built in 1920?
### Answer:
SELECT railway FROM table_name_69 WHERE built = "1920" |
Below is an context that describes a sql 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 (share_of_seats VARCHAR, european_election__uk_ VARCHAR)
### Question:
Which Share of seats has a European election (UK) of 2009?
### Answer:
SELECT share_of_seats FROM table_name_79 WHERE european_election__uk_ = 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_23649244_2 (song_1_title VARCHAR, artist_1 VARCHAR)
### Question:
What is song 1 title is the artist is Danny Byrd?
### Answer:
SELECT song_1_title FROM table_23649244_2 WHERE artist_1 = "Danny Byrd" |
Below is an context that describes a sql 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 (attendance INTEGER, opponent VARCHAR, record VARCHAR)
### Question:
Which Attendance has an Opponent of phillies, and a Record of 30-33?
### Answer:
SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "phillies" AND record = "30-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_name_5 (lost INTEGER, games INTEGER)
### Question:
How many lost are there before game 7?
### Answer:
SELECT SUM(lost) FROM table_name_5 WHERE games < 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_36 (kit_manufacturer VARCHAR, manager VARCHAR)
### Question:
What is the kit manufacturer that has billy bonds as the manager?
### Answer:
SELECT kit_manufacturer FROM table_name_36 WHERE manager = "billy bonds" |
Below is an context that describes a sql 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, points VARCHAR)
### Question:
What is the Score of the Pittsburgh Home game on March 3 with 61 Points?
### Answer:
SELECT score FROM table_name_18 WHERE home = "pittsburgh" AND points = 61 AND date = "march 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_127511_1 (sequencer VARCHAR, ion_torrent_pgm VARCHAR)
### Question:
What is the sequencer when ion torrent pgm is 200-400 bp?
### Answer:
SELECT sequencer FROM table_127511_1 WHERE ion_torrent_pgm = "200-400 bp" |
Below is an context that describes a sql 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 (draw__pe_ INTEGER, team__equipo_ VARCHAR, won__pg_ VARCHAR)
### Question:
What is the sum of the pe draw of team plaza amador, who has less than 6 pg won?
### Answer:
SELECT SUM(draw__pe_) FROM table_name_28 WHERE team__equipo_ = "plaza amador" AND won__pg_ < 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_43 (platform_s_ VARCHAR, developer_s_ VARCHAR)
### Question:
What was the platform when the developer was Telltale Games?
### Answer:
SELECT platform_s_ FROM table_name_43 WHERE developer_s_ = "telltale games" |
Below is an context that describes a sql 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 (final VARCHAR, run_3 VARCHAR)
### Question:
Which final has a run of 1:19.49?
### Answer:
SELECT final FROM table_name_18 WHERE run_3 = "1: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_11960610_6 (location_attendance VARCHAR, date VARCHAR)
### Question:
What was the location attendance on the date of November 15?
### Answer:
SELECT location_attendance FROM table_11960610_6 WHERE date = "November 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_5 (distance VARCHAR, stage VARCHAR)
### Question:
Name the distance for stage of 2
### Answer:
SELECT distance FROM table_name_5 WHERE stage = "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_61 (outcome VARCHAR, date VARCHAR)
### Question:
What Outcome happened on a Date that was 20 november 2011?
### Answer:
SELECT outcome FROM table_name_61 WHERE date = "20 november 2011" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_1612760_1 (operator VARCHAR, destination VARCHAR)
### Question:
Who is the operator to destination Dalston Junction?
### Answer:
SELECT operator FROM table_1612760_1 WHERE destination = "Dalston Junction" |
Below is an context that describes a sql 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 (spectators INTEGER, date VARCHAR, time__cet_ VARCHAR)
### Question:
How many Spectators have a Date of 17 june 2006, and a Time (CET) larger than 15?
### Answer:
SELECT SUM(spectators) FROM table_name_47 WHERE date = "17 june 2006" AND time__cet_ > 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_36 (result VARCHAR, year VARCHAR)
### Question:
What is the result in 1994?
### Answer:
SELECT result FROM table_name_36 WHERE year = 1994 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_8 (home_team VARCHAR, venue VARCHAR)
### Question:
Which home team has the Brunswick Street Oval venue?
### Answer:
SELECT home_team FROM table_name_8 WHERE venue = "brunswick street 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_275506_1 (yellow_jersey VARCHAR, distance__km_ VARCHAR)
### Question:
What is every yellow jersey entry for the distance 125?
### Answer:
SELECT yellow_jersey FROM table_275506_1 WHERE distance__km_ = "125" |
Below is an context that describes a sql 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 (attendance VARCHAR, week VARCHAR, record VARCHAR)
### Question:
How many were in attendance in a week less than 4 with a record of 2–1?
### Answer:
SELECT attendance FROM table_name_81 WHERE week < 4 AND record = "2–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 (total INTEGER, country VARCHAR, year_s__won VARCHAR)
### Question:
What is the highest total for Scotland with a year won of 1985?
### Answer:
SELECT MAX(total) FROM table_name_12 WHERE country = "scotland" AND year_s__won = 1985 |
Below is an context that describes a sql 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 (population__2008_ INTEGER, korean VARCHAR)
### Question:
What is the 2008 population in 함흥 (Ham Hyung)?
### Answer:
SELECT SUM(population__2008_) FROM table_name_55 WHERE korean = "함흥" |
Below is an context that describes a sql 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 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR)
### Question:
What is the average value for Wins, when South West DFL is "Coleraine", and when Byes is greater than 0?
### Answer:
SELECT AVG(wins) FROM table_name_73 WHERE south_west_dfl = "coleraine" AND byes > 0 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_78 (episode VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR)
### Question:
What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer?
### Answer:
SELECT COUNT(episode) FROM table_name_78 WHERE performer_1 = "jim sweeney" AND performer_2 = "steve steen" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10875694_11 (compatible_with_60gb_pal_80gb_ntsc_ps3__cechc_ceche_ VARCHAR, publisher VARCHAR, title VARCHAR)
### Question:
Which James Bond 007: Agent Under Fire from Electronic Arts is compatible with 60 gb pal/80 gb NTSC PS3 (CECHC/CECHE)?
### Answer:
SELECT compatible_with_60gb_pal_80gb_ntsc_ps3__cechc_ceche_ FROM table_10875694_11 WHERE publisher = "Electronic Arts" AND title = "James Bond 007: Agent Under Fire" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_37 (series VARCHAR, production_number VARCHAR)
### Question:
What is the Series of the Filmography with a Production Number of M-4-15?
### Answer:
SELECT series FROM table_name_37 WHERE production_number = "m-4-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_15187735_5 (netflix VARCHAR, segment_b VARCHAR)
### Question:
When marshmallow cookies is segment b what episode is it on netflix?
### Answer:
SELECT netflix FROM table_15187735_5 WHERE segment_b = "Marshmallow Cookies" |
Below is an context that describes a sql 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 (grid INTEGER, driver VARCHAR)
### Question:
What is the average grid for Clay Regazzoni?
### Answer:
SELECT AVG(grid) FROM table_name_29 WHERE driver = "clay regazzoni" |
Below is an context that describes a sql 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 (charter_range VARCHAR, status VARCHAR, state VARCHAR)
### Question:
What years were the inactive North Carolina chapter active?
### Answer:
SELECT charter_range FROM table_name_15 WHERE status = "inactive" AND state = "north carolina" |
Below is an context that describes a sql 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 (total INTEGER, rank VARCHAR, silver VARCHAR)
### Question:
Which Total has a Rank of 4, and a Silver larger than 2?
### Answer:
SELECT MIN(total) FROM table_name_11 WHERE rank = "4" AND silver > 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_25055040_22 (team_classification VARCHAR, general_classification VARCHAR)
### Question:
When Brett Lancaster won the general classification, who won the team calssification?
### Answer:
SELECT team_classification FROM table_25055040_22 WHERE general_classification = "Brett Lancaster" |
Below is an context that describes a sql 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 (to_par VARCHAR, score VARCHAR)
### Question:
What is the to par number with a score of 67-66-71-71=275?
### Answer:
SELECT to_par FROM table_name_51 WHERE score = 67 - 66 - 71 - 71 = 275 |
Below is an context that describes a sql 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 (agg VARCHAR)
### Question:
What is the 1st leg of the team with a 2-1 agg.?
### Answer:
SELECT 1 AS st_leg FROM table_name_13 WHERE agg = "2-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_38 (date VARCHAR, round VARCHAR)
### Question:
What is Date, when Round is "2"?
### Answer:
SELECT date FROM table_name_38 WHERE round = 2 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11674683_2 (interview VARCHAR, delegate VARCHAR)
### Question:
Name the interview for peru delegate
### Answer:
SELECT interview FROM table_11674683_2 WHERE delegate = "Peru" |
Below is an context that describes a sql 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 (home_team VARCHAR, away_team VARCHAR)
### Question:
What was the score of the home team when the away team was Geelong?
### Answer:
SELECT home_team AS score FROM table_name_59 WHERE away_team = "geelong" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_49 (recent_bmi VARCHAR, start_bmi VARCHAR, season VARCHAR)
### Question:
What is the recent BMI on season 8 for the person who's BMI started under 46.3?
### Answer:
SELECT recent_bmi FROM table_name_49 WHERE start_bmi < 46.3 AND season = "season 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_76 (draws VARCHAR, against VARCHAR, byes VARCHAR)
### Question:
What is the total number of draws when there are 1465 against matches and less than 2 byes?
### Answer:
SELECT COUNT(draws) FROM table_name_76 WHERE against = 1465 AND byes < 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_22011138_7 (pos VARCHAR)
### Question:
If the POS is 3, what is the 08 points?
### Answer:
SELECT 08 AS _pts FROM table_22011138_7 WHERE pos = 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_50 (week INTEGER, result VARCHAR)
### Question:
Tell me the lowest week for w 10-3
### Answer:
SELECT MIN(week) FROM table_name_50 WHERE result = "w 10-3" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.