text
stringlengths 147
1.06k
| source
dict |
---|---|
### INSTRUCTION
How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7?
### INPUT
CREATE TABLE table_17289604_38 (athlete VARCHAR, round_of_64 VARCHAR)
### OUTPUT
SELECT COUNT(athlete) FROM table_17289604_38 WHERE round_of_64 = "Llagostera Vives ( ESP ) L 6–2, 3–6, 5–7" | {
"input": "CREATE TABLE table_17289604_38 (athlete VARCHAR, round_of_64 VARCHAR)",
"instruction": "How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7?",
"output": "SELECT COUNT(athlete) FROM table_17289604_38 WHERE round_of_64 = \"Llagostera Vives ( ESP ) L 6–2, 3–6, 5–7\""
} |
### INSTRUCTION
What horses does r. a. Scott own?
### INPUT
CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR)
### OUTPUT
SELECT horse FROM table_19624708_1 WHERE owner = "R. A. Scott" | {
"input": "CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR)",
"instruction": "What horses does r. a. Scott own?",
"output": "SELECT horse FROM table_19624708_1 WHERE owner = \"R. A. Scott\""
} |
### INSTRUCTION
Name the former codes for merged into panama ( pa , pan , 591 )
### INPUT
CREATE TABLE table_222666_1 (former_codes VARCHAR, new_country_names_and_codes VARCHAR)
### OUTPUT
SELECT former_codes FROM table_222666_1 WHERE new_country_names_and_codes = "Merged into Panama ( PA , PAN , 591 )" | {
"input": "CREATE TABLE table_222666_1 (former_codes VARCHAR, new_country_names_and_codes VARCHAR)",
"instruction": "Name the former codes for merged into panama ( pa , pan , 591 )",
"output": "SELECT former_codes FROM table_222666_1 WHERE new_country_names_and_codes = \"Merged into Panama ( PA , PAN , 591 )\""
} |
### INSTRUCTION
WHAT COMPETITION HAS MARIAN SANDU?
### INPUT
CREATE TABLE table_name_66 (competition VARCHAR, res VARCHAR)
### OUTPUT
SELECT competition FROM table_name_66 WHERE res = "marian sandu" | {
"input": "CREATE TABLE table_name_66 (competition VARCHAR, res VARCHAR)",
"instruction": "WHAT COMPETITION HAS MARIAN SANDU?",
"output": "SELECT competition FROM table_name_66 WHERE res = \"marian sandu\""
} |
### INSTRUCTION
What's the percentage of all immigrants in 2007 in the country with 1.7% of all immigrants in 2008?
### INPUT
CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2008 VARCHAR)
### OUTPUT
SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2008 = "1.7%" | {
"input": "CREATE TABLE table_23619212_1 (_percentage_of_all_immigrants_2007 VARCHAR, _percentage_of_all_immigrants_2008 VARCHAR)",
"instruction": "What's the percentage of all immigrants in 2007 in the country with 1.7% of all immigrants in 2008?",
"output": "SELECT _percentage_of_all_immigrants_2007 FROM table_23619212_1 WHERE _percentage_of_all_immigrants_2008 = \"1.7%\""
} |
### INSTRUCTION
Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones
### INPUT
CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
### OUTPUT
SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = "alan jones" | {
"input": "CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)",
"instruction": "Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones",
"output": "SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = \"alan jones\""
} |
### INSTRUCTION
Can you tell me the Lost that has Losing BP of 5, and the Try BP of 0?
### INPUT
CREATE TABLE table_name_65 (lost VARCHAR, losing_bp VARCHAR, try_bp VARCHAR)
### OUTPUT
SELECT lost FROM table_name_65 WHERE losing_bp = "5" AND try_bp = "0" | {
"input": "CREATE TABLE table_name_65 (lost VARCHAR, losing_bp VARCHAR, try_bp VARCHAR)",
"instruction": "Can you tell me the Lost that has Losing BP of 5, and the Try BP of 0?",
"output": "SELECT lost FROM table_name_65 WHERE losing_bp = \"5\" AND try_bp = \"0\""
} |
### INSTRUCTION
How many people were first elected when john roane was the incumbent?
### INPUT
CREATE TABLE table_2668243_25 (first_elected VARCHAR, incumbent VARCHAR)
### OUTPUT
SELECT COUNT(first_elected) FROM table_2668243_25 WHERE incumbent = "John Roane" | {
"input": "CREATE TABLE table_2668243_25 (first_elected VARCHAR, incumbent VARCHAR)",
"instruction": "How many people were first elected when john roane was the incumbent?",
"output": "SELECT COUNT(first_elected) FROM table_2668243_25 WHERE incumbent = \"John Roane\""
} |
### INSTRUCTION
Find products with max page size as "A4" and pages per minute color smaller than 5.
### INPUT
CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR)
### OUTPUT
SELECT product FROM product WHERE max_page_size = "A4" AND pages_per_minute_color < 5 | {
"input": "CREATE TABLE product (product VARCHAR, max_page_size VARCHAR, pages_per_minute_color VARCHAR)",
"instruction": "Find products with max page size as \"A4\" and pages per minute color smaller than 5.",
"output": "SELECT product FROM product WHERE max_page_size = \"A4\" AND pages_per_minute_color < 5"
} |
### INSTRUCTION
for the name of jamar jackson what is the total of Number?
### INPUT
CREATE TABLE table_name_99 (number VARCHAR, name VARCHAR)
### OUTPUT
SELECT COUNT(number) FROM table_name_99 WHERE name = "jamar jackson" | {
"input": "CREATE TABLE table_name_99 (number VARCHAR, name VARCHAR)",
"instruction": "for the name of jamar jackson what is the total of Number?",
"output": "SELECT COUNT(number) FROM table_name_99 WHERE name = \"jamar jackson\""
} |
### INSTRUCTION
What award did Forest Whitaker win in 1989?
### INPUT
CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR)
### OUTPUT
SELECT award FROM table_name_54 WHERE actor = "forest whitaker" AND year = 1989 | {
"input": "CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR)",
"instruction": "What award did Forest Whitaker win in 1989?",
"output": "SELECT award FROM table_name_54 WHERE actor = \"forest whitaker\" AND year = 1989"
} |
### INSTRUCTION
When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?
### INPUT
CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR)
### OUTPUT
SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = "2008" AND revenue__£million_ < 4 OFFSET 177 | {
"input": "CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR)",
"instruction": "When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share?",
"output": "SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = \"2008\" AND revenue__£million_ < 4 OFFSET 177"
} |
### INSTRUCTION
Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz
### INPUT
CREATE TABLE table_19598014_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR)
### OUTPUT
SELECT lmp1_winning_team FROM table_19598014_2 WHERE rnd = 2 AND lmp2_winning_team = "Adrian Fernández Luis Díaz" | {
"input": "CREATE TABLE table_19598014_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR)",
"instruction": "Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz",
"output": "SELECT lmp1_winning_team FROM table_19598014_2 WHERE rnd = 2 AND lmp2_winning_team = \"Adrian Fernández Luis Díaz\""
} |
### INSTRUCTION
What was the distance in the round where the supporter was champ car world series ( grand prix of cleveland ) and the tc winning car was pierre kleinubing?
### INPUT
CREATE TABLE table_28490105_1 (distance VARCHAR, supporting VARCHAR, tc_winning_car VARCHAR)
### OUTPUT
SELECT distance FROM table_28490105_1 WHERE supporting = "Champ Car World Series ( Grand Prix of Cleveland )" AND tc_winning_car = "Pierre Kleinubing" | {
"input": "CREATE TABLE table_28490105_1 (distance VARCHAR, supporting VARCHAR, tc_winning_car VARCHAR)",
"instruction": "What was the distance in the round where the supporter was champ car world series ( grand prix of cleveland ) and the tc winning car was pierre kleinubing?",
"output": "SELECT distance FROM table_28490105_1 WHERE supporting = \"Champ Car World Series ( Grand Prix of Cleveland )\" AND tc_winning_car = \"Pierre Kleinubing\""
} |
### INSTRUCTION
What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?
### INPUT
CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)
### OUTPUT
SELECT loss FROM table_name_57 WHERE opponent = "rangers" AND attendance > 43 OFFSET 211 | {
"input": "CREATE TABLE table_name_57 (loss VARCHAR, opponent VARCHAR, attendance VARCHAR)",
"instruction": "What was the Loss when the opponent was the Rangers and the attendance was greater than 43,211?",
"output": "SELECT loss FROM table_name_57 WHERE opponent = \"rangers\" AND attendance > 43 OFFSET 211"
} |
### INSTRUCTION
What was the gender of the contestant on RR: South Pacific season?
### INPUT
CREATE TABLE table_18974269_1 (gender VARCHAR, original_season VARCHAR)
### OUTPUT
SELECT gender FROM table_18974269_1 WHERE original_season = "RR: South Pacific" | {
"input": "CREATE TABLE table_18974269_1 (gender VARCHAR, original_season VARCHAR)",
"instruction": "What was the gender of the contestant on RR: South Pacific season?",
"output": "SELECT gender FROM table_18974269_1 WHERE original_season = \"RR: South Pacific\""
} |
### INSTRUCTION
What is Opponent, when Event is "ISCF - Southeast Championships"?
### INPUT
CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR)
### OUTPUT
SELECT opponent FROM table_name_17 WHERE event = "iscf - southeast championships" | {
"input": "CREATE TABLE table_name_17 (opponent VARCHAR, event VARCHAR)",
"instruction": "What is Opponent, when Event is \"ISCF - Southeast Championships\"?",
"output": "SELECT opponent FROM table_name_17 WHERE event = \"iscf - southeast championships\""
} |
### INSTRUCTION
How many teams did Bob Peppler play for?
### INPUT
CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR)
### OUTPUT
SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = "Bob Peppler" | {
"input": "CREATE TABLE table_1213511_3 (nhl_team VARCHAR, player VARCHAR)",
"instruction": "How many teams did Bob Peppler play for?",
"output": "SELECT COUNT(nhl_team) FROM table_1213511_3 WHERE player = \"Bob Peppler\""
} |
### INSTRUCTION
Where did Audette Racing win?
### INPUT
CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR)
### OUTPUT
SELECT location FROM table_25773116_2 WHERE winning_team = "Audette Racing" | {
"input": "CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR)",
"instruction": "Where did Audette Racing win?",
"output": "SELECT location FROM table_25773116_2 WHERE winning_team = \"Audette Racing\""
} |
### INSTRUCTION
What position did team scandia finish when their engine was cosworth?
### INPUT
CREATE TABLE table_name_72 (finish VARCHAR, engine VARCHAR, team VARCHAR)
### OUTPUT
SELECT finish FROM table_name_72 WHERE engine = "cosworth" AND team = "team scandia" | {
"input": "CREATE TABLE table_name_72 (finish VARCHAR, engine VARCHAR, team VARCHAR)",
"instruction": "What position did team scandia finish when their engine was cosworth?",
"output": "SELECT finish FROM table_name_72 WHERE engine = \"cosworth\" AND team = \"team scandia\""
} |
### INSTRUCTION
Name the points for pontrhydyfen rfc
### INPUT
CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR)
### OUTPUT
SELECT points FROM table_15467476_2 WHERE club = "Pontrhydyfen RFC" | {
"input": "CREATE TABLE table_15467476_2 (points VARCHAR, club VARCHAR)",
"instruction": "Name the points for pontrhydyfen rfc",
"output": "SELECT points FROM table_15467476_2 WHERE club = \"Pontrhydyfen RFC\""
} |
### INSTRUCTION
What is the name of the only route that runs to bhavnagar?
### INPUT
CREATE TABLE table_26745820_5 (vivek_express__15905_15906 VARCHAR, kanyakumari VARCHAR)
### OUTPUT
SELECT vivek_express__15905_15906 FROM table_26745820_5 WHERE kanyakumari = "Bhavnagar" | {
"input": "CREATE TABLE table_26745820_5 (vivek_express__15905_15906 VARCHAR, kanyakumari VARCHAR)",
"instruction": "What is the name of the only route that runs to bhavnagar?",
"output": "SELECT vivek_express__15905_15906 FROM table_26745820_5 WHERE kanyakumari = \"Bhavnagar\""
} |
### INSTRUCTION
What stage did team Carrera Jeans-Tassoni have when Mario Cipollini won and Claudio Chiappucci had the points?
### INPUT
CREATE TABLE table_name_78 (stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR, winner VARCHAR)
### OUTPUT
SELECT stage FROM table_name_78 WHERE trofeo_fast_team = "carrera jeans-tassoni" AND winner = "mario cipollini" AND points_classification = "claudio chiappucci" | {
"input": "CREATE TABLE table_name_78 (stage VARCHAR, points_classification VARCHAR, trofeo_fast_team VARCHAR, winner VARCHAR)",
"instruction": "What stage did team Carrera Jeans-Tassoni have when Mario Cipollini won and Claudio Chiappucci had the points?",
"output": "SELECT stage FROM table_name_78 WHERE trofeo_fast_team = \"carrera jeans-tassoni\" AND winner = \"mario cipollini\" AND points_classification = \"claudio chiappucci\""
} |
### INSTRUCTION
What is the total number of Year that has an Album of Remixes?
### INPUT
CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)
### OUTPUT
SELECT SUM(year) FROM table_name_52 WHERE album = "remixes" | {
"input": "CREATE TABLE table_name_52 (year INTEGER, album VARCHAR)",
"instruction": "What is the total number of Year that has an Album of Remixes?",
"output": "SELECT SUM(year) FROM table_name_52 WHERE album = \"remixes\""
} |
### INSTRUCTION
what is the margin of victory when the runner-up is amy alcott and the winning score is –9 (72-68-67=207)?
### INPUT
CREATE TABLE table_name_78 (margin_of_victory VARCHAR, runner_s__up VARCHAR, winning_score VARCHAR)
### OUTPUT
SELECT margin_of_victory FROM table_name_78 WHERE runner_s__up = "amy alcott" AND winning_score = –9(72 - 68 - 67 = 207) | {
"input": "CREATE TABLE table_name_78 (margin_of_victory VARCHAR, runner_s__up VARCHAR, winning_score VARCHAR)",
"instruction": "what is the margin of victory when the runner-up is amy alcott and the winning score is –9 (72-68-67=207)?",
"output": "SELECT margin_of_victory FROM table_name_78 WHERE runner_s__up = \"amy alcott\" AND winning_score = –9(72 - 68 - 67 = 207)"
} |
### INSTRUCTION
What's the total built by the United Kingdom and holds 1,300 passengers?
### INPUT
CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR)
### OUTPUT
SELECT COUNT(built) FROM table_name_68 WHERE registry = "united kingdom" AND passengers = 1 OFFSET 300 | {
"input": "CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR)",
"instruction": "What's the total built by the United Kingdom and holds 1,300 passengers?",
"output": "SELECT COUNT(built) FROM table_name_68 WHERE registry = \"united kingdom\" AND passengers = 1 OFFSET 300"
} |
### INSTRUCTION
what is the rank when heat is 9 and the nation is great britain?
### INPUT
CREATE TABLE table_name_21 (rank INTEGER, heat VARCHAR, nation VARCHAR)
### OUTPUT
SELECT SUM(rank) FROM table_name_21 WHERE heat = 9 AND nation = "great britain" | {
"input": "CREATE TABLE table_name_21 (rank INTEGER, heat VARCHAR, nation VARCHAR)",
"instruction": "what is the rank when heat is 9 and the nation is great britain?",
"output": "SELECT SUM(rank) FROM table_name_21 WHERE heat = 9 AND nation = \"great britain\""
} |
### INSTRUCTION
What is the name of the country where moving from is listed as bristol city?
### INPUT
CREATE TABLE table_17634290_7 (country VARCHAR, moving_from VARCHAR)
### OUTPUT
SELECT country FROM table_17634290_7 WHERE moving_from = "Bristol City" | {
"input": "CREATE TABLE table_17634290_7 (country VARCHAR, moving_from VARCHAR)",
"instruction": "What is the name of the country where moving from is listed as bristol city?",
"output": "SELECT country FROM table_17634290_7 WHERE moving_from = \"Bristol City\""
} |
### INSTRUCTION
Name the number of number in season for 26
### INPUT
CREATE TABLE table_22347090_5 (no_in_season VARCHAR, no_in_series VARCHAR)
### OUTPUT
SELECT COUNT(no_in_season) FROM table_22347090_5 WHERE no_in_series = 26 | {
"input": "CREATE TABLE table_22347090_5 (no_in_season VARCHAR, no_in_series VARCHAR)",
"instruction": "Name the number of number in season for 26",
"output": "SELECT COUNT(no_in_season) FROM table_22347090_5 WHERE no_in_series = 26"
} |
### INSTRUCTION
How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?
### INPUT
CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR)
### OUTPUT
SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7 | {
"input": "CREATE TABLE table_name_69 (top_10 VARCHAR, starts VARCHAR, avg_finish VARCHAR)",
"instruction": "How many top 10s belong to the team with a start of 7 and an average finish less than 16.7?",
"output": "SELECT COUNT(top_10) FROM table_name_69 WHERE starts = 7 AND avg_finish < 16.7"
} |
### INSTRUCTION
What is the number of the rank when the time is 2:15.98, in a lane larger than 7?
### INPUT
CREATE TABLE table_name_55 (rank VARCHAR, time VARCHAR, lane VARCHAR)
### OUTPUT
SELECT COUNT(rank) FROM table_name_55 WHERE time = "2:15.98" AND lane > 7 | {
"input": "CREATE TABLE table_name_55 (rank VARCHAR, time VARCHAR, lane VARCHAR)",
"instruction": "What is the number of the rank when the time is 2:15.98, in a lane larger than 7?",
"output": "SELECT COUNT(rank) FROM table_name_55 WHERE time = \"2:15.98\" AND lane > 7"
} |
### INSTRUCTION
Who was the winner at the track where Roberval Andrade won pole, Felipe Giaffone had the fastest lap, and RVR Corinthians Motorsport was the winning team?
### INPUT
CREATE TABLE table_29361707_2 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
### OUTPUT
SELECT winning_driver FROM table_29361707_2 WHERE pole_position = "Roberval Andrade" AND fastest_lap = "Felipe Giaffone" AND winning_team = "RVR Corinthians Motorsport" | {
"input": "CREATE TABLE table_29361707_2 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)",
"instruction": "Who was the winner at the track where Roberval Andrade won pole, Felipe Giaffone had the fastest lap, and RVR Corinthians Motorsport was the winning team?",
"output": "SELECT winning_driver FROM table_29361707_2 WHERE pole_position = \"Roberval Andrade\" AND fastest_lap = \"Felipe Giaffone\" AND winning_team = \"RVR Corinthians Motorsport\""
} |
### INSTRUCTION
Where did Essendon play as the away team?
### INPUT
CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)
### OUTPUT
SELECT venue FROM table_name_69 WHERE away_team = "essendon" | {
"input": "CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR)",
"instruction": "Where did Essendon play as the away team?",
"output": "SELECT venue FROM table_name_69 WHERE away_team = \"essendon\""
} |
### INSTRUCTION
Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?
### INPUT
CREATE TABLE table_name_88 (year_joined INTEGER, mascot VARCHAR, size VARCHAR, previous_conference VARCHAR)
### OUTPUT
SELECT AVG(year_joined) FROM table_name_88 WHERE size > 93 AND previous_conference = "none (new school)" AND mascot = "rebels" | {
"input": "CREATE TABLE table_name_88 (year_joined INTEGER, mascot VARCHAR, size VARCHAR, previous_conference VARCHAR)",
"instruction": "Which Year Joined has a Size larger than 93, and a Previous Conference of none (new school), and a Mascot of rebels?",
"output": "SELECT AVG(year_joined) FROM table_name_88 WHERE size > 93 AND previous_conference = \"none (new school)\" AND mascot = \"rebels\""
} |
### INSTRUCTION
What is the most gold where silver is 0?
### INPUT
CREATE TABLE table_name_42 (gold INTEGER, silver INTEGER)
### OUTPUT
SELECT MAX(gold) FROM table_name_42 WHERE silver < 0 | {
"input": "CREATE TABLE table_name_42 (gold INTEGER, silver INTEGER)",
"instruction": "What is the most gold where silver is 0?",
"output": "SELECT MAX(gold) FROM table_name_42 WHERE silver < 0"
} |
### INSTRUCTION
What is the Placement when the Candidate is Jean-Patrick Berthiaume?
### INPUT
CREATE TABLE table_name_96 (placement VARCHAR, candidate VARCHAR)
### OUTPUT
SELECT placement FROM table_name_96 WHERE candidate = "jean-patrick berthiaume" | {
"input": "CREATE TABLE table_name_96 (placement VARCHAR, candidate VARCHAR)",
"instruction": "What is the Placement when the Candidate is Jean-Patrick Berthiaume?",
"output": "SELECT placement FROM table_name_96 WHERE candidate = \"jean-patrick berthiaume\""
} |
### INSTRUCTION
When did the web accelerator 'CACHEbox' and browser 'Internet Explorer' become compatible?
### INPUT
CREATE TABLE accelerator_compatible_browser (compatible_since_year VARCHAR, browser_id VARCHAR, accelerator_id VARCHAR); CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR)
### OUTPUT
SELECT T1.compatible_since_year FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id WHERE T3.name = 'CACHEbox' AND T2.name = 'Internet Explorer' | {
"input": "CREATE TABLE accelerator_compatible_browser (compatible_since_year VARCHAR, browser_id VARCHAR, accelerator_id VARCHAR); CREATE TABLE browser (id VARCHAR, name VARCHAR); CREATE TABLE web_client_accelerator (id VARCHAR, name VARCHAR)",
"instruction": "When did the web accelerator 'CACHEbox' and browser 'Internet Explorer' become compatible?",
"output": "SELECT T1.compatible_since_year FROM accelerator_compatible_browser AS T1 JOIN browser AS T2 ON T1.browser_id = T2.id JOIN web_client_accelerator AS T3 ON T1.accelerator_id = T3.id WHERE T3.name = 'CACHEbox' AND T2.name = 'Internet Explorer'"
} |
### INSTRUCTION
Which Date has a Competition of pl group b, and Opponents of police, and a Venue of selayang municipal council stadium?
### INPUT
CREATE TABLE table_name_52 (date VARCHAR, venue VARCHAR, competition VARCHAR, opponents VARCHAR)
### OUTPUT
SELECT date FROM table_name_52 WHERE competition = "pl group b" AND opponents = "police" AND venue = "selayang municipal council stadium" | {
"input": "CREATE TABLE table_name_52 (date VARCHAR, venue VARCHAR, competition VARCHAR, opponents VARCHAR)",
"instruction": "Which Date has a Competition of pl group b, and Opponents of police, and a Venue of selayang municipal council stadium?",
"output": "SELECT date FROM table_name_52 WHERE competition = \"pl group b\" AND opponents = \"police\" AND venue = \"selayang municipal council stadium\""
} |
### INSTRUCTION
How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles
### INPUT
CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)
### OUTPUT
SELECT COUNT(womens_doubles) FROM table_14903999_1 WHERE mixed_doubles = "Broddi Kristjánsson Drífa Harðardóttir" | {
"input": "CREATE TABLE table_14903999_1 (womens_doubles VARCHAR, mixed_doubles VARCHAR)",
"instruction": "How many womens doubles had champions the years broddi kristjánsson drífa harðardóttir won mixed doubles",
"output": "SELECT COUNT(womens_doubles) FROM table_14903999_1 WHERE mixed_doubles = \"Broddi Kristjánsson Drífa Harðardóttir\""
} |
### INSTRUCTION
Name the december for record 14-17-4
### INPUT
CREATE TABLE table_27537870_5 (december VARCHAR, record VARCHAR)
### OUTPUT
SELECT december FROM table_27537870_5 WHERE record = "14-17-4" | {
"input": "CREATE TABLE table_27537870_5 (december VARCHAR, record VARCHAR)",
"instruction": "Name the december for record 14-17-4",
"output": "SELECT december FROM table_27537870_5 WHERE record = \"14-17-4\""
} |
### INSTRUCTION
what is the race when the jockey is frankie dettori, the margin is more than 3 and the course is yarmouth?
### INPUT
CREATE TABLE table_name_48 (race VARCHAR, course VARCHAR, jockey VARCHAR, margin VARCHAR)
### OUTPUT
SELECT race FROM table_name_48 WHERE jockey = "frankie dettori" AND margin > 3 AND course = "yarmouth" | {
"input": "CREATE TABLE table_name_48 (race VARCHAR, course VARCHAR, jockey VARCHAR, margin VARCHAR)",
"instruction": "what is the race when the jockey is frankie dettori, the margin is more than 3 and the course is yarmouth?",
"output": "SELECT race FROM table_name_48 WHERE jockey = \"frankie dettori\" AND margin > 3 AND course = \"yarmouth\""
} |
### INSTRUCTION
Show the apartment numbers of apartments with unit status availability of both 0 and 1.
### INPUT
CREATE TABLE View_Unit_Status (apt_id VARCHAR, available_yn VARCHAR); CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR)
### OUTPUT
SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 0 INTERSECT SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 1 | {
"input": "CREATE TABLE View_Unit_Status (apt_id VARCHAR, available_yn VARCHAR); CREATE TABLE Apartments (apt_number VARCHAR, apt_id VARCHAR)",
"instruction": "Show the apartment numbers of apartments with unit status availability of both 0 and 1.",
"output": "SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 0 INTERSECT SELECT T1.apt_number FROM Apartments AS T1 JOIN View_Unit_Status AS T2 ON T1.apt_id = T2.apt_id WHERE T2.available_yn = 1"
} |
### INSTRUCTION
Find the student ID and personal name of the student with at least two enrollments.
### INPUT
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)
### OUTPUT
SELECT T1.student_id, T2.personal_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) >= 2 | {
"input": "CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)",
"instruction": "Find the student ID and personal name of the student with at least two enrollments.",
"output": "SELECT T1.student_id, T2.personal_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) >= 2"
} |
### INSTRUCTION
What is the lowest numbered episode that had a rating/share of 0.9/4 and more than 3.79 million viewers?
### INPUT
### OUTPUT
SELECT MIN(episode__number) FROM table_name_89 WHERE rating/share = 0.9 / 4 AND viewers__millions_ > 3.79 | {
"input": "",
"instruction": "What is the lowest numbered episode that had a rating/share of 0.9/4 and more than 3.79 million viewers?",
"output": "SELECT MIN(episode__number) FROM table_name_89 WHERE rating/share = 0.9 / 4 AND viewers__millions_ > 3.79"
} |
### INSTRUCTION
What driver has 5 as the zan 2?
### INPUT
CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR)
### OUTPUT
SELECT driver FROM table_name_69 WHERE zan_2 = "5" | {
"input": "CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR)",
"instruction": "What driver has 5 as the zan 2?",
"output": "SELECT driver FROM table_name_69 WHERE zan_2 = \"5\""
} |
### INSTRUCTION
What is the Shirt No for Henry Bell Cisnero whose height is less than 190?
### INPUT
CREATE TABLE table_name_24 (shirt_no INTEGER, height VARCHAR, player VARCHAR)
### OUTPUT
SELECT MAX(shirt_no) FROM table_name_24 WHERE height < 190 AND player = "henry bell cisnero" | {
"input": "CREATE TABLE table_name_24 (shirt_no INTEGER, height VARCHAR, player VARCHAR)",
"instruction": "What is the Shirt No for Henry Bell Cisnero whose height is less than 190?",
"output": "SELECT MAX(shirt_no) FROM table_name_24 WHERE height < 190 AND player = \"henry bell cisnero\""
} |
### INSTRUCTION
WHAT IS THE PLAYER WITH T7 PLACE, FOR ENGLAND?
### INPUT
CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, country VARCHAR)
### OUTPUT
SELECT player FROM table_name_92 WHERE place = "t7" AND country = "england" | {
"input": "CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, country VARCHAR)",
"instruction": "WHAT IS THE PLAYER WITH T7 PLACE, FOR ENGLAND?",
"output": "SELECT player FROM table_name_92 WHERE place = \"t7\" AND country = \"england\""
} |
### INSTRUCTION
For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team.
### INPUT
CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR)
### OUTPUT
SELECT opponent_team FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND outcome = "Winner" AND opponent = "Sandra Kristjánsdóttir" | {
"input": "CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR)",
"instruction": "For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team.",
"output": "SELECT opponent_team FROM table_27877656_7 WHERE edition = \"2009 Europe/Africa Group IIIB\" AND outcome = \"Winner\" AND opponent = \"Sandra Kristjánsdóttir\""
} |
### INSTRUCTION
What venue has an against over 14, an opposing team of scotland, and a status of five nations?
### INPUT
CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR, opposing_teams VARCHAR)
### OUTPUT
SELECT venue FROM table_name_16 WHERE against > 14 AND opposing_teams = "scotland" AND status = "five nations" | {
"input": "CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR, opposing_teams VARCHAR)",
"instruction": "What venue has an against over 14, an opposing team of scotland, and a status of five nations?",
"output": "SELECT venue FROM table_name_16 WHERE against > 14 AND opposing_teams = \"scotland\" AND status = \"five nations\""
} |
### INSTRUCTION
Which station has a license in Fort Collins, Colorado?
### INPUT
CREATE TABLE table_1353096_2 (station VARCHAR, city_of_license_market VARCHAR)
### OUTPUT
SELECT station FROM table_1353096_2 WHERE city_of_license_market = "Fort Collins, Colorado" | {
"input": "CREATE TABLE table_1353096_2 (station VARCHAR, city_of_license_market VARCHAR)",
"instruction": "Which station has a license in Fort Collins, Colorado?",
"output": "SELECT station FROM table_1353096_2 WHERE city_of_license_market = \"Fort Collins, Colorado\""
} |
### INSTRUCTION
What team did the Flames play against when 526 people attended the game?
### INPUT
CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)
### OUTPUT
SELECT opponent FROM table_name_11 WHERE attendance = 526 | {
"input": "CREATE TABLE table_name_11 (opponent VARCHAR, attendance VARCHAR)",
"instruction": "What team did the Flames play against when 526 people attended the game?",
"output": "SELECT opponent FROM table_name_11 WHERE attendance = 526"
} |
### INSTRUCTION
What year did jaroslav vojtek category:articles with hcards Direct?
### INPUT
CREATE TABLE table_22032599_1 (year__ceremony_ VARCHAR, director VARCHAR)
### OUTPUT
SELECT year__ceremony_ FROM table_22032599_1 WHERE director = "Jaroslav Vojtek Category:Articles with hCards" | {
"input": "CREATE TABLE table_22032599_1 (year__ceremony_ VARCHAR, director VARCHAR)",
"instruction": "What year did jaroslav vojtek category:articles with hcards Direct?",
"output": "SELECT year__ceremony_ FROM table_22032599_1 WHERE director = \"Jaroslav Vojtek Category:Articles with hCards\""
} |
### INSTRUCTION
What is the M-R Romaja for the province having a capital of Cheongju?
### INPUT
CREATE TABLE table_name_34 (m_r_romaja VARCHAR, capital VARCHAR)
### OUTPUT
SELECT m_r_romaja FROM table_name_34 WHERE capital = "cheongju" | {
"input": "CREATE TABLE table_name_34 (m_r_romaja VARCHAR, capital VARCHAR)",
"instruction": "What is the M-R Romaja for the province having a capital of Cheongju?",
"output": "SELECT m_r_romaja FROM table_name_34 WHERE capital = \"cheongju\""
} |
### INSTRUCTION
What is the official language spoken in the country whose head of state is Beatrix?
### INPUT
CREATE TABLE country (Code VARCHAR, HeadOfState VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR, IsOfficial VARCHAR)
### OUTPUT
SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = "Beatrix" AND T2.IsOfficial = "T" | {
"input": "CREATE TABLE country (Code VARCHAR, HeadOfState VARCHAR); CREATE TABLE countrylanguage (Language VARCHAR, CountryCode VARCHAR, IsOfficial VARCHAR)",
"instruction": "What is the official language spoken in the country whose head of state is Beatrix?",
"output": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = \"Beatrix\" AND T2.IsOfficial = \"T\""
} |
### INSTRUCTION
Show the average share count of transactions for different investors.
### INPUT
CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER)
### OUTPUT
SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id | {
"input": "CREATE TABLE TRANSACTIONS (investor_id VARCHAR, share_count INTEGER)",
"instruction": "Show the average share count of transactions for different investors.",
"output": "SELECT investor_id, AVG(share_count) FROM TRANSACTIONS GROUP BY investor_id"
} |
### INSTRUCTION
Which Number of households has a County of cook, and Population smaller than 5,176?
### INPUT
CREATE TABLE table_name_98 (number_of_households INTEGER, county VARCHAR, population VARCHAR)
### OUTPUT
SELECT AVG(number_of_households) FROM table_name_98 WHERE county = "cook" AND population < 5 OFFSET 176 | {
"input": "CREATE TABLE table_name_98 (number_of_households INTEGER, county VARCHAR, population VARCHAR)",
"instruction": "Which Number of households has a County of cook, and Population smaller than 5,176?",
"output": "SELECT AVG(number_of_households) FROM table_name_98 WHERE county = \"cook\" AND population < 5 OFFSET 176"
} |
### INSTRUCTION
How many car makers are there in each continents? List the continent name and the count.
### INPUT
CREATE TABLE COUNTRIES (continent VARCHAR, CountryId VARCHAR); CREATE TABLE CONTINENTS (Continent VARCHAR, ContId VARCHAR); CREATE TABLE car_makers (Country VARCHAR)
### OUTPUT
SELECT T1.Continent, COUNT(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent | {
"input": "CREATE TABLE COUNTRIES (continent VARCHAR, CountryId VARCHAR); CREATE TABLE CONTINENTS (Continent VARCHAR, ContId VARCHAR); CREATE TABLE car_makers (Country VARCHAR)",
"instruction": "How many car makers are there in each continents? List the continent name and the count.",
"output": "SELECT T1.Continent, COUNT(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent"
} |
### INSTRUCTION
Which City has 600kw 500kw ERP ?
### INPUT
CREATE TABLE table_name_86 (city VARCHAR, erp__analog__digital_ VARCHAR)
### OUTPUT
SELECT city FROM table_name_86 WHERE erp__analog__digital_ = "600kw 500kw" | {
"input": "CREATE TABLE table_name_86 (city VARCHAR, erp__analog__digital_ VARCHAR)",
"instruction": "Which City has 600kw 500kw ERP ?",
"output": "SELECT city FROM table_name_86 WHERE erp__analog__digital_ = \"600kw 500kw\""
} |
### INSTRUCTION
what is the title of the episode with the director pamela fryman and the production code 2alh07?
### INPUT
CREATE TABLE table_26701861_1 (title VARCHAR, director VARCHAR, production_code VARCHAR)
### OUTPUT
SELECT title FROM table_26701861_1 WHERE director = "Pamela Fryman" AND production_code = "2ALH07" | {
"input": "CREATE TABLE table_26701861_1 (title VARCHAR, director VARCHAR, production_code VARCHAR)",
"instruction": "what is the title of the episode with the director pamela fryman and the production code 2alh07?",
"output": "SELECT title FROM table_26701861_1 WHERE director = \"Pamela Fryman\" AND production_code = \"2ALH07\""
} |
### INSTRUCTION
WHAT ARE THE BYES WITH A WIN SMALLER THAN 16, 8 LOSSES, AND AT PENSHURST, WITH AGAINST SMALLER THAN 1405?
### INPUT
CREATE TABLE table_name_24 (byes INTEGER, against VARCHAR, mininera_dfl VARCHAR, wins VARCHAR, losses VARCHAR)
### OUTPUT
SELECT SUM(byes) FROM table_name_24 WHERE wins < 16 AND losses = 8 AND mininera_dfl = "penshurst" AND against < 1405 | {
"input": "CREATE TABLE table_name_24 (byes INTEGER, against VARCHAR, mininera_dfl VARCHAR, wins VARCHAR, losses VARCHAR)",
"instruction": "WHAT ARE THE BYES WITH A WIN SMALLER THAN 16, 8 LOSSES, AND AT PENSHURST, WITH AGAINST SMALLER THAN 1405?",
"output": "SELECT SUM(byes) FROM table_name_24 WHERE wins < 16 AND losses = 8 AND mininera_dfl = \"penshurst\" AND against < 1405"
} |
### INSTRUCTION
What is the sum of Games for Allofs, Klaus, with Goals less than 177?
### INPUT
CREATE TABLE table_name_53 (games INTEGER, name VARCHAR, goals VARCHAR)
### OUTPUT
SELECT SUM(games) FROM table_name_53 WHERE name = "allofs, klaus" AND goals < 177 | {
"input": "CREATE TABLE table_name_53 (games INTEGER, name VARCHAR, goals VARCHAR)",
"instruction": "What is the sum of Games for Allofs, Klaus, with Goals less than 177?",
"output": "SELECT SUM(games) FROM table_name_53 WHERE name = \"allofs, klaus\" AND goals < 177"
} |
### INSTRUCTION
Find the first name and age of the students who are playing both Football and Lacrosse.
### INPUT
CREATE TABLE Student (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR); CREATE TABLE Sportsinfo (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR)
### OUTPUT
SELECT fname, age FROM Student WHERE StuID IN (SELECT StuID FROM Sportsinfo WHERE SportName = "Football" INTERSECT SELECT StuID FROM Sportsinfo WHERE SportName = "Lacrosse") | {
"input": "CREATE TABLE Student (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR); CREATE TABLE Sportsinfo (fname VARCHAR, age VARCHAR, StuID VARCHAR, SportName VARCHAR)",
"instruction": "Find the first name and age of the students who are playing both Football and Lacrosse.",
"output": "SELECT fname, age FROM Student WHERE StuID IN (SELECT StuID FROM Sportsinfo WHERE SportName = \"Football\" INTERSECT SELECT StuID FROM Sportsinfo WHERE SportName = \"Lacrosse\")"
} |
### INSTRUCTION
What is the Propulsion for the model offered in 2003-2004 by neoplan usa?
### INPUT
CREATE TABLE table_name_68 (propulsion VARCHAR, order_year VARCHAR, manufacturer VARCHAR)
### OUTPUT
SELECT propulsion FROM table_name_68 WHERE order_year = "2003-2004" AND manufacturer = "neoplan usa" | {
"input": "CREATE TABLE table_name_68 (propulsion VARCHAR, order_year VARCHAR, manufacturer VARCHAR)",
"instruction": "What is the Propulsion for the model offered in 2003-2004 by neoplan usa?",
"output": "SELECT propulsion FROM table_name_68 WHERE order_year = \"2003-2004\" AND manufacturer = \"neoplan usa\""
} |
### INSTRUCTION
Which countries have a scouting organization that was founded in 1926, and joined WOSM in 1930?
### INPUT
CREATE TABLE table_104858_1 (country VARCHAR, year_current_scouting_organization_joined_wosm VARCHAR, year_member_organization_was_founded VARCHAR)
### OUTPUT
SELECT country FROM table_104858_1 WHERE year_current_scouting_organization_joined_wosm = "1930" AND year_member_organization_was_founded = "1926" | {
"input": "CREATE TABLE table_104858_1 (country VARCHAR, year_current_scouting_organization_joined_wosm VARCHAR, year_member_organization_was_founded VARCHAR)",
"instruction": "Which countries have a scouting organization that was founded in 1926, and joined WOSM in 1930?",
"output": "SELECT country FROM table_104858_1 WHERE year_current_scouting_organization_joined_wosm = \"1930\" AND year_member_organization_was_founded = \"1926\""
} |
### INSTRUCTION
When did the opponent knockout Barry Prior in more than 2 rounds?
### INPUT
CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)
### OUTPUT
SELECT date FROM table_name_53 WHERE method = "knockout" AND round > 2 AND opponent = "barry prior" | {
"input": "CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR, method VARCHAR, round VARCHAR)",
"instruction": "When did the opponent knockout Barry Prior in more than 2 rounds?",
"output": "SELECT date FROM table_name_53 WHERE method = \"knockout\" AND round > 2 AND opponent = \"barry prior\""
} |
### INSTRUCTION
What is the project id and detail for the project with at least two documents?
### INPUT
CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Documents (project_id VARCHAR)
### OUTPUT
SELECT T1.project_id, T1.project_details FROM Projects AS T1 JOIN Documents AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id HAVING COUNT(*) > 2 | {
"input": "CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Documents (project_id VARCHAR)",
"instruction": "What is the project id and detail for the project with at least two documents?",
"output": "SELECT T1.project_id, T1.project_details FROM Projects AS T1 JOIN Documents AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id HAVING COUNT(*) > 2"
} |
### INSTRUCTION
Find the average age of students who live in the city with code "NYC" and have secretary votes in the spring election cycle.
### INPUT
CREATE TABLE STUDENT (Age INTEGER, StuID VARCHAR, city_code VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)
### OUTPUT
SELECT AVG(T1.Age) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = SECRETARY_Vote WHERE T1.city_code = "NYC" AND T2.Election_Cycle = "Spring" | {
"input": "CREATE TABLE STUDENT (Age INTEGER, StuID VARCHAR, city_code VARCHAR); CREATE TABLE VOTING_RECORD (Election_Cycle VARCHAR)",
"instruction": "Find the average age of students who live in the city with code \"NYC\" and have secretary votes in the spring election cycle.",
"output": "SELECT AVG(T1.Age) FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = SECRETARY_Vote WHERE T1.city_code = \"NYC\" AND T2.Election_Cycle = \"Spring\""
} |
### INSTRUCTION
What is Country, when Year is "1994"?
### INPUT
CREATE TABLE table_name_93 (country VARCHAR, year VARCHAR)
### OUTPUT
SELECT country FROM table_name_93 WHERE year = 1994 | {
"input": "CREATE TABLE table_name_93 (country VARCHAR, year VARCHAR)",
"instruction": "What is Country, when Year is \"1994\"?",
"output": "SELECT country FROM table_name_93 WHERE year = 1994"
} |
### INSTRUCTION
Name the country when dar is 16:9 for italian english for disney xd +2
### INPUT
CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR)
### OUTPUT
SELECT country FROM table_15887683_9 WHERE dar = "16:9" AND language = "Italian English" AND television_service = "Disney XD +2" | {
"input": "CREATE TABLE table_15887683_9 (country VARCHAR, television_service VARCHAR, dar VARCHAR, language VARCHAR)",
"instruction": "Name the country when dar is 16:9 for italian english for disney xd +2",
"output": "SELECT country FROM table_15887683_9 WHERE dar = \"16:9\" AND language = \"Italian English\" AND television_service = \"Disney XD +2\""
} |
### INSTRUCTION
What is the Date with an Opponent that is flavia pennetta?
### INPUT
CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR)
### OUTPUT
SELECT date FROM table_name_53 WHERE opponent = "flavia pennetta" | {
"input": "CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR)",
"instruction": "What is the Date with an Opponent that is flavia pennetta?",
"output": "SELECT date FROM table_name_53 WHERE opponent = \"flavia pennetta\""
} |
### INSTRUCTION
Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260
### INPUT
CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)
### OUTPUT
SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260 | {
"input": "CREATE TABLE table_1754531_4 (domestic_freight VARCHAR, international_mail VARCHAR, domestic_mail VARCHAR)",
"instruction": "Namw the total number for domestic freight for international mail is larger than 1.0 with domestic mail for 260",
"output": "SELECT COUNT(domestic_freight) FROM table_1754531_4 WHERE international_mail > 1.0 AND domestic_mail = 260"
} |
### INSTRUCTION
What is the name of the tourist attraction that is associated with the photo "game1"?
### INPUT
CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE PHOTOS (Tourist_Attraction_ID VARCHAR, Name VARCHAR)
### OUTPUT
SELECT T2.Name FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T1.Name = "game1" | {
"input": "CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Tourist_Attraction_ID VARCHAR); CREATE TABLE PHOTOS (Tourist_Attraction_ID VARCHAR, Name VARCHAR)",
"instruction": "What is the name of the tourist attraction that is associated with the photo \"game1\"?",
"output": "SELECT T2.Name FROM PHOTOS AS T1 JOIN TOURIST_ATTRACTIONS AS T2 ON T1.Tourist_Attraction_ID = T2.Tourist_Attraction_ID WHERE T1.Name = \"game1\""
} |
### INSTRUCTION
How many total No Results occured when the team had less than 46 wins and more than 16 matches?
### INPUT
CREATE TABLE table_name_63 (no_result INTEGER, matches VARCHAR, wins VARCHAR)
### OUTPUT
SELECT SUM(no_result) FROM table_name_63 WHERE matches > 16 AND wins < 46 | {
"input": "CREATE TABLE table_name_63 (no_result INTEGER, matches VARCHAR, wins VARCHAR)",
"instruction": "How many total No Results occured when the team had less than 46 wins and more than 16 matches?",
"output": "SELECT SUM(no_result) FROM table_name_63 WHERE matches > 16 AND wins < 46"
} |
### INSTRUCTION
What is the average goals for Jimmy Greaves, and matches more than 516?
### INPUT
CREATE TABLE table_name_91 (goals INTEGER, name VARCHAR, matches VARCHAR)
### OUTPUT
SELECT AVG(goals) FROM table_name_91 WHERE name = "jimmy greaves" AND matches > 516 | {
"input": "CREATE TABLE table_name_91 (goals INTEGER, name VARCHAR, matches VARCHAR)",
"instruction": "What is the average goals for Jimmy Greaves, and matches more than 516?",
"output": "SELECT AVG(goals) FROM table_name_91 WHERE name = \"jimmy greaves\" AND matches > 516"
} |
### INSTRUCTION
During which years did number 13 play for the Rockets?
### INPUT
CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR)
### OUTPUT
SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = "13" | {
"input": "CREATE TABLE table_11734041_3 (years_for_rockets VARCHAR, no_s_ VARCHAR)",
"instruction": "During which years did number 13 play for the Rockets?",
"output": "SELECT years_for_rockets FROM table_11734041_3 WHERE no_s_ = \"13\""
} |
### INSTRUCTION
What is the number of games for Roger Merrett?
### INPUT
CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)
### OUTPUT
SELECT games FROM table_name_39 WHERE player = "roger merrett" | {
"input": "CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)",
"instruction": "What is the number of games for Roger Merrett?",
"output": "SELECT games FROM table_name_39 WHERE player = \"roger merrett\""
} |
### INSTRUCTION
How many distinct types of accounts are there?
### INPUT
CREATE TABLE customer (acc_type VARCHAR)
### OUTPUT
SELECT COUNT(DISTINCT acc_type) FROM customer | {
"input": "CREATE TABLE customer (acc_type VARCHAR)",
"instruction": "How many distinct types of accounts are there?",
"output": "SELECT COUNT(DISTINCT acc_type) FROM customer"
} |
### INSTRUCTION
What record was reached with a score of 7 - 2?
### INPUT
CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)
### OUTPUT
SELECT record FROM table_name_8 WHERE score = "7 - 2" | {
"input": "CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)",
"instruction": "What record was reached with a score of 7 - 2?",
"output": "SELECT record FROM table_name_8 WHERE score = \"7 - 2\""
} |
### INSTRUCTION
What is the Transfer window, when the Transfer fee is "free", and when the item "Moving to" is Norwich City?
### INPUT
CREATE TABLE table_name_30 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)
### OUTPUT
SELECT transfer_window FROM table_name_30 WHERE transfer_fee = "free" AND moving_to = "norwich city" | {
"input": "CREATE TABLE table_name_30 (transfer_window VARCHAR, transfer_fee VARCHAR, moving_to VARCHAR)",
"instruction": "What is the Transfer window, when the Transfer fee is \"free\", and when the item \"Moving to\" is Norwich City?",
"output": "SELECT transfer_window FROM table_name_30 WHERE transfer_fee = \"free\" AND moving_to = \"norwich city\""
} |
### INSTRUCTION
How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?
### INPUT
CREATE TABLE table_name_2 (winners INTEGER, first_title VARCHAR, wins VARCHAR, country VARCHAR)
### OUTPUT
SELECT AVG(winners) FROM table_name_2 WHERE wins = 1 AND country = "fiji" AND first_title < 2004 | {
"input": "CREATE TABLE table_name_2 (winners INTEGER, first_title VARCHAR, wins VARCHAR, country VARCHAR)",
"instruction": "How many Winners have Wins of 1 and a Country of fiji and a First title smaller than 2004?",
"output": "SELECT AVG(winners) FROM table_name_2 WHERE wins = 1 AND country = \"fiji\" AND first_title < 2004"
} |
### INSTRUCTION
Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport?
### INPUT
CREATE TABLE table_name_66 (total_cargo__metric_tonnes_ INTEGER, rank VARCHAR, airport VARCHAR)
### OUTPUT
SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = "shanghai pudong international airport" | {
"input": "CREATE TABLE table_name_66 (total_cargo__metric_tonnes_ INTEGER, rank VARCHAR, airport VARCHAR)",
"instruction": "Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport?",
"output": "SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = \"shanghai pudong international airport\""
} |
### INSTRUCTION
Which ranking has money of $82 and Al Watrous as the player?
### INPUT
CREATE TABLE table_name_64 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)
### OUTPUT
SELECT place FROM table_name_64 WHERE money___$__ = 82 AND player = "al watrous" | {
"input": "CREATE TABLE table_name_64 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)",
"instruction": "Which ranking has money of $82 and Al Watrous as the player?",
"output": "SELECT place FROM table_name_64 WHERE money___$__ = 82 AND player = \"al watrous\""
} |
### INSTRUCTION
What are the order details of the products with price higher than 2000?
### INPUT
CREATE TABLE Products (Product_ID VARCHAR, Product_price INTEGER); CREATE TABLE ORDER_ITEMS (Other_Item_Details VARCHAR, Product_ID VARCHAR)
### OUTPUT
SELECT T1.Other_Item_Details FROM ORDER_ITEMS AS T1 JOIN Products AS T2 ON T1.Product_ID = T2.Product_ID WHERE T2.Product_price > 2000 | {
"input": "CREATE TABLE Products (Product_ID VARCHAR, Product_price INTEGER); CREATE TABLE ORDER_ITEMS (Other_Item_Details VARCHAR, Product_ID VARCHAR)",
"instruction": "What are the order details of the products with price higher than 2000?",
"output": "SELECT T1.Other_Item_Details FROM ORDER_ITEMS AS T1 JOIN Products AS T2 ON T1.Product_ID = T2.Product_ID WHERE T2.Product_price > 2000"
} |
### INSTRUCTION
What place did Jack McGrath start in when he received a qual score of 141.033?
### INPUT
CREATE TABLE table_name_72 (start VARCHAR, qual VARCHAR)
### OUTPUT
SELECT start FROM table_name_72 WHERE qual = "141.033" | {
"input": "CREATE TABLE table_name_72 (start VARCHAR, qual VARCHAR)",
"instruction": "What place did Jack McGrath start in when he received a qual score of 141.033?",
"output": "SELECT start FROM table_name_72 WHERE qual = \"141.033\""
} |
### INSTRUCTION
Which city did kpnz-tv provide coverage for?
### INPUT
CREATE TABLE table_2523809_1 (coverage VARCHAR, callsign VARCHAR)
### OUTPUT
SELECT coverage FROM table_2523809_1 WHERE callsign = "KPNZ-TV" | {
"input": "CREATE TABLE table_2523809_1 (coverage VARCHAR, callsign VARCHAR)",
"instruction": "Which city did kpnz-tv provide coverage for?",
"output": "SELECT coverage FROM table_2523809_1 WHERE callsign = \"KPNZ-TV\""
} |
### INSTRUCTION
Which countries in europe have at least 3 car manufacturers?
### INPUT
CREATE TABLE COUNTRIES (CountryName VARCHAR, Continent VARCHAR, CountryId VARCHAR); CREATE TABLE CONTINENTS (ContId VARCHAR, Continent VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR)
### OUTPUT
SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING COUNT(*) >= 3 | {
"input": "CREATE TABLE COUNTRIES (CountryName VARCHAR, Continent VARCHAR, CountryId VARCHAR); CREATE TABLE CONTINENTS (ContId VARCHAR, Continent VARCHAR); CREATE TABLE CAR_MAKERS (Country VARCHAR)",
"instruction": "Which countries in europe have at least 3 car manufacturers?",
"output": "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING COUNT(*) >= 3"
} |
### INSTRUCTION
In which season did Jimmy Eriksson win the championship for Team Lotus?
### INPUT
CREATE TABLE table_name_40 (season VARCHAR, team VARCHAR, champion VARCHAR)
### OUTPUT
SELECT season FROM table_name_40 WHERE team = "lotus" AND champion = "jimmy eriksson" | {
"input": "CREATE TABLE table_name_40 (season VARCHAR, team VARCHAR, champion VARCHAR)",
"instruction": "In which season did Jimmy Eriksson win the championship for Team Lotus?",
"output": "SELECT season FROM table_name_40 WHERE team = \"lotus\" AND champion = \"jimmy eriksson\""
} |
### INSTRUCTION
When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi?
### INPUT
CREATE TABLE table_21576644_2 (ladies_1st_xi VARCHAR, mens_2nd_xi VARCHAR)
### OUTPUT
SELECT ladies_1st_xi FROM table_21576644_2 WHERE mens_2nd_xi = "10th, South West District 1" | {
"input": "CREATE TABLE table_21576644_2 (ladies_1st_xi VARCHAR, mens_2nd_xi VARCHAR)",
"instruction": "When 10th, south west district 1 is the mens 2nd xi what is the ladies 1st xi?",
"output": "SELECT ladies_1st_xi FROM table_21576644_2 WHERE mens_2nd_xi = \"10th, South West District 1\""
} |
### INSTRUCTION
Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?
### INPUT
CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
### OUTPUT
SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = "jhajjar" AND reserved_for___sc___st__none_ = "sc" AND constituency_number < 66 | {
"input": "CREATE TABLE table_name_56 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)",
"instruction": "Which Number of electorates (2009) has a District of jhajjar, and a Reserved for (SC/ST/None) of sc, and a Constituency number smaller than 66?",
"output": "SELECT COUNT(number_of_electorates__2009_) FROM table_name_56 WHERE district = \"jhajjar\" AND reserved_for___sc___st__none_ = \"sc\" AND constituency_number < 66"
} |
### INSTRUCTION
what is the date of vacancy when the date of appointment is 1 january 2009?
### INPUT
CREATE TABLE table_name_54 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR)
### OUTPUT
SELECT date_of_vacancy FROM table_name_54 WHERE date_of_appointment = "1 january 2009" | {
"input": "CREATE TABLE table_name_54 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR)",
"instruction": "what is the date of vacancy when the date of appointment is 1 january 2009?",
"output": "SELECT date_of_vacancy FROM table_name_54 WHERE date_of_appointment = \"1 january 2009\""
} |
### INSTRUCTION
Which Award has a Year smaller than 2004, and a Work of the clone, and a Result of won, and a Category of favourite actress?
### INPUT
CREATE TABLE table_name_45 (award VARCHAR, category VARCHAR, result VARCHAR, year VARCHAR, work VARCHAR)
### OUTPUT
SELECT award FROM table_name_45 WHERE year < 2004 AND work = "the clone" AND result = "won" AND category = "favourite actress" | {
"input": "CREATE TABLE table_name_45 (award VARCHAR, category VARCHAR, result VARCHAR, year VARCHAR, work VARCHAR)",
"instruction": "Which Award has a Year smaller than 2004, and a Work of the clone, and a Result of won, and a Category of favourite actress?",
"output": "SELECT award FROM table_name_45 WHERE year < 2004 AND work = \"the clone\" AND result = \"won\" AND category = \"favourite actress\""
} |
### INSTRUCTION
Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club?
### INPUT
CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR)
### OUTPUT
SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = "ismaël bangoura" | {
"input": "CREATE TABLE table_name_39 (moving_to VARCHAR, name VARCHAR, year VARCHAR, rank VARCHAR)",
"instruction": "Ismaël Bangoura with a rank larger than 5 after the year 2005 was moving to what football club?",
"output": "SELECT moving_to FROM table_name_39 WHERE year > 2005 AND rank > 5 AND name = \"ismaël bangoura\""
} |
### INSTRUCTION
A list of the top 5 countries by number of invoices. List country name and number of invoices.
### INPUT
CREATE TABLE invoices (billing_country VARCHAR)
### OUTPUT
SELECT billing_country, COUNT(*) FROM invoices GROUP BY billing_country ORDER BY COUNT(*) DESC LIMIT 5 | {
"input": "CREATE TABLE invoices (billing_country VARCHAR)",
"instruction": "A list of the top 5 countries by number of invoices. List country name and number of invoices.",
"output": "SELECT billing_country, COUNT(*) FROM invoices GROUP BY billing_country ORDER BY COUNT(*) DESC LIMIT 5"
} |
### INSTRUCTION
What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?
### INPUT
CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR)
### OUTPUT
SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = "02.03.1973" | {
"input": "CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR)",
"instruction": "What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?",
"output": "SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = \"02.03.1973\""
} |
### INSTRUCTION
During the voting order 11, when the commentator was pierre tchernia, who was the spokesperson?
### INPUT
CREATE TABLE table_name_7 (spokespersons VARCHAR, commentator VARCHAR, voting_order VARCHAR)
### OUTPUT
SELECT spokespersons FROM table_name_7 WHERE commentator = "pierre tchernia" AND voting_order = 11 | {
"input": "CREATE TABLE table_name_7 (spokespersons VARCHAR, commentator VARCHAR, voting_order VARCHAR)",
"instruction": "During the voting order 11, when the commentator was pierre tchernia, who was the spokesperson?",
"output": "SELECT spokespersons FROM table_name_7 WHERE commentator = \"pierre tchernia\" AND voting_order = 11"
} |
### INSTRUCTION
What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1?
### INPUT
CREATE TABLE table_name_69 (roll VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)
### OUTPUT
SELECT COUNT(roll) FROM table_name_69 WHERE decile > 1 AND authority = "integrated" AND name = "bishop viard college" | {
"input": "CREATE TABLE table_name_69 (roll VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)",
"instruction": "What is the roll of Bishop Viard College (An Integrated College), which has a decile larger than 1?",
"output": "SELECT COUNT(roll) FROM table_name_69 WHERE decile > 1 AND authority = \"integrated\" AND name = \"bishop viard college\""
} |
### INSTRUCTION
Where is il-36β located?
### INPUT
CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)
### OUTPUT
SELECT chromosomal_location FROM table_29871617_1 WHERE name = "IL-36β" | {
"input": "CREATE TABLE table_29871617_1 (chromosomal_location VARCHAR, name VARCHAR)",
"instruction": "Where is il-36β located?",
"output": "SELECT chromosomal_location FROM table_29871617_1 WHERE name = \"IL-36β\""
} |
### INSTRUCTION
Who has a reported age of 111 years, 66 days?
### INPUT
CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR)
### OUTPUT
SELECT name FROM table_name_38 WHERE reported_age = "111 years, 66 days" | {
"input": "CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR)",
"instruction": "Who has a reported age of 111 years, 66 days?",
"output": "SELECT name FROM table_name_38 WHERE reported_age = \"111 years, 66 days\""
} |
### INSTRUCTION
What is the number of career caps for a full back, when tour Apps is smaller than 29?
### INPUT
CREATE TABLE table_name_78 (career_caps VARCHAR, position VARCHAR, tour_apps VARCHAR)
### OUTPUT
SELECT COUNT(career_caps) FROM table_name_78 WHERE position = "full back" AND tour_apps < 29 | {
"input": "CREATE TABLE table_name_78 (career_caps VARCHAR, position VARCHAR, tour_apps VARCHAR)",
"instruction": "What is the number of career caps for a full back, when tour Apps is smaller than 29?",
"output": "SELECT COUNT(career_caps) FROM table_name_78 WHERE position = \"full back\" AND tour_apps < 29"
} |
### INSTRUCTION
Name the record for verizon center 20,173
### INPUT
CREATE TABLE table_17288845_8 (record VARCHAR, location_attendance VARCHAR)
### OUTPUT
SELECT record FROM table_17288845_8 WHERE location_attendance = "Verizon Center 20,173" | {
"input": "CREATE TABLE table_17288845_8 (record VARCHAR, location_attendance VARCHAR)",
"instruction": "Name the record for verizon center 20,173",
"output": "SELECT record FROM table_17288845_8 WHERE location_attendance = \"Verizon Center 20,173\""
} |
Subsets and Splits