instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | What is the netflix code where the series and episode are 4-11? | SELECT Netflix FROM table WHERE Series Ep. = 4-11 |
Translate the following into a SQL query | What is listed in segment b when segment c is artificial flowers? | SELECT Segment B FROM table WHERE Segment C = Artificial Flowers |
Translate the following into a SQL query | What are the titles of segment c when segment d is motorcycle brake locks? | SELECT Segment C FROM table WHERE Segment D = Motorcycle Brake Locks |
Translate the following into a SQL query | What are the titles of segment c for series episode is 21-08? | SELECT Segment C FROM table WHERE Series Ep. = 21-08 |
Translate the following into a SQL query | What are the titles of segment b when segment c is standby generators (part 1)? | SELECT Segment B FROM table WHERE Segment C = Standby Generators (Part 1) |
Translate the following into a SQL query | What are the titles of segment a for series episode 21-12? | SELECT Segment A FROM table WHERE Series Ep. = 21-12 |
Translate the following into a SQL query | Name the number of episode for phyllo dough | SELECT COUNT Episode FROM table WHERE Segment C = Phyllo Dough |
Translate the following into a SQL query | Name the segment d for combination locks | SELECT Segment D FROM table WHERE Segment A = Combination Locks |
Translate the following into a SQL query | Name the series ep for s02e08 | SELECT Series Ep. FROM table WHERE Netflix = S02E08 |
Translate the following into a SQL query | Name the segment c for couscous | SELECT Segment C FROM table WHERE Segment B = Couscous |
Translate the following into a SQL query | Name the segment c for pottery | SELECT Segment C FROM table WHERE Segment B = Pottery |
Translate the following into a SQL query | Name the segment d for chicken | SELECT Segment D FROM table WHERE Segment C = Chicken |
Translate the following into a SQL query | What is the Segment A for when Segment C is s Sailboard? | SELECT Segment A FROM table WHERE Segment C = s Sailboard |
Translate the following into a SQL query | What is the Segment B when the Segment D is s Hammock? | SELECT Segment B FROM table WHERE Segment D = s Hammock |
Translate the following into a SQL query | What is the Netflix Episode when the Segment B is s Highlighter? | SELECT Netflix FROM table WHERE Segment B = s Highlighter |
Translate the following into a SQL query | What is the location of #1? | SELECT Location FROM table WHERE # = 1 |
Translate the following into a SQL query | What stadium was the 1994 Gator Bowl in? | SELECT Stadium FROM table WHERE Bowl game = 1994 Gator Bowl |
Translate the following into a SQL query | What is the stadium where the attendance was 75,406? | SELECT Stadium FROM table WHERE Attendance = 75,406 |
Translate the following into a SQL query | What is the number of the bowl game when attendance was 79,280? | SELECT MAX # FROM table WHERE Attendance = 79,280 |
Translate the following into a SQL query | What was the attendance of the bowl game in Gainesville, Fl? | SELECT Attendance FROM table WHERE Location = Gainesville, FL |
Translate the following into a SQL query | Name the total number of median income for population 2006 for 365540 | SELECT COUNT Median monthly per capita / labour force income (HKD) FROM table WHERE Population (2006_est.) = 365540 |
Translate the following into a SQL query | Name the minimum derby county goals | SELECT MIN Derby County Goals FROM table |
Translate the following into a SQL query | Name the most derby county | SELECT MAX Derby County FROM table |
Translate the following into a SQL query | In episode 115 what is seen being made before British police helmets? | SELECT Segment B FROM table WHERE Segment C = British Police Helmets |
Translate the following into a SQL query | How many times was leather introduced before pedal steel guitars in episode 111? | SELECT COUNT Segment C FROM table WHERE Segment D = Pedal Steel Guitars |
Translate the following into a SQL query | Name the engines for state trust | SELECT Engines FROM table WHERE Former Names = State Trust |
Translate the following into a SQL query | What are the details of the journey for the episode titled "Zambezi Express"? | SELECT Details of Journey FROM table WHERE Episode Title = "Zambezi Express" |
Translate the following into a SQL query | What was the UK broadcast date for the episode which visited USA? | SELECT UK Broadcast Date FROM table WHERE Countries Visited = USA |
Translate the following into a SQL query | What are the details of the journey for the episode titled "Deccan"? | SELECT Details of Journey FROM table WHERE Episode Title = "Deccan" |
Translate the following into a SQL query | What countries are visited in the episode presented by Brian B. Thompson? | SELECT Countries Visited FROM table WHERE Presenter = Brian B. Thompson |
Translate the following into a SQL query | What is the episode title for the episode numbered #1.4? | SELECT Episode Title FROM table WHERE Episode No. = #1.4 |
Translate the following into a SQL query | Name the social democratic party for labour | SELECT Social Democratic Party FROM table WHERE Control = Labour |
Translate the following into a SQL query | Name the least leabour for social and liberal democrats being 14 | SELECT MIN Labour FROM table WHERE Social and Liberal Democrats/ Liberal Democrats = 14 |
Translate the following into a SQL query | Who wrote episode 11, of which was directed by Will Waring? | SELECT Written by FROM table WHERE Directed by = Will Waring AND No. in season = 11 |
Translate the following into a SQL query | Who wrote the episode directed by Peter Woeste? | SELECT Written by FROM table WHERE Directed by = Peter Woeste |
Translate the following into a SQL query | Who was the director of Pecado Mortal | SELECT Director FROM table WHERE Original title = Pecado Mortal |
Translate the following into a SQL query | What was the original title of the Bruno Barreto film in 1989 | SELECT Original title FROM table WHERE Director = Bruno Barreto AND Year (Ceremony) = 1989 |
Translate the following into a SQL query | What was the result for director Fernando Meirelles | SELECT Result FROM table WHERE Director = Fernando Meirelles |
Translate the following into a SQL query | Name the original title of the Suzana Amaral film | SELECT Original title FROM table WHERE Director = Suzana Amaral |
Translate the following into a SQL query | If 0.52% is the percentage of the population in chinas tujia what is the overall amount of tujia population? | SELECT COUNT Tujia Population FROM table WHERE % of Chinas Tujia Population = 0.52% |
Translate the following into a SQL query | When tujia population equals 388035 people and the % of the population is 4.83% which country is it? | SELECT County FROM table WHERE % of Chinas Tujia Population = 4.83% AND Tujia Population = 388035 |
Translate the following into a SQL query | When the tujia population is 462444 what is the overall percentage of the chinas tujia population? | SELECT % of Chinas Tujia Population FROM table WHERE Tujia Population = 462444 |
Translate the following into a SQL query | If the country is fenghuang how many provinces are there? | SELECT COUNT Province FROM table WHERE County = Fenghuang |
Translate the following into a SQL query | If yongshun is the county what is the overall percentage of the chinas tujia population? | SELECT % of Chinas Tujia Population FROM table WHERE County = Yongshun |
Translate the following into a SQL query | Who is in group a when indiana is in group d? | SELECT Group A FROM table WHERE Group D = Indiana |
Translate the following into a SQL query | Who is in group a when indiana is in group d? | SELECT Group A FROM table WHERE Group D = Indiana |
Translate the following into a SQL query | Who is in group c when wisconsin is in group d? | SELECT Group C FROM table WHERE Group D = Wisconsin |
Translate the following into a SQL query | Who is in group c when iowa is in group e? | SELECT Group C FROM table WHERE Group E = Iowa |
Translate the following into a SQL query | Name the english name for orach, zarev | SELECT English name FROM table WHERE Old Bulgarian name (Transliteration) = Orach, Zarev |
Translate the following into a SQL query | Name the old bulgarian names for yuni | SELECT Old Bulgarian Names FROM table WHERE Bulgarian name ( Transliteration ) = Yuni |
Translate the following into a SQL query | Name the old bulgarian names for yanuari | SELECT Old Bulgarian Names FROM table WHERE Bulgarian name ( Transliteration ) = Yanuari |
Translate the following into a SQL query | Name the bulgarian name for mart | SELECT Bulgarian name FROM table WHERE Bulgarian name ( Transliteration ) = Mart |
Translate the following into a SQL query | Name the old bulgarian name for ruen, ruy | SELECT Old Bulgarian name - Meaning FROM table WHERE Old Bulgarian name (Transliteration) = Ruen, Ruy |
Translate the following into a SQL query | Name the old bulgarian name for number 4 | SELECT Old Bulgarian name - Meaning FROM table WHERE No. = 4 |
Translate the following into a SQL query | Who owned the team Jeremy Mayfield raced for? | SELECT Listed Owner(s) FROM table WHERE Driver(s) = Jeremy Mayfield |
Translate the following into a SQL query | Who is Jason Leffler's primary sponsor? | SELECT Primary Sponsor(s) FROM table WHERE Driver(s) = Jason Leffler |
Translate the following into a SQL query | How many stages were there where the winner and the points classification were Alberto Contador? | SELECT COUNT Stage FROM table WHERE Winner = Alberto Contador AND Points classification = Alberto Contador |
Translate the following into a SQL query | When the winner was Alessandro Ballan, how many total team classifications were there? | SELECT COUNT Team classification FROM table WHERE Winner = Alessandro Ballan |
Translate the following into a SQL query | When the team classification was quick step, what was the total number of general classifications? | SELECT COUNT General classification FROM table WHERE Team classification = Quick Step |
Translate the following into a SQL query | Who won the spanish grand prix? | SELECT 250cc winner FROM table WHERE Grand Prix = Spanish Grand Prix |
Translate the following into a SQL query | What is the date for the Indianapolis circuit? | SELECT Date FROM table WHERE Circuit = Indianapolis |
Translate the following into a SQL query | in round 9 who was the 250cc winner? | SELECT 250cc winner FROM table WHERE Round = 9 |
Translate the following into a SQL query | If the velocity angle is ln[(1 + β5)/2] β
0.481, what is the condition/parameter? | SELECT Condition/Parameter FROM table WHERE Velocity angle Ξ· in i-radians = ln[(1 + β5)/2] β
0.481 |
Translate the following into a SQL query | If the the condition/parameter is rapidity of 2 hyperbolic radians, what is the coordinate velocity v dx/dt in units of c? | SELECT Coordinate velocity v dx/dt in units of c FROM table WHERE Condition/Parameter = Rapidity of 2 hyperbolic radians |
Translate the following into a SQL query | If the coordinate velocity v dx/dt in units of c is (e 2 β 1)/(e 2 + 1) β
0.761, what is the velocity angle Ξ· in i-radians? | SELECT Velocity angle Ξ· in i-radians FROM table WHERE Coordinate velocity v dx/dt in units of c = (e 2 β 1)/(e 2 + 1) β
0.761 |
Translate the following into a SQL query | What is the coordinate velocity v dx/dt in units of c total number if the velocity angle Ξ· in i-radians is ln[2 + β5] β
1.444? | SELECT COUNT Coordinate velocity v dx/dt in units of c FROM table WHERE Velocity angle Ξ· in i-radians = ln[2 + β5] β
1.444 |
Translate the following into a SQL query | If the condition/parameter is rapidity of 1 hyperbolic radian, what is the proper velocity w dx/dΟ in units of c? | SELECT Proper velocity w dx/dΟ in units of c FROM table WHERE Condition/Parameter = Rapidity of 1 hyperbolic radian |
Translate the following into a SQL query | If the lorentz factor Ξ³ dt/dΟ = e/mc 2 is β5 β
2.236, what is the proper velocity w dx/dΟ in units of c? | SELECT Proper velocity w dx/dΟ in units of c FROM table WHERE Lorentz factor Ξ³ dt/dΟ = E/mc 2 = β5 β
2.236 |
Translate the following into a SQL query | What year is dayton in class AAAA? | SELECT School Year FROM table WHERE Class AAAA = Dayton |
Translate the following into a SQL query | Who is in class during 1995-96? | SELECT Class AAAAA FROM table WHERE School Year = 1995-96 |
Translate the following into a SQL query | When are all years that tournament location is Western Turnpike Golf Course? | SELECT Year FROM table WHERE Tournament location = Western Turnpike Golf Course |
Translate the following into a SQL query | When are all years that the champion is Ji Min Jeong? | SELECT Year FROM table WHERE Champion = Ji Min Jeong |
Translate the following into a SQL query | How much are all winners share ($) in the year 2004? | SELECT Winners share ($) FROM table WHERE Year = 2004 |
Translate the following into a SQL query | When are all dates in the year 2006? | SELECT COUNT Dates FROM table WHERE Year = 2006 |
Translate the following into a SQL query | When are all dates with a score of 205 (β8) in Australia? | SELECT Dates FROM table WHERE Score = 205 (β8) AND Country = Australia |
Translate the following into a SQL query | What are all of the dates in the country of Canada? | SELECT Dates FROM table WHERE Country = Canada |
Translate the following into a SQL query | When was Jenny Gleason the champion of the Northeast Delta Dental International? | SELECT Dates FROM table WHERE Champion = Jenny Gleason |
Translate the following into a SQL query | Where was the tournament located when Misun Cho won the championship? | SELECT Tournament location FROM table WHERE Champion = Misun Cho |
Translate the following into a SQL query | What is the maximum purse prize of the Northeast Delta Dental International Championship? | SELECT MAX Purse ($) FROM table |
Translate the following into a SQL query | How many prizes were available when Jenny Shin became the champion? | SELECT COUNT Purse ($) FROM table WHERE Champion = Jenny Shin |
Translate the following into a SQL query | Which team had 21 points? | SELECT Team FROM table WHERE Points = 21 |
Translate the following into a SQL query | How many games did the team with 29 for win? | SELECT COUNT Won FROM table WHERE For = 29 |
Translate the following into a SQL query | How many games did Palmeiras win? | SELECT MAX Won FROM table WHERE Team = Palmeiras |
Translate the following into a SQL query | Name the drawn when for is 41 | SELECT Drawn FROM table WHERE For = 41 |
Translate the following into a SQL query | Name the number of lost for against being 46 | SELECT COUNT Lost FROM table WHERE Against = 46 |
Translate the following into a SQL query | Name the number of against for portuguesa santista | SELECT COUNT Against FROM table WHERE Team = Portuguesa Santista |
Translate the following into a SQL query | Name the won for difference being 33 | SELECT Won FROM table WHERE Difference = 33 |
Translate the following into a SQL query | Name the most losst for corinthians | SELECT MIN Lost FROM table WHERE Team = Corinthians |
Translate the following into a SQL query | How many values of r z (arcsecond) correspond with a r y (arcsecond) value of β0.247? | SELECT r z ( Arcsecond ) FROM table WHERE r y ( Arcsecond ) = β0.247 |
Translate the following into a SQL query | How many values of r z(arcsecond) are associated with a target datum of Ireland 1965? | SELECT r z ( Arcsecond ) FROM table WHERE Target datum = Ireland 1965 |
Translate the following into a SQL query | What is the muslim percentage of the 49634 population of england and wales 000? | SELECT Muslim (% of Total population) FROM table WHERE Population of England and Wales 000 = 49634 |
Translate the following into a SQL query | What is the most recent census year? | SELECT MAX Census Year FROM table |
Translate the following into a SQL query | What was the percentage of muslims during a time where there were 614 registered mosques? | SELECT Muslim (% of Total population) FROM table WHERE Registered Mosques = 614 |
Translate the following into a SQL query | Name the most pa for ontario | SELECT MAX PA FROM table WHERE Locale = Ontario |
Translate the following into a SQL query | Name the ends lost for 67 pa | SELECT Ends Lost FROM table WHERE PA = 67 |
Translate the following into a SQL query | Name the most w when ends lost is 49 | SELECT MAX W FROM table WHERE Ends Lost = 49 |
Translate the following into a SQL query | Name the number ends won when L is 4 and stolen ends is 17 | SELECT COUNT Ends Won FROM table WHERE L = 4 AND Stolen Ends = 17 |
Translate the following into a SQL query | What day was Jeld-Wen Tradition held? | SELECT Date FROM table WHERE Tournament = JELD-WEN Tradition |
Translate the following into a SQL query | What day did Bernhard Langer (2) win? | SELECT Date FROM table WHERE Winner = Bernhard Langer (2) |
Translate the following into a SQL query | On what day was the tournament in Alabama? | SELECT Date FROM table WHERE Location = Alabama |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.