instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | Name the 8 pm when time is thursday | SELECT 08:00 PM FROM table WHERE Time = Thursday |
Translate the following into a SQL query | What channel tv (dt) plays the KPIX station? | SELECT Channel TV ( DT ) FROM table WHERE Station = KPIX |
Translate the following into a SQL query | Which city of license/market has 3 (26) as their channel tv (dt)? | SELECT City of License /Market FROM table WHERE Channel TV ( DT ) = 3 (26) |
Translate the following into a SQL query | Which channel tv (dt) plays in San Francisco - Oakland - San Jose? | SELECT Channel TV ( DT ) FROM table WHERE City of License /Market = San Francisco - Oakland - San Jose |
Translate the following into a SQL query | How many years has station KPIX been owned? | SELECT COUNT Years owned FROM table WHERE Station = KPIX |
Translate the following into a SQL query | Which city of license/market plays 3 (26)? | SELECT City of License /Market FROM table WHERE Channel TV ( DT ) = 3 (26) |
Translate the following into a SQL query | Who currently affiliates in San Francisco - Oakland - San Jose? | SELECT Current affiliation FROM table WHERE City of License /Market = San Francisco - Oakland - San Jose |
Translate the following into a SQL query | In which condition(s) is bleeding time prolonged and prothrombin time unaffected? | SELECT Condition FROM table WHERE Bleeding time = Prolonged AND Prothrombin time = Unaffected |
Translate the following into a SQL query | How many entries for prothrombin time are there where platelet count is "decreased or unaffected"? | SELECT COUNT Prothrombin time FROM table WHERE Platelet count = Decreased or unaffected |
Translate the following into a SQL query | How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected? | SELECT Bleeding time FROM table WHERE Platelet count = Decreased AND Prothrombin time = Unaffected |
Translate the following into a SQL query | What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected? | SELECT Bleeding time FROM table WHERE Prothrombin time = Unaffected AND Platelet count = Unaffected |
Translate the following into a SQL query | What is the percentage of land area in the ecozone that the percentage protected is 7.96? | SELECT Percentage of land area FROM table WHERE Percentage protected = 7.96 |
Translate the following into a SQL query | What is the percentage of total area in the ecozone that the percentage of land area is 2.2? | SELECT Percentage of total area FROM table WHERE Percentage of land area = 2.2 |
Translate the following into a SQL query | What is the percentage of total area in the ecozone that the percentage protected is 8.06? | SELECT Percentage of total area FROM table WHERE Percentage protected = 8.06 |
Translate the following into a SQL query | What is the percentage of land area in the ecozone that the percentage protected is 15.28? | SELECT Percentage of land area FROM table WHERE Percentage protected = 15.28 |
Translate the following into a SQL query | How large is the Boreal Shield in km2? | SELECT COUNT Area (km²) FROM table WHERE Ecozone = Boreal Shield |
Translate the following into a SQL query | What is the percentage of total area in the ecozone that the area is 1782252 km2? | SELECT Percentage of total area FROM table WHERE Area (km²) = 1782252 |
Translate the following into a SQL query | What is the condition of the platelet counts in hemophilia? | SELECT Platelet count FROM table WHERE Condition = Hemophilia |
Translate the following into a SQL query | What is the prothrombin time in Von willebrand disease? | SELECT Prothrombin time FROM table WHERE Condition = Von Willebrand disease |
Translate the following into a SQL query | If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time? | SELECT Prothrombin time FROM table WHERE Partial thromboplastin time = Prolonged AND Bleeding time = Prolonged |
Translate the following into a SQL query | What is the bleeding time in Bernard-soulier syndrome? | SELECT Bleeding time FROM table WHERE Condition = Bernard-Soulier syndrome |
Translate the following into a SQL query | Which ring names are currently ranked f0 jūryō 3 west? | SELECT Ring name FROM table WHERE Current rank = f0 Jūryō 3 West |
Translate the following into a SQL query | How many wrestlers were born in nara, and have a completed 'career and other notes' section? | SELECT COUNT Career and other notes FROM table WHERE Birthplace = Nara |
Translate the following into a SQL query | What are the debut year for wrestlers born in Nara? | SELECT Debut FROM table WHERE Birthplace = Nara |
Translate the following into a SQL query | Where were the wrestlers born who debuted in 2002-7? | SELECT Birthplace FROM table WHERE Debut = 2002-7 |
Translate the following into a SQL query | What are the career and other notes for wrestlers whose stable is oguruma? | SELECT Career and other notes FROM table WHERE Stable = Oguruma |
Translate the following into a SQL query | Name the kinship for *t-ina | SELECT Kinship FROM table WHERE Proto-Malayo-Polynesian = *t-ina |
Translate the following into a SQL query | Name the number of proto austronesian for *natu | SELECT COUNT Proto-Austronesian FROM table WHERE Proto-Oceanic = *natu |
Translate the following into a SQL query | Name the ptor-austronesian for father | SELECT Proto-Austronesian FROM table WHERE Kinship = father |
Translate the following into a SQL query | Name the proto oceanic for *fafine | SELECT Proto-Oceanic FROM table WHERE Proto-Polynesian = *fafine |
Translate the following into a SQL query | Name the proto-austrronesian for *pine, *papine | SELECT Proto-Austronesian FROM table WHERE Proto-Oceanic = *pine, *papine |
Translate the following into a SQL query | Name who wrote number 47 | SELECT Written by FROM table WHERE No. in series = 47 |
Translate the following into a SQL query | What is the largest mass(kg)? | SELECT MAX Mass (kg) FROM table |
Translate the following into a SQL query | Which college did draft pick #143 attend? | SELECT College FROM table WHERE Choice = 143 |
Translate the following into a SQL query | How heavy were the players who attended Arkansas? | SELECT Weight FROM table WHERE College = Arkansas |
Translate the following into a SQL query | Which college did the player weighing 207 pounds attend? | SELECT College FROM table WHERE Weight = 207 |
Translate the following into a SQL query | Name who wrote the episode when the viewers was 1.81 | SELECT Written by FROM table WHERE U.S. viewers (million) = 1.81 |
Translate the following into a SQL query | Name who directed the 114 episode in the series | SELECT Directed by FROM table WHERE No. in series = 114 |
Translate the following into a SQL query | Name the total number of air dates for 102 episode | SELECT COUNT Original air date FROM table WHERE No. in series = 102 |
Translate the following into a SQL query | Name who wrote the 11 number in the season | SELECT Written by FROM table WHERE No. in season = 11 |
Translate the following into a SQL query | Name the award name for black ocean current | SELECT Award name FROM table WHERE Team name = BLACK OCEAN CURRENT |
Translate the following into a SQL query | What position(s) do players from florida state play? | SELECT Position FROM table WHERE College = Florida State |
Translate the following into a SQL query | How much does geno hayes weigh? | SELECT Weight FROM table WHERE Player name = Geno Hayes |
Translate the following into a SQL query | What college did jeremy zuttah attend? | SELECT College FROM table WHERE Player name = Jeremy Zuttah |
Translate the following into a SQL query | What was brian rafuse's pf? | SELECT PF FROM table WHERE Skip = Brian Rafuse |
Translate the following into a SQL query | When the stolen ends equal 5 whats the amount of pa? | SELECT MAX PA FROM table WHERE Stolen Ends = 5 |
Translate the following into a SQL query | What position is the player whose first year is 2014 | SELECT Position in 2013 FROM table WHERE First season = 2014 |
Translate the following into a SQL query | What was the players position in 2013 who had 29 seasons in the second tier | SELECT Position in 2013 FROM table WHERE Number of seasons in second tier = 29 |
Translate the following into a SQL query | What was the first season for Syrianska FC | SELECT First season FROM table WHERE Club = Syrianska FC |
Translate the following into a SQL query | What was the earliest season recorded for any team | SELECT MIN First season FROM table |
Translate the following into a SQL query | Name the number of points for october 11 | SELECT MAX Points For FROM table WHERE Date = October 11 |
Translate the following into a SQL query | Name the date for week 9 | SELECT Date FROM table WHERE Week = 9 |
Translate the following into a SQL query | Name the points against for november 7 | SELECT Points Against FROM table WHERE Date = November 7 |
Translate the following into a SQL query | Name the points against for november 14 | SELECT Points Against FROM table WHERE Date = November 14 |
Translate the following into a SQL query | Name the first downs for points against being 0 | SELECT First Downs FROM table WHERE Points Against = 0 |
Translate the following into a SQL query | Name the record for new york giants | SELECT Record FROM table WHERE Opponent = New York Giants |
Translate the following into a SQL query | Name the least purse for 2011 | SELECT MIN Purse ( US$ ) FROM table WHERE Year = 2011 |
Translate the following into a SQL query | Name the number of wheel arrangement when class is d14 | SELECT COUNT Wheel Arrangement FROM table WHERE Class = D14 |
Translate the following into a SQL query | Name the most number of pyewipe | SELECT MAX Number at Pyewipe FROM table |
Translate the following into a SQL query | Name the number at march when class is j66 | SELECT Number at March FROM table WHERE Class = J66 |
Translate the following into a SQL query | Name the railway when class is j19 | SELECT Railway FROM table WHERE Class = J19 |
Translate the following into a SQL query | Name the railway when class is j15 | SELECT Railway FROM table WHERE Class = J15 |
Translate the following into a SQL query | Name the years in orlando for penn state | SELECT Years in Orlando FROM table WHERE School/Club Team = Penn State |
Translate the following into a SQL query | Name the nationality of number 9 | SELECT Nationality FROM table WHERE No. = 9 |
Translate the following into a SQL query | Name the years in orlando for forward | SELECT Years in Orlando FROM table WHERE Position = Forward |
Translate the following into a SQL query | Name the number of players from arizona | SELECT COUNT Player FROM table WHERE School/Club Team = Arizona |
Translate the following into a SQL query | Name the years in orlando that the player from concord hs was in | SELECT Years in Orlando FROM table WHERE School/Club Team = Concord HS |
Translate the following into a SQL query | Name the number of players for louisiana state | SELECT COUNT Player FROM table WHERE School/Club Team = Louisiana State |
Translate the following into a SQL query | Name the school/club team for kevin ollie | SELECT School/Club Team FROM table WHERE Player = Kevin Ollie |
Translate the following into a SQL query | Name the school/club team for jawann oldham | SELECT School/Club Team FROM table WHERE Player = Jawann Oldham |
Translate the following into a SQL query | Name the player for seattle | SELECT Player FROM table WHERE School/Club Team = Seattle |
Translate the following into a SQL query | What is the nationality of th player who's school is Clemson? | SELECT Nationality FROM table WHERE School/Club Team = Clemson |
Translate the following into a SQL query | What years did the player who's school is Clemson spend in Orlando? | SELECT Years in Orlando FROM table WHERE School/Club Team = Clemson |
Translate the following into a SQL query | What is the number of the player who attended Delta State? | SELECT MAX No. FROM table WHERE School/Club Team = Delta State |
Translate the following into a SQL query | Who plays the position of forward-center? | SELECT Player FROM table WHERE Position = Forward-Center |
Translate the following into a SQL query | During what years did Chris Corchiani play in Orlando? | SELECT Years in Orlando FROM table WHERE Player = Chris Corchiani |
Translate the following into a SQL query | When the face value is 42¢, what was the issue's date? | SELECT Date of issue FROM table WHERE Face Value = 42¢ |
Translate the following into a SQL query | Which location has the ecosystem of kelp forest? | SELECT Place of issue FROM table WHERE Ecosystem = Kelp Forest |
Translate the following into a SQL query | How many stamps have a face value of 37¢ and were printed in the banknote corporation of america? | SELECT COUNT No. stamps in sheet FROM table WHERE Face Value = 37¢ AND Printer = Banknote Corporation of America |
Translate the following into a SQL query | Who was the printer of Estes Park, Colorado? | SELECT Printer FROM table WHERE Place of issue = Estes Park, Colorado |
Translate the following into a SQL query | The stamp was 39¢, who was the printer? | SELECT Printer FROM table WHERE Face Value = 39¢ |
Translate the following into a SQL query | What are values of attendance for the El Paso, TX location? | SELECT Attendance FROM table WHERE Location = El Paso, TX |
Translate the following into a SQL query | How many values for result correspond to attendance of 74,111? | SELECT COUNT Result FROM table WHERE Attendance = 74,111 |
Translate the following into a SQL query | How many locations have the Sun Life Stadium? | SELECT COUNT Location FROM table WHERE Stadium = Sun Life Stadium |
Translate the following into a SQL query | What is the highest season for a bowl game of the 1993 Independence Bowl? | SELECT MAX Season FROM table WHERE Bowl game = 1993 Independence Bowl |
Translate the following into a SQL query | What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent? | SELECT MIN # FROM table WHERE Location = Atlanta, GA AND Opponent = Georgia Bulldogs |
Translate the following into a SQL query | How many values for attendance correspond to the 1986 Peach Bowl? | SELECT COUNT Attendance FROM table WHERE Bowl game = 1986 Peach Bowl |
Translate the following into a SQL query | Who was the interview subject in the 2-86 issue? | SELECT Interview subject FROM table WHERE Date = 2-86 |
Translate the following into a SQL query | Who were all the pictorials when the centerfold model was Rebekka Armstrong? | SELECT COUNT Pictorials FROM table WHERE Centerfold model = Rebekka Armstrong |
Translate the following into a SQL query | Who were the pictorials when the centerfold model was Ava Fabian? | SELECT Pictorials FROM table WHERE Centerfold model = Ava Fabian |
Translate the following into a SQL query | Who was the interview subject when the centerfold model was Sherry Arnett? | SELECT COUNT Interview subject FROM table WHERE Centerfold model = Sherry Arnett |
Translate the following into a SQL query | Who was the cover model in the 7-86 issue? | SELECT Cover model FROM table WHERE Date = 7-86 |
Translate the following into a SQL query | What is the date of the issue where the pictorials is of Female s disk jockey? | SELECT COUNT Date FROM table WHERE Pictorials = Female s disk jockey |
Translate the following into a SQL query | WHO WAS THE COVER MODEL OF PLAYBOY WHERE THE CENTERFOLD MODEL WAS SHALLAN MEIERS? | SELECT Cover model FROM table WHERE Centerfold model = Shallan Meiers |
Translate the following into a SQL query | WHO WAS THE CENTERFOLD MODEL IN THE ISSUE WHERE OSCAR DE LA HOYA ANSWERED THE 20 QUESTIONS? | SELECT Centerfold model FROM table WHERE 20 Questions = Oscar de la Hoya |
Translate the following into a SQL query | IN THE ISSUE WHERE NICOLE NARAIN WAS THE CENTERFOLD MODEL, WHO WAS THE INTERVIEW SUBJECT? | SELECT Interview subject FROM table WHERE Centerfold model = Nicole Narain |
Translate the following into a SQL query | IN THE ISSUE WHERE LENNY KRAVITZ ANSWERED THE 20 QUESTIONS, HOW MANY PICTORIALS WERE IN THE MAGAZINE? | SELECT COUNT Pictorials FROM table WHERE 20 Questions = Lenny Kravitz |
Translate the following into a SQL query | IN HOW MANY ISSUES WAS HARRISON FORD THE INTERVIEW SUBJECT? | SELECT COUNT Date FROM table WHERE Interview subject = Harrison Ford |
Translate the following into a SQL query | Who was featured in 20 questions when the subject of the interview was Mike Piazza? | SELECT 20 Questions FROM table WHERE Interview subject = Mike Piazza |
Translate the following into a SQL query | Who was featured in 20 questions on 4-03? | SELECT 20 Questions FROM table WHERE Date = 4-03 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.