training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_12434380_1 (institution VARCHAR, mascot VARCHAR)
###human: What is the name of the institution with the mascot of blue devils?
###assistant: SELECT institution FROM table_12434380_1 WHERE mascot = "Blue Devils" |
###context:CREATE TABLE table_12419515_5 (written_by VARCHAR, series__number VARCHAR)
###human: Name the people who wrote number 67
###assistant: SELECT written_by FROM table_12419515_5 WHERE series__number = 67 |
###context:CREATE TABLE table_12419515_5 (season__number INTEGER, written_by VARCHAR)
###human: Name the number of season that was written by adam milch
###assistant: SELECT MIN(season__number) FROM table_12419515_5 WHERE written_by = "Adam Milch" |
###context:CREATE TABLE table_12419515_5 (season__number VARCHAR, directed_by VARCHAR)
###human: Name the season number for the direction of patrick norris
###assistant: SELECT season__number FROM table_12419515_5 WHERE directed_by = "Patrick Norris" |
###context:CREATE TABLE table_12451376_1 (writer_s_ VARCHAR, director VARCHAR)
###human: Who wrote the episode when the director was dean white?
###assistant: SELECT writer_s_ FROM table_12451376_1 WHERE director = "Dean White" |
###context:CREATE TABLE table_12451376_2 (title VARCHAR, production_code VARCHAR)
###human: Please list the total number of title with the production code 211.
###assistant: SELECT COUNT(title) FROM table_12451376_2 WHERE production_code = 211 |
###context:CREATE TABLE table_12451376_2 (title VARCHAR, season_2_ep__number VARCHAR)
###human: Please give me the title of Season 2, episode 1.
###assistant: SELECT title FROM table_12451376_2 WHERE season_2_ep__number = 1 |
###context:CREATE TABLE table_12451376_2 (writer_s_ VARCHAR, production_code VARCHAR)
###human: Provide me with the name of the writer with the production code 210.
###assistant: SELECT writer_s_ FROM table_12451376_2 WHERE production_code = 210 |
###context:CREATE TABLE table_12451376_2 (original_airdate VARCHAR, production_code VARCHAR)
###human: What is the number of the original airdate with the production code 208.
###assistant: SELECT COUNT(original_airdate) FROM table_12451376_2 WHERE production_code = 208 |
###context:CREATE TABLE table_1251878_3 (frame_size VARCHAR, maximum_fps VARCHAR)
###human: What size is a 30 frames per minute
###assistant: SELECT frame_size FROM table_1251878_3 WHERE maximum_fps = 30 |
###context:CREATE TABLE table_1251878_3 (aspect_ratio VARCHAR, width INTEGER)
###human: What is the size when the frame is bigger than for 4096.0
###assistant: SELECT aspect_ratio FROM table_1251878_3 WHERE width > 4096.0 |
###context:CREATE TABLE table_1251878_3 (least_compression_at_24_fps VARCHAR, mpix VARCHAR)
###human: What is the smallest frames per minute when the pixels are 5.0
###assistant: SELECT least_compression_at_24_fps FROM table_1251878_3 WHERE mpix = "5.0" |
###context:CREATE TABLE table_1251878_1 (width VARCHAR, frame_size VARCHAR)
###human: what's the width with frame size being 4.5k
###assistant: SELECT width FROM table_1251878_1 WHERE frame_size = "4.5K" |
###context:CREATE TABLE table_12547903_2 (callsign VARCHAR, location__transmitter_site_ VARCHAR)
###human: What is the callsign of tuguegarao
###assistant: SELECT callsign FROM table_12547903_2 WHERE location__transmitter_site_ = "Tuguegarao" |
###context:CREATE TABLE table_12547903_2 (station_type VARCHAR, location__transmitter_site_ VARCHAR)
###human: What is the station type of calbayog
###assistant: SELECT station_type FROM table_12547903_2 WHERE location__transmitter_site_ = "Calbayog" |
###context:CREATE TABLE table_12547903_2 (station_type VARCHAR, branding VARCHAR)
###human: What is the station type of smni tv-26 naga
###assistant: SELECT station_type FROM table_12547903_2 WHERE branding = "SMNI TV-26 Naga" |
###context:CREATE TABLE table_12547903_3 (location VARCHAR, callsign VARCHAR)
###human: How many places featured the DXCL Callsign?
###assistant: SELECT COUNT(location) FROM table_12547903_3 WHERE callsign = "DXCL" |
###context:CREATE TABLE table_12547903_3 (branding VARCHAR, location VARCHAR)
###human: What was the branding in Dagupan?
###assistant: SELECT branding FROM table_12547903_3 WHERE location = "Dagupan" |
###context:CREATE TABLE table_12547903_3 (callsign VARCHAR, location VARCHAR)
###human: What was the callsign in Zamboanga?
###assistant: SELECT callsign FROM table_12547903_3 WHERE location = "Zamboanga" |
###context:CREATE TABLE table_12547903_3 (power__kw_ VARCHAR, callsign VARCHAR)
###human: How much power was used when the callsign was DZYT?
###assistant: SELECT power__kw_ FROM table_12547903_3 WHERE callsign = "DZYT" |
###context:CREATE TABLE table_12564633_1 (title VARCHAR, season__number VARCHAR)
###human: What is the name of Season #15?
###assistant: SELECT title FROM table_12564633_1 WHERE season__number = 15 |
###context:CREATE TABLE table_12564633_1 (series__number INTEGER, season__number VARCHAR)
###human: What is the series number for Season #18?
###assistant: SELECT MIN(series__number) FROM table_12564633_1 WHERE season__number = 18 |
###context:CREATE TABLE table_12564633_1 (series__number INTEGER, written_by VARCHAR)
###human: What was the first series in this list that Jack Orman wrote?
###assistant: SELECT MIN(series__number) FROM table_12564633_1 WHERE written_by = "Jack Orman" |
###context:CREATE TABLE table_12564633_1 (title VARCHAR, directed_by VARCHAR)
###human: What is the name of the episode that Richard Thorpe directed?
###assistant: SELECT title FROM table_12564633_1 WHERE directed_by = "Richard Thorpe" |
###context:CREATE TABLE table_12576536_1 (population__maryborough_ VARCHAR, population__woocoo_ VARCHAR)
###human: Name the population of maryborough when population of woocoo is 2700
###assistant: SELECT population__maryborough_ FROM table_12576536_1 WHERE population__woocoo_ = 2700 |
###context:CREATE TABLE table_12576536_1 (year INTEGER, population__woocoo_ VARCHAR)
###human: Name the most year when population of woocoo is 2700
###assistant: SELECT MAX(year) FROM table_12576536_1 WHERE population__woocoo_ = 2700 |
###context:CREATE TABLE table_1266602_2 (crew_chief VARCHAR, owner_s_ VARCHAR)
###human: Who was crew chief for the team owned by Bob Leavine?
###assistant: SELECT crew_chief FROM table_1266602_2 WHERE owner_s_ = "Bob Leavine" |
###context:CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)
###human: Who drove for team Circle Sport?
###assistant: SELECT driver_s_ FROM table_1266602_2 WHERE team = "Circle Sport" |
###context:CREATE TABLE table_1266602_2 (driver_s_ VARCHAR, team VARCHAR)
###human: Who drove for Phil Parsons Racing team?
###assistant: SELECT driver_s_ FROM table_1266602_2 WHERE team = "Phil Parsons Racing" |
###context:CREATE TABLE table_1266602_2 (team VARCHAR, crew_chief VARCHAR)
###human: Which teams used Wally Rogers as their crew chief?
###assistant: SELECT team FROM table_1266602_2 WHERE crew_chief = "Wally Rogers" |
###context:CREATE TABLE table_1266602_2 (rounds INTEGER, crew_chief VARCHAR)
###human: What is the largest number of rounds for the team that hired Donnie Wingo as crew chief?
###assistant: SELECT MAX(rounds) FROM table_1266602_2 WHERE crew_chief = "Donnie Wingo" |
###context:CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR)
###human: What is the 2007 estimate when the rank (csa) is 4
###assistant: SELECT 2007 AS _estimate FROM table_12720275_1 WHERE rank__csa_ = "4" |
###context:CREATE TABLE table_12720275_1 (combined_statistical_area__or_metropolitan_statistical_area_if_noted_ VARCHAR)
###human: What is the 2007 estimate for tulsa-bartlesville, ok csa?
###assistant: SELECT 2007 AS _estimate FROM table_12720275_1 WHERE combined_statistical_area__or_metropolitan_statistical_area_if_noted_ = "Tulsa-Bartlesville, OK CSA" |
###context:CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR)
###human: How many times was the rank (csa) was (msa 348)?
###assistant: SELECT COUNT(2000 AS _population) FROM table_12720275_1 WHERE rank__csa_ = "(MSA 348)" |
###context:CREATE TABLE table_12720275_1 (rank__csa_ VARCHAR, percent_change__1990_2000_ VARCHAR)
###human: What is the rank (csa) for the percentage change (1990-2000) was a034 +8.71%?
###assistant: SELECT rank__csa_ FROM table_12720275_1 WHERE percent_change__1990_2000_ = "A034 +8.71%" |
###context:CREATE TABLE table_1272033_1 (championship VARCHAR, previous_champion_s_ VARCHAR)
###human: What tourmament has Genesis won previously?
###assistant: SELECT championship FROM table_1272033_1 WHERE previous_champion_s_ = "Genesis" |
###context:CREATE TABLE table_1272033_1 (previous_champion_s_ VARCHAR, champion_s_ VARCHAR)
###human: Who was the champion prior to Xix Xavant?
###assistant: SELECT previous_champion_s_ FROM table_1272033_1 WHERE champion_s_ = "Xix Xavant" |
###context:CREATE TABLE table_1272033_1 (champion_s_ VARCHAR, location VARCHAR)
###human: Who are the champions that have won at Aguas Buenas, Puerto Rico?
###assistant: SELECT champion_s_ FROM table_1272033_1 WHERE location = "Aguas Buenas, Puerto Rico" |
###context:CREATE TABLE table_12744399_1 (english_title_translation VARCHAR, japanese_title VARCHAR)
###human: What's the English translation of the Japanese title of the game Ranma ½: Chougi Rambuhen?
###assistant: SELECT english_title_translation FROM table_12744399_1 WHERE japanese_title = "Ranma ½: Chougi Rambuhen" |
###context:CREATE TABLE table_12744399_1 (genre VARCHAR, english_title_translation VARCHAR)
###human: What's the genre of Fever Ranma ½: Hot Springs Athletic Chapter?
###assistant: SELECT genre FROM table_12744399_1 WHERE english_title_translation = "Fever Ranma ½: Hot Springs Athletic Chapter" |
###context:CREATE TABLE table_12744399_1 (initial_release_date VARCHAR, developer VARCHAR)
###human: When was the game developed by Microvision released?
###assistant: SELECT initial_release_date FROM table_12744399_1 WHERE developer = "Microvision" |
###context:CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, basic_stem__root_ VARCHAR)
###human: What's the number of verbal nouns with the basic stem (root) -bil-?
###assistant: SELECT COUNT(verbal_noun) FROM table_12784134_1 WHERE basic_stem__root_ = "-bil-" |
###context:CREATE TABLE table_12784134_1 (meaning VARCHAR, non_present_stem VARCHAR)
###human: What does the non-present stem -erama- mean?
###assistant: SELECT meaning FROM table_12784134_1 WHERE non_present_stem = "-erama-" |
###context:CREATE TABLE table_12784134_1 (participle VARCHAR, verbal_noun VARCHAR)
###human: What's the participle when the verbal noun is i-bil-tze?
###assistant: SELECT participle FROM table_12784134_1 WHERE verbal_noun = "i-bil-tze" |
###context:CREATE TABLE table_12784134_1 (meaning VARCHAR, basic_stem__root_ VARCHAR)
###human: What does the basic stem (root) -rama- mean?
###assistant: SELECT meaning FROM table_12784134_1 WHERE basic_stem__root_ = "-rama-" |
###context:CREATE TABLE table_12784134_1 (verbal_noun VARCHAR, participle VARCHAR)
###human: What is the verbal noun connected to the participle e-duki?
###assistant: SELECT verbal_noun FROM table_12784134_1 WHERE participle = "e-duki" |
###context:CREATE TABLE table_12828723_4 (tries_against VARCHAR, points VARCHAR)
###human: what is the tries against where points is 60?
###assistant: SELECT tries_against FROM table_12828723_4 WHERE points = "60" |
###context:CREATE TABLE table_12828723_4 (losing_bonus VARCHAR, points_against VARCHAR)
###human: How many losing bonus where there when points against is 439?
###assistant: SELECT COUNT(losing_bonus) FROM table_12828723_4 WHERE points_against = "439" |
###context:CREATE TABLE table_12828723_4 (drawn VARCHAR, won VARCHAR)
###human: what is the drawn when the won is 12?
###assistant: SELECT drawn FROM table_12828723_4 WHERE won = "12" |
###context:CREATE TABLE table_12828723_4 (tries_against VARCHAR, won VARCHAR)
###human: What is the tries against when the won is 14?
###assistant: SELECT tries_against FROM table_12828723_4 WHERE won = "14" |
###context:CREATE TABLE table_12828723_4 (tries_for VARCHAR, points_for VARCHAR)
###human: How many tries for are for 473 points for?
###assistant: SELECT COUNT(tries_for) FROM table_12828723_4 WHERE points_for = "473" |
###context:CREATE TABLE table_12828723_4 (points_for VARCHAR, played VARCHAR, tries_against VARCHAR)
###human: what is the points for when the played is 22 and tries against is 68?
###assistant: SELECT points_for FROM table_12828723_4 WHERE played = "22" AND tries_against = "68" |
###context:CREATE TABLE table_12828723_3 (lost VARCHAR, try_bonus VARCHAR, points_for VARCHAR)
###human: what's the loss with try bonus being 5 and points for being 390
###assistant: SELECT lost FROM table_12828723_3 WHERE try_bonus = "5" AND points_for = "390" |
###context:CREATE TABLE table_12828723_3 (won VARCHAR, points_for VARCHAR)
###human: what's the win with points for being 376
###assistant: SELECT won FROM table_12828723_3 WHERE points_for = "376" |
###context:CREATE TABLE table_12828723_3 (lost VARCHAR, points_for VARCHAR)
###human: what's the loss with points for being 594
###assistant: SELECT lost FROM table_12828723_3 WHERE points_for = "594" |
###context:CREATE TABLE table_12828723_3 (tries_against VARCHAR, tries_for VARCHAR)
###human: what's the tries against with tries for being 47
###assistant: SELECT tries_against FROM table_12828723_3 WHERE tries_for = "47" |
###context:CREATE TABLE table_12828723_3 (won VARCHAR, club VARCHAR)
###human: what's the won with club being ammanford rfc
###assistant: SELECT won FROM table_12828723_3 WHERE club = "Ammanford RFC" |
###context:CREATE TABLE table_12828723_3 (drawn VARCHAR, tries_against VARCHAR)
###human: how many drawn with tries against being 24
###assistant: SELECT COUNT(drawn) FROM table_12828723_3 WHERE tries_against = "24" |
###context:CREATE TABLE table_12828723_5 (drawn VARCHAR, points_against VARCHAR)
###human: What were the drawn with points against at 416?
###assistant: SELECT drawn FROM table_12828723_5 WHERE points_against = "416" |
###context:CREATE TABLE table_12828723_5 (won VARCHAR, tries_against VARCHAR)
###human: What was the amount won with tries against at 54?
###assistant: SELECT won FROM table_12828723_5 WHERE tries_against = "54" |
###context:CREATE TABLE table_12828723_5 (lost VARCHAR)
###human: What was the lost with tries for?
###assistant: SELECT lost FROM table_12828723_5 WHERE "tries_for" = "tries_for" |
###context:CREATE TABLE table_12828723_5 (points_against VARCHAR)
###human: What was the points againt when played is played?
###assistant: SELECT points_against FROM table_12828723_5 WHERE "played" = "played" |
###context:CREATE TABLE table_12828723_5 (tries_for VARCHAR, tries_against VARCHAR)
###human: What was the tries for with tries against at 33?
###assistant: SELECT tries_for FROM table_12828723_5 WHERE tries_against = "33" |
###context:CREATE TABLE table_12828723_5 (played VARCHAR, club VARCHAR)
###human: What was the played with club tumble rfc?
###assistant: SELECT played FROM table_12828723_5 WHERE club = "Tumble RFC" |
###context:CREATE TABLE table_12887260_1 (console VARCHAR, franchise_or_game VARCHAR)
###human: What consoles was Shenmue released on?
###assistant: SELECT console FROM table_12887260_1 WHERE franchise_or_game = "Shenmue" |
###context:CREATE TABLE table_12887260_1 (main_developer VARCHAR, first_release VARCHAR, console VARCHAR)
###human: Which main developer made their first release in 1991 and created the Mega Drive/Genesis console?
###assistant: SELECT main_developer FROM table_12887260_1 WHERE first_release = 1991 AND console = "Mega Drive/Genesis" |
###context:CREATE TABLE table_12962773_10 (position VARCHAR, current_club VARCHAR)
###human: How many players currently play for Barons Riga?
###assistant: SELECT COUNT(position) FROM table_12962773_10 WHERE current_club = "Barons Riga" |
###context:CREATE TABLE table_12962773_10 (height VARCHAR, no VARCHAR)
###human: How tall was Player #10?
###assistant: SELECT height FROM table_12962773_10 WHERE no = 10 |
###context:CREATE TABLE table_12962773_10 (year_born INTEGER)
###human: What is the earliest any of these players were born?
###assistant: SELECT MIN(year_born) FROM table_12962773_10 |
###context:CREATE TABLE table_12962773_10 (no VARCHAR, height VARCHAR)
###human: Which player number is 2.10 meters tall?
###assistant: SELECT no FROM table_12962773_10 WHERE height = "2.10" |
###context:CREATE TABLE table_12962773_10 (position VARCHAR, height VARCHAR)
###human: What position was played by the player who was 2.12 meters tall?
###assistant: SELECT position FROM table_12962773_10 WHERE height = "2.12" |
###context:CREATE TABLE table_12936521_2 (current_conference VARCHAR, institution VARCHAR)
###human: What current conference is Post University a member of?
###assistant: SELECT current_conference FROM table_12936521_2 WHERE institution = "Post University" |
###context:CREATE TABLE table_12936521_2 (institution VARCHAR, nickname VARCHAR)
###human: What institution has the nickname Penmen?
###assistant: SELECT institution FROM table_12936521_2 WHERE nickname = "Penmen" |
###context:CREATE TABLE table_12936521_2 (location VARCHAR, institution VARCHAR)
###human: Where is the University at Albany located?
###assistant: SELECT location FROM table_12936521_2 WHERE institution = "University at Albany" |
###context:CREATE TABLE table_12936521_2 (classification VARCHAR, nickname VARCHAR)
###human: What's the classification of the institution nicknamed Dolphins?
###assistant: SELECT classification FROM table_12936521_2 WHERE nickname = "Dolphins" |
###context:CREATE TABLE table_12936521_2 (nickname VARCHAR, institution VARCHAR)
###human: What's the nickname of the University of Massachusetts Lowell (UMass Lowell)?
###assistant: SELECT nickname FROM table_12936521_2 WHERE institution = "University of Massachusetts Lowell (UMass Lowell)" |
###context:CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)
###human: What is Ido Kozikaro's position?
###assistant: SELECT position FROM table_12962773_2 WHERE player = "Ido Kozikaro" |
###context:CREATE TABLE table_12962773_2 (player VARCHAR, position VARCHAR)
###human: What player plays center?
###assistant: SELECT player FROM table_12962773_2 WHERE position = "Center" |
###context:CREATE TABLE table_12962773_2 (no VARCHAR, current_club VARCHAR)
###human: What are the numbers of the players currently playing for Ironi Nahariya?
###assistant: SELECT no FROM table_12962773_2 WHERE current_club = "Ironi Nahariya" |
###context:CREATE TABLE table_12962773_2 (player VARCHAR, height VARCHAR)
###human: What player is 2.01 m tall?
###assistant: SELECT player FROM table_12962773_2 WHERE height = "2.01" |
###context:CREATE TABLE table_12962773_2 (position VARCHAR, player VARCHAR)
###human: What's Yotam Halperin's position?
###assistant: SELECT position FROM table_12962773_2 WHERE player = "Yotam Halperin" |
###context:CREATE TABLE table_12962773_12 (current_club VARCHAR, year_born VARCHAR)
###human: What current club does the player born in 1984 play for?
###assistant: SELECT current_club FROM table_12962773_12 WHERE year_born = 1984 |
###context:CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)
###human: What is the height for player number 5?
###assistant: SELECT COUNT(height) FROM table_12962773_12 WHERE no = 5 |
###context:CREATE TABLE table_12962773_12 (height VARCHAR, no VARCHAR)
###human: What height is player number 9?
###assistant: SELECT height FROM table_12962773_12 WHERE no = 9 |
###context:CREATE TABLE table_12962773_12 (player VARCHAR, height VARCHAR)
###human: WHat is the number for the player whose height is 2.01?
###assistant: SELECT COUNT(player) FROM table_12962773_12 WHERE height = "2.01" |
###context:CREATE TABLE table_12962773_12 (year_born INTEGER, height VARCHAR)
###human: What year was the player with the height 2.04 born?
###assistant: SELECT MIN(year_born) FROM table_12962773_12 WHERE height = "2.04" |
###context:CREATE TABLE table_12962773_16 (height VARCHAR, no VARCHAR)
###human: How many players wore number 8?
###assistant: SELECT COUNT(height) FROM table_12962773_16 WHERE no = 8 |
###context:CREATE TABLE table_12962773_16 (player VARCHAR, year_born VARCHAR)
###human: What player was born in 1983?
###assistant: SELECT player FROM table_12962773_16 WHERE year_born = 1983 |
###context:CREATE TABLE table_12962773_16 (current_club VARCHAR, height VARCHAR)
###human: What club does the player who is 1.97 m tall play for?
###assistant: SELECT current_club FROM table_12962773_16 WHERE height = "1.97" |
###context:CREATE TABLE table_12962773_16 (position VARCHAR, current_club VARCHAR)
###human: How many players are from energa czarni?
###assistant: SELECT COUNT(position) FROM table_12962773_16 WHERE current_club = "Energa Czarni" |
###context:CREATE TABLE table_12962773_16 (year_born VARCHAR, player VARCHAR)
###human: What year was Robert Skibniewski born?
###assistant: SELECT year_born FROM table_12962773_16 WHERE player = "Robert Skibniewski" |
###context:CREATE TABLE table_12962773_4 (no INTEGER, player VARCHAR)
###human: What No is the player Zoran Erceg
###assistant: SELECT MIN(no) FROM table_12962773_4 WHERE player = "Zoran Erceg" |
###context:CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, the_basque_of_the_glossary VARCHAR)
###human: What is the iclandic of the glossary for presenta for mi locaria
###assistant: SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE the_basque_of_the_glossary = "presenta for mi locaria" |
###context:CREATE TABLE table_13003460_1 (english_translation VARCHAR, the_icelandic_of_the_glossary VARCHAR)
###human: Name the english translation of giefdu mier socka bond
###assistant: SELECT english_translation FROM table_13003460_1 WHERE the_icelandic_of_the_glossary = "giefdu mier socka bond" |
###context:CREATE TABLE table_13003460_1 (english_translation VARCHAR, word_number VARCHAR)
###human: Name the english translation of 219
###assistant: SELECT english_translation FROM table_13003460_1 WHERE word_number = "219" |
###context:CREATE TABLE table_13003460_1 (the_icelandic_of_the_glossary VARCHAR, word_number VARCHAR)
###human: Name the incelandic of the glossary for 218
###assistant: SELECT the_icelandic_of_the_glossary FROM table_13003460_1 WHERE word_number = "218" |
###context:CREATE TABLE table_1300080_1 (printer_ports VARCHAR, model_number VARCHAR)
###human: What's the type of printer ports in the model number EX Plus3?
###assistant: SELECT printer_ports FROM table_1300080_1 WHERE model_number = "EX Plus3" |
###context:CREATE TABLE table_1300080_1 (model_number VARCHAR, printer_ports VARCHAR)
###human: What is the number of the model with three parallel printer ports?
###assistant: SELECT model_number FROM table_1300080_1 WHERE printer_ports = "Three Parallel" |
###context:CREATE TABLE table_1300080_1 (network_protocols VARCHAR, notes VARCHAR)
###human: What are the network protocols for the model that has been discontinued in favor of the EN1700?
###assistant: SELECT network_protocols FROM table_1300080_1 WHERE notes = "Discontinued in favor of the en1700" |
###context:CREATE TABLE table_1300525_1 (population INTEGER, simplified VARCHAR)
###human: How many people live in 铅山县?
###assistant: SELECT MAX(population) FROM table_1300525_1 WHERE simplified = "铅山县" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.