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_28 (cultural_and_educational_panel INTEGER, agricultural_panel VARCHAR, university_of_dublin VARCHAR, industrial_and_commercial_panel VARCHAR)
### Question:
What is the lowest number of members on the Cultural and Educational Panel, when the University of Dublin had 3 members, when the Industrial and Commercial Panel had more than 0 members, and when the Agricultural Panel had more than 4 members?
### Answer:
SELECT MIN(cultural_and_educational_panel) FROM table_name_28 WHERE university_of_dublin < 3 AND industrial_and_commercial_panel > 0 AND agricultural_panel > 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 (name VARCHAR, percentage VARCHAR)
### Question:
Which name has a percentage of 0.59%?
### Answer:
SELECT name FROM table_name_28 WHERE percentage = "0.59%" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_22 (winning_constructor VARCHAR, grand_prix VARCHAR)
### Question:
Name the winning constructor for abu dhabi grand prix
### Answer:
SELECT winning_constructor FROM table_name_22 WHERE grand_prix = "abu dhabi grand prix" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE station (id VARCHAR, name VARCHAR); CREATE TABLE status (station_id VARCHAR, bikes_available INTEGER)
### Question:
What are the id and name of the stations that have ever had more than 12 bikes available?
### Answer:
SELECT DISTINCT T1.id, T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available > 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_78 (margin_of_victory VARCHAR, tournament VARCHAR)
### Question:
What was the margin of victory for Olazabal in the German Masters?
### Answer:
SELECT margin_of_victory FROM table_name_78 WHERE tournament = "german masters" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_44 (record VARCHAR, decision VARCHAR, date VARCHAR)
### Question:
What is the record for November 26, with the decision made by Prusek?
### Answer:
SELECT record FROM table_name_44 WHERE decision = "prusek" AND date = "november 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_86 (pick INTEGER, player VARCHAR)
### Question:
What is the highest Pick, when Player is "Todd Van Poppel"?
### Answer:
SELECT MAX(pick) FROM table_name_86 WHERE player = "todd van poppel" |
Below is an context that describes a sql 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 (games VARCHAR, name VARCHAR)
### Question:
What is the number of games for Shlomi Avrahami?
### Answer:
SELECT COUNT(games) FROM table_name_75 WHERE name = "shlomi avrahami" |
Below is an context that describes a sql 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 (score VARCHAR, home_team VARCHAR)
### Question:
What was the score for home team AFC Hornchurch?
### Answer:
SELECT score FROM table_name_74 WHERE home_team = "afc hornchurch" |
Below is an context that describes a sql 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 (total INTEGER, championship INTEGER)
### Question:
What is the average total for less than 1 championship?
### Answer:
SELECT AVG(total) FROM table_name_59 WHERE championship < 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_2668352_11 (first_elected VARCHAR, incumbent VARCHAR)
### Question:
Name the first elected for jacob markell
### Answer:
SELECT first_elected FROM table_2668352_11 WHERE incumbent = "Jacob Markell" |
Below is an context that describes a sql 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 (first_elected VARCHAR, district VARCHAR)
### Question:
What is First Elected, when District is "Minnesota 2"?
### Answer:
SELECT first_elected FROM table_name_16 WHERE district = "minnesota 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_82 (rank INTEGER, years VARCHAR)
### Question:
Which Rank has a Years of 1998–present?
### Answer:
SELECT AVG(rank) FROM table_name_82 WHERE years = "1998–present" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15467476_3 (losing_bonus VARCHAR, points_difference VARCHAR)
### Question:
What is the losing bonus for the team with a point difference of -99?
### Answer:
SELECT losing_bonus FROM table_15467476_3 WHERE points_difference = "-99" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26368963_1 (year VARCHAR, under_15 VARCHAR, under_19 VARCHAR)
### Question:
How many years are there where the the under-15 is Arturo Salazar Martinez and the under-19 is Moises Galvez?
### Answer:
SELECT COUNT(year) FROM table_26368963_1 WHERE under_15 = "Arturo Salazar Martinez" AND under_19 = "Moises Galvez" |
Below is an context that describes a sql 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 (pick__number VARCHAR, nhl_team VARCHAR)
### Question:
What Pick # does the St. Louis Blues have?
### Answer:
SELECT pick__number FROM table_name_13 WHERE nhl_team = "st. louis blues" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_56 (english_title VARCHAR, role VARCHAR)
### Question:
What is the English of chae soo-yeon?
### Answer:
SELECT english_title FROM table_name_56 WHERE role = "chae soo-yeon" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_15778392_1 (result VARCHAR, original_artist VARCHAR)
### Question:
WHAT IS THE RESULT FOR THE SONG WHERE THE ORIGINAL ARTIST IS BETTY EVERETT?
### Answer:
SELECT result FROM table_15778392_1 WHERE original_artist = "Betty Everett" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_22 (term VARCHAR, district VARCHAR, party VARCHAR)
### Question:
Which term had a Democratic representative from district 7?
### Answer:
SELECT term FROM table_name_22 WHERE district = "7" AND party = "democratic" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27756314_10 (high_rebounds VARCHAR, date VARCHAR)
### Question:
Who had high rebounds when the date was march 25?
### Answer:
SELECT high_rebounds FROM table_27756314_10 WHERE date = "March 25" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12148018_2 (writer VARCHAR, viewers VARCHAR)
### Question:
who is the writer where viewers is 5.16m
### Answer:
SELECT writer FROM table_12148018_2 WHERE viewers = "5.16m" |
Below is an context that describes a sql 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 (total INTEGER, egyptian_premier_league VARCHAR, egypt_cup VARCHAR)
### Question:
What is the highest total for players with under 2 Egyptian Premier League goals and 0 Egypt Cup goals?
### Answer:
SELECT MAX(total) FROM table_name_49 WHERE egyptian_premier_league < 2 AND egypt_cup < 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_1341604_11 (party VARCHAR, district VARCHAR)
### Question:
Name the party of georgia 4
### Answer:
SELECT party FROM table_1341604_11 WHERE district = "Georgia 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_92 (name VARCHAR, time VARCHAR)
### Question:
What is the Name, when the Time is 8:10.1?
### Answer:
SELECT name FROM table_name_92 WHERE time = "8:10.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_19 (opponent VARCHAR, record VARCHAR)
### Question:
Name the opponent with record of 6-2
### Answer:
SELECT opponent FROM table_name_19 WHERE record = "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_88 (outcome VARCHAR, year VARCHAR, score VARCHAR)
### Question:
What is the Outcome of the Match played after 2003 with a Score of 6–0, 6–3?
### Answer:
SELECT outcome FROM table_name_88 WHERE year > 2003 AND score = "6–0, 6–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_15 (points INTEGER, equipment VARCHAR, position VARCHAR)
### Question:
What were highest points received from someone using a zabel-wsp with a position greater than 7?
### Answer:
SELECT MAX(points) FROM table_name_15 WHERE equipment = "zabel-wsp" AND position > 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_2 (winning_score VARCHAR, date VARCHAR)
### Question:
What was the Winning Score on May 29, 1977?
### Answer:
SELECT winning_score FROM table_name_2 WHERE date = "may 29, 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_49 (province VARCHAR, period VARCHAR)
### Question:
Tell me the province of 1941-1946
### Answer:
SELECT province FROM table_name_49 WHERE period = "1941-1946" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12962773_5 (height VARCHAR, current_club VARCHAR)
### Question:
what's the height with current club being dkv joventut
### Answer:
SELECT height FROM table_12962773_5 WHERE current_club = "DKV Joventut" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_26609958_1 (rainfall_totals__million_m_3__ VARCHAR, hydrographic_basin VARCHAR)
### Question:
When martha brae, river is the hydrographic basin what is the rainfall totals (million m 3)?
### Answer:
SELECT rainfall_totals__million_m_3__ FROM table_26609958_1 WHERE hydrographic_basin = "Martha Brae, River" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_256286_23 (description VARCHAR, _percentage_yes VARCHAR)
### Question:
What is the description of the measure that got 39.57% yes votes?
### Answer:
SELECT description FROM table_256286_23 WHERE _percentage_yes = "39.57%" |
Below is an context that describes a sql 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 (nationality VARCHAR, player VARCHAR)
### Question:
What is the Nationality for alexandre jacques?
### Answer:
SELECT nationality FROM table_name_2 WHERE player = "alexandre jacques" |
Below is an context that describes a sql 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 (points VARCHAR, tries_against VARCHAR)
### Question:
When the tries against is 90 how many points are there?
### Answer:
SELECT points FROM table_name_92 WHERE tries_against = "90" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27721131_10 (location_attendance VARCHAR, high_rebounds VARCHAR)
### Question:
What was the location attendance when Andray Blatche (9) got high rebounds?
### Answer:
SELECT location_attendance FROM table_27721131_10 WHERE high_rebounds = "Andray Blatche (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_40 (record VARCHAR, game VARCHAR)
### Question:
What is the record of game 48?
### Answer:
SELECT record FROM table_name_40 WHERE game = 48 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_88 (home_team VARCHAR)
### Question:
What did Melbourne score as the home team?
### Answer:
SELECT home_team AS score FROM table_name_88 WHERE home_team = "melbourne" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_63 (country VARCHAR, score VARCHAR)
### Question:
What country has the score og 66-70-69-71=276?
### Answer:
SELECT country FROM table_name_63 WHERE score = 66 - 70 - 69 - 71 = 276 |
Below is an context that describes a sql 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 (games VARCHAR, lost VARCHAR, goalsfor VARCHAR)
### Question:
Lost of 42, and a Goalsfor larger than 195 contains how many number of games?
### Answer:
SELECT COUNT(games) FROM table_name_43 WHERE lost = 42 AND goalsfor > 195 |
Below is an context that describes a sql 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 (points VARCHAR, played VARCHAR, average VARCHAR)
### Question:
How many points were there when the average was 0.763 and the played was less than 76?
### Answer:
SELECT points FROM table_name_85 WHERE played < 76 AND average = 0.763 |
Below is an context that describes a sql 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 (player VARCHAR, total VARCHAR)
### Question:
WHAT IS THE PLAYER WITH 287?
### Answer:
SELECT player FROM table_name_26 WHERE total = 287 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_11677691_5 (college VARCHAR, player VARCHAR)
### Question:
Which college has the player Rushel Shell?
### Answer:
SELECT college FROM table_11677691_5 WHERE player = "Rushel Shell" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20854943_2 (loa__metres_ VARCHAR, sail_number VARCHAR)
### Question:
What are the LOA (metres) of boat with sail number M10?
### Answer:
SELECT loa__metres_ FROM table_20854943_2 WHERE sail_number = "M10" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_12842068_1 (submitting_country VARCHAR, film_title_used_in_nomination VARCHAR)
### Question:
What country submitted the movie the orphanage?
### Answer:
SELECT submitting_country FROM table_12842068_1 WHERE film_title_used_in_nomination = "The Orphanage" |
Below is an context that describes a sql 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 (loss VARCHAR, record VARCHAR)
### Question:
Which loss has a Record of 54-39?
### Answer:
SELECT loss FROM table_name_68 WHERE record = "54-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_63 (name VARCHAR, region VARCHAR, date_of_reclassification VARCHAR)
### Question:
WHose Name has a Region of kansai on 2012-04-01 ( core city )?
### Answer:
SELECT name FROM table_name_63 WHERE region = "kansai" AND date_of_reclassification = "2012-04-01 ( core city )" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_14845640_1 (production_code INTEGER, us_viewers__millions_ VARCHAR)
### Question:
Namw the minimum production code for 16.04 million viewers
### Answer:
SELECT MIN(production_code) FROM table_14845640_1 WHERE us_viewers__millions_ = "16.04" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17015_2 (no VARCHAR, population__2010_ VARCHAR)
### Question:
Name the number where population 2010 is 171906
### Answer:
SELECT no FROM table_17015_2 WHERE population__2010_ = 171906 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_20174050_23 (reader VARCHAR, title VARCHAR)
### Question:
who the reader of title department x?
### Answer:
SELECT reader FROM table_20174050_23 WHERE title = "Department 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_25 (total INTEGER, name VARCHAR, league VARCHAR)
### Question:
Which Total has a Name of alex mcleish category:articles with hcards, and a League smaller than 494?
### Answer:
SELECT AVG(total) FROM table_name_25 WHERE name = "alex mcleish category:articles with hcards" AND league < 494 |
Below is an context that describes a sql 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 (total INTEGER, gold VARCHAR, nation VARCHAR)
### Question:
What is the average Total, when Gold is 0, and when Nation is Iran?
### Answer:
SELECT AVG(total) FROM table_name_71 WHERE gold = 0 AND nation = "iran" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR)
### Question:
What is the enrollment ratio in primary in the region where the enrollment ratio in preschool is 38.14?
### Answer:
SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "38.14" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_54 (established INTEGER, league VARCHAR, championships VARCHAR)
### Question:
Which WNBA team that won at least 2 championships was established most recently?
### Answer:
SELECT MAX(established) FROM table_name_54 WHERE league = "wnba" AND championships > 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 vocals (TYPE VARCHAR)
### Question:
Which vocal type is the most frequently appearring type?
### Answer:
SELECT TYPE FROM vocals GROUP BY TYPE ORDER BY COUNT(*) 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_10360823_1 (player_name VARCHAR, round VARCHAR)
### Question:
Which player was chosen in round 17?
### Answer:
SELECT player_name FROM table_10360823_1 WHERE round = 17 |
Below is an context that describes a sql 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 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)
### Question:
What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?
### Answer:
SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 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_76 (position INTEGER, against INTEGER)
### Question:
What is the average position with an against value less than 11?
### Answer:
SELECT AVG(position) FROM table_name_76 WHERE against < 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_95 (date VARCHAR, tournament VARCHAR)
### Question:
What was the date of the Paco Rabanne Open de France?
### Answer:
SELECT date FROM table_name_95 WHERE tournament = "paco rabanne open de france" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_50 (date VARCHAR, total VARCHAR)
### Question:
On what date was the total 25–45?
### Answer:
SELECT date FROM table_name_50 WHERE total = "25–45" |
Below is an context that describes a sql 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 INTEGER, gold VARCHAR)
### Question:
What was the earliest year that Park Jung-Ah won the gold?
### Answer:
SELECT MIN(year) FROM table_name_16 WHERE gold = "park jung-ah" |
Below is an context that describes a sql 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 (league_goals INTEGER, fa_cup_goals INTEGER)
### Question:
what is the sum of league goals when the fa cup goals is more than 0?
### Answer:
SELECT SUM(league_goals) FROM table_name_51 WHERE fa_cup_goals > 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_68 (surface VARCHAR, date VARCHAR)
### Question:
On what surface was the 26 August 2001 tournament played?
### Answer:
SELECT surface FROM table_name_68 WHERE date = "26 august 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_name_90 (name VARCHAR, total VARCHAR)
### Question:
Who had a total of 34?
### Answer:
SELECT name FROM table_name_90 WHERE total = 34 |
Below is an context that describes a sql 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 (fumb_yds INTEGER, fumb_f VARCHAR, int_lg VARCHAR)
### Question:
Which Fumb Yds has a Fumb F. of 0, and a Int LG smaller than 0?
### Answer:
SELECT MAX(fumb_yds) FROM table_name_9 WHERE fumb_f = 0 AND int_lg < 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_1357052_6 (distribution VARCHAR, grsecurity VARCHAR)
### Question:
what's the dbeingtribution with grsecurity being no
### Answer:
SELECT distribution FROM table_1357052_6 WHERE grsecurity = "No" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_15 (latitude INTEGER, pop__2010_ VARCHAR, water__sqmi_ VARCHAR, county VARCHAR)
### Question:
What is the average latitude for townships in Dickey county with water under 2.106 sqmi and population under 95?
### Answer:
SELECT AVG(latitude) FROM table_name_15 WHERE water__sqmi_ < 2.106 AND county = "dickey" AND pop__2010_ < 95 |
Below is an context that describes a sql 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 (date VARCHAR, score VARCHAR)
### Question:
What date was the score won 1-2?
### Answer:
SELECT date FROM table_name_93 WHERE score = "won 1-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_14 (d_46_√ VARCHAR, d_50_√ VARCHAR)
### Question:
What is the D 46 √ when the D 50 √ is d 50 √?
### Answer:
SELECT d_46_√ FROM table_name_14 WHERE d_50_√ = "d 50 √" |
Below is an context that describes a sql 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 (away_team VARCHAR)
### Question:
What is Richmond's away team score versus Geelong?
### Answer:
SELECT away_team AS score FROM table_name_96 WHERE away_team = "richmond" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_27998152_1 (date_of_birth VARCHAR, no VARCHAR)
### Question:
for the no. 7 what is the date of birth
### Answer:
SELECT date_of_birth FROM table_27998152_1 WHERE no = 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_38 (power_output_(kw) VARCHAR, total_production VARCHAR)
### Question:
Tell me the power output for total production of 100
### Answer:
SELECT power_output_(kw) FROM table_name_38 WHERE total_production = 100 |
Below is an context that describes a sql 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 (year INTEGER, category VARCHAR)
### Question:
Which Year has a Category of best performance by a leading actress in a musical?
### Answer:
SELECT MAX(year) FROM table_name_72 WHERE category = "best performance by a leading actress in a musical" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29085880_1 (no VARCHAR, us_viewers__million_ VARCHAR)
### Question:
Which episode number saw 1.312 million U.S. Wviewers?
### Answer:
SELECT no FROM table_29085880_1 WHERE us_viewers__million_ = "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_name_25 (main_use VARCHAR, town VARCHAR)
### Question:
What is the main use for the structure listed in walker city, iowa?
### Answer:
SELECT main_use FROM table_name_25 WHERE town = "walker city, iowa" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_67 (opponent VARCHAR, winner VARCHAR)
### Question:
Tell me the opponent for winner of bc 2
### Answer:
SELECT opponent FROM table_name_67 WHERE winner = "bc 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_32 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR, country VARCHAR)
### Question:
How much To par has a Total larger than 149, and a Country of united states, and a Year(s) won of 1997?
### Answer:
SELECT SUM(to_par) FROM table_name_32 WHERE total > 149 AND country = "united states" AND year_s__won = "1997" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_28962227_1 (runners_up VARCHAR, winner VARCHAR)
### Question:
How many runners-up were there when Joanne Wheatley won?
### Answer:
SELECT COUNT(runners_up) FROM table_28962227_1 WHERE winner = "Joanne Wheatley" |
Below is an context that describes a sql 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 (endowment_as_of_2008 VARCHAR, established VARCHAR)
### Question:
What was the endowment in 2008 of the college that was established in 1961?
### Answer:
SELECT endowment_as_of_2008 FROM table_name_55 WHERE established = 1961 |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17311783_6 (high_points VARCHAR, team VARCHAR)
### Question:
How many numbers were recorded for high points when the team played against Oklahoma City?
### Answer:
SELECT COUNT(high_points) FROM table_17311783_6 WHERE team = "Oklahoma City" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_29836557_2 (pick__number INTEGER, mls_team VARCHAR)
### Question:
What pick number did Real Salt Lake get?
### Answer:
SELECT MIN(pick__number) FROM table_29836557_2 WHERE mls_team = "Real Salt Lake" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_22269839_1 (written_by VARCHAR, production_code VARCHAR)
### Question:
Who wrote the title with the production code is 7acx08?
### Answer:
SELECT written_by FROM table_22269839_1 WHERE production_code = "7ACX08" |
Below is an context that describes a sql 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 (tv_time VARCHAR, opponent VARCHAR)
### Question:
What was the TV Time for opponent jacksonville jaguars?
### Answer:
SELECT tv_time FROM table_name_51 WHERE opponent = "jacksonville jaguars" |
Below is an context that describes a sql 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 (report VARCHAR, race VARCHAR)
### Question:
Which Report includes the Belgian Grand Prix Race?
### Answer:
SELECT report FROM table_name_25 WHERE race = "belgian grand prix" |
Below is an context that describes a sql 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 (coefficient VARCHAR, parts_per_example VARCHAR)
### Question:
What is the Coefficient of 2 ppt?
### Answer:
SELECT coefficient FROM table_name_16 WHERE parts_per_example = "2 ppt" |
Below is an context that describes a sql 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 (loss VARCHAR, record VARCHAR)
### Question:
What loss has 4-2 as the record?
### Answer:
SELECT loss FROM table_name_73 WHERE record = "4-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_17 (country VARCHAR, player VARCHAR, year VARCHAR)
### Question:
What country did mario lemieux play for in 1994?
### Answer:
SELECT country FROM table_name_17 WHERE player = "mario lemieux" AND 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_2985664_8 (strike_rate VARCHAR, catches_stumpings VARCHAR)
### Question:
What is every strike rate when cathces/stumpings is 13/1?
### Answer:
SELECT strike_rate FROM table_2985664_8 WHERE catches_stumpings = "13/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_22 (opposition VARCHAR, date VARCHAR)
### Question:
Who was the opposition in the game on July 29?
### Answer:
SELECT opposition FROM table_name_22 WHERE date = "july 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_5 (seats_2006 INTEGER, parties_and_voter_communities VARCHAR, _percentage_2006 VARCHAR)
### Question:
What is the highest number of Seats 2006 held by the communities of Bürger Für Groß-Rohrheim Party/Voter Community, with a %2006 less than 21.3?
### Answer:
SELECT MAX(seats_2006) FROM table_name_5 WHERE parties_and_voter_communities = "bürger für groß-rohrheim" AND _percentage_2006 < 21.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_16575609_5 (college VARCHAR, player VARCHAR)
### Question:
How many colleges did Jon Gott attend?
### Answer:
SELECT COUNT(college) FROM table_16575609_5 WHERE player = "Jon Gott" |
Below is an context that describes a sql 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 (type VARCHAR, name VARCHAR)
### Question:
Which Type has a Name of edson ratinho?
### Answer:
SELECT type FROM table_name_14 WHERE name = "edson ratinho" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_10408617_5 (bts_retail_price__regulated_ VARCHAR, tariff_code VARCHAR)
### Question:
What is the regulated retail price for the tariff code ff0 prs?
### Answer:
SELECT bts_retail_price__regulated_ FROM table_10408617_5 WHERE tariff_code = "ff0 PRS" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_19872699_1 (builder VARCHAR, skipper VARCHAR)
### Question:
Who build the boat where Ken Read was the skipper?
### Answer:
SELECT builder FROM table_19872699_1 WHERE skipper = "Ken Read" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_18811741_15 (driver VARCHAR, starts VARCHAR)
### Question:
Which driver starts 3?
### Answer:
SELECT driver FROM table_18811741_15 WHERE starts = 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_11545282_5 (player VARCHAR, no VARCHAR)
### Question:
Which player is no. 53?
### Answer:
SELECT player FROM table_11545282_5 WHERE no = "53" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_name_98 (province_region VARCHAR, location VARCHAR)
### Question:
Where is the Cagayan de Oro city located?
### Answer:
SELECT province_region FROM table_name_98 WHERE location = "cagayan de oro city" |
Below is an context that describes a sql query, paired with an question that provides further information. Write an answer that appropriately completes the request. # noqa: E501
### Context:
CREATE TABLE table_17972193_1 (record VARCHAR, opponent VARCHAR)
### Question:
What was the game record when the opponent was 'at Los Angeles Raiders'?
### Answer:
SELECT record FROM table_17972193_1 WHERE opponent = "at Los Angeles Raiders" |
Below is an context that describes a sql 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 (location VARCHAR, round VARCHAR, opponent VARCHAR)
### Question:
What is Location, when Round is "1", and when Opponent is "Joe Slick"?
### Answer:
SELECT location FROM table_name_76 WHERE round = 1 AND opponent = "joe slick" |
Below is an context that describes a sql 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 (react INTEGER, rank VARCHAR, nationality VARCHAR, lane VARCHAR, time VARCHAR)
### Question:
What's the smallest react of Zimbabwe, ranked after 1 in a lane after 3 and a time less than 20.3?
### Answer:
SELECT MIN(react) FROM table_name_90 WHERE lane > 3 AND time < 20.3 AND nationality = "zimbabwe" 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_11734041_9 (height_in_ft VARCHAR, player VARCHAR)
### Question:
How tall is the player jones, major major jones?
### Answer:
SELECT height_in_ft FROM table_11734041_9 WHERE player = "Jones, Major Major Jones" |
Subsets and Splits