instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | What season episode is directed by Skipp Sudduth? | SELECT Season # FROM table WHERE Directed by = Skipp Sudduth |
Translate the following into a SQL query | How many titles are given for the episode directed by Joanna Kerns? | SELECT COUNT Title FROM table WHERE Directed by = Joanna Kerns |
Translate the following into a SQL query | What is the original air date of the episode directed by Terrence Nightingall? | SELECT Original air date FROM table WHERE Directed by = Terrence Nightingall |
Translate the following into a SQL query | What is the season number for "Impulse Control"? | SELECT MIN Season # FROM table WHERE Title = "Impulse Control" |
Translate the following into a SQL query | Which seasons were directed by Nelson McCormick? | SELECT Title FROM table WHERE Directed by = Nelson McCormick |
Translate the following into a SQL query | Which season titles were directed by Laura Innes? | SELECT Title FROM table WHERE Directed by = Laura Innes |
Translate the following into a SQL query | Which episodes did Nelson McCormick direct? | SELECT Written by FROM table WHERE Directed by = Nelson McCormick |
Translate the following into a SQL query | How many episodes were there in season 19? | SELECT COUNT Title FROM table WHERE Season # = 19 |
Translate the following into a SQL query | In which season did Paul McCrane first direct an episode? | SELECT MIN Season # FROM table WHERE Directed by = Paul McCrane |
Translate the following into a SQL query | On which dates did the episodes directed by TR Babu Subramaniam air? | SELECT Original air date FROM table WHERE Directed by = TR Babu Subramaniam |
Translate the following into a SQL query | Who directed the episode titled "the advocate"? | SELECT Directed by FROM table WHERE Title = "The Advocate" |
Translate the following into a SQL query | What is the fewest number of games lost? | SELECT MIN Lost FROM table |
Translate the following into a SQL query | What is the goal average 1 for teams that lost 9 games? | SELECT Goal Average 1 FROM table WHERE Lost = 9 |
Translate the following into a SQL query | How many teams finished with a 2nd points total of 31? | SELECT COUNT Position FROM table WHERE Points 2 = 31 |
Translate the following into a SQL query | How many games drawn for the team that had 72 goals for? | SELECT MAX Drawn FROM table WHERE Goals For = 72 |
Translate the following into a SQL query | How many games with record 1-3-3 | SELECT COUNT Game FROM table WHERE Record = 1-3-3 |
Translate the following into a SQL query | How many attended on mathches against atlanta thrashers | SELECT COUNT Attendance FROM table WHERE Opponent = Atlanta Thrashers |
Translate the following into a SQL query | Give the date of games against minnesota wild | SELECT Date FROM table WHERE Opponent = Minnesota Wild |
Translate the following into a SQL query | State the dates of games with record 1-2-3 | SELECT Date FROM table WHERE Record = 1-2-3 |
Translate the following into a SQL query | What is the minimum attendance on games of record 0-2-1 | SELECT MIN Attendance FROM table WHERE Record = 0-2-1 |
Translate the following into a SQL query | Which venue does Mardan sponsor? | SELECT Venue FROM table WHERE Shirt sponsor = Mardan |
Translate the following into a SQL query | Erdoğan Arıca is the head coach at what venue? | SELECT Venue FROM table WHERE Head coach = Erdoğan Arıca |
Translate the following into a SQL query | Who is the club chairman of the team that Murat Erdoğan is the captain of? | SELECT Club Chairman FROM table WHERE Team captain = Murat Erdoğan |
Translate the following into a SQL query | How many points were scored when the record was 6-8-6? | SELECT COUNT Points FROM table WHERE Record = 6-8-6 |
Translate the following into a SQL query | Which game had a record of 6-9-7? | SELECT Game FROM table WHERE Record = 6-9-7 |
Translate the following into a SQL query | When they played at the Bankatlantic Center, what was their record? | SELECT Record FROM table WHERE Location = BankAtlantic Center |
Translate the following into a SQL query | Who was the opponent on December 27? | SELECT Opponent FROM table WHERE Date = December 27 |
Translate the following into a SQL query | What was the score of the game on December 11? | SELECT Score FROM table WHERE Date = December 11 |
Translate the following into a SQL query | What was the record when the opposing team was the Columbus Blue Jackets at St. Pete Times Forum? | SELECT Record FROM table WHERE Location = St. Pete Times Forum AND Opponent = Columbus Blue Jackets |
Translate the following into a SQL query | What was the score when the record was 21-31-13? | SELECT Score FROM table WHERE Record = 21-31-13 |
Translate the following into a SQL query | How many locations were recorded when the opponent Columbus Blue Jackets? | SELECT COUNT Location FROM table WHERE Opponent = Columbus Blue Jackets |
Translate the following into a SQL query | What was the attendance when the opposing team was the Ottawa Senators and the record was 24-35-17? | SELECT MAX Attendance FROM table WHERE Opponent = Ottawa Senators AND Record = 24-35-17 |
Translate the following into a SQL query | The player who plays left wing is from what college/junior/club team? | SELECT College/Junior/Club Team (League) FROM table WHERE Position = Left Wing |
Translate the following into a SQL query | The player who plays goaltender is from what college/junior/club team? | SELECT College/Junior/Club Team (League) FROM table WHERE Position = Goaltender |
Translate the following into a SQL query | How many were played when there were 39 tries for? | SELECT Played FROM table WHERE Tries for = 39 |
Translate the following into a SQL query | How many were won when the points were 12? | SELECT COUNT Won FROM table WHERE Points = 12 |
Translate the following into a SQL query | How many were won when there were 49 points? | SELECT Won FROM table WHERE Points = 49 |
Translate the following into a SQL query | How many points were there when tries for were 84? | SELECT Points FROM table WHERE Tries for = 84 |
Translate the following into a SQL query | what team play in february 18 in the supersonic season | SELECT Team FROM table WHERE Date = February 18 |
Translate the following into a SQL query | what is the score in february 12 of the boston celtics team | SELECT Score FROM table WHERE Team = Boston Celtics |
Translate the following into a SQL query | Who is the opposing team when the game was played on the Shea Stadium? | SELECT Opponent FROM table WHERE Stadium = Shea Stadium |
Translate the following into a SQL query | How many games or records were played on the Miami Orange Bowl? | SELECT COUNT Record FROM table WHERE Stadium = Miami Orange Bowl |
Translate the following into a SQL query | What was the result of the game that was played on Nov. 26, 1972? | SELECT Result FROM table WHERE Date = Nov. 26 |
Translate the following into a SQL query | What are all Tamil months when the season in English is monsoon? | SELECT Tamil Months FROM table WHERE Season in English = Monsoon |
Translate the following into a SQL query | What is every English translation when Tamil months is Mārkazhi, Tai? | SELECT English Translation FROM table WHERE Tamil Months = mārkazhi, tai |
Translate the following into a SQL query | What is every Gregorian month when the season in Tamil is இளவேனில்? | SELECT Gregorian Months FROM table WHERE Season in Tamil = இளவேனில் |
Translate the following into a SQL query | How many seasons in Tamil occur when the season in Sanskrit is Grishma? | SELECT COUNT Season in Tamil FROM table WHERE Season in Sanskrit = Grishma |
Translate the following into a SQL query | Which departments have M.Phil(Maths)? | SELECT Department FROM table WHERE Qualification = M.Phil(Maths) |
Translate the following into a SQL query | How many faculty members have 20 years of experience? | SELECT COUNT Designation FROM table WHERE Experience = 20 years |
Translate the following into a SQL query | Name the power provided for transfer speed mb/s is 1250 | SELECT Power provided FROM table WHERE Transfer speed (MB/s) = 1250 |
Translate the following into a SQL query | Name the devices per channel for 2560 | SELECT Devices per channel FROM table WHERE Raw bandwidth (Mbit/s) = 2560 |
Translate the following into a SQL query | Name the power provided where transfer speed mb/s is 300 and max cable length of 10 | SELECT Power provided FROM table WHERE Transfer speed (MB/s) = 300 AND Max. cable length (m) = 10 |
Translate the following into a SQL query | Name the colorado when alaska is connecticut | SELECT Colorado FROM table WHERE Alaska = Connecticut |
Translate the following into a SQL query | Name the california where alaska tennessee | SELECT California FROM table WHERE Alaska = Tennessee |
Translate the following into a SQL query | Name the date for score of 95-101 | SELECT Date FROM table WHERE Score = 95-101 |
Translate the following into a SQL query | Name the high rebounds for march 15 | SELECT High rebounds FROM table WHERE Date = March 15 |
Translate the following into a SQL query | Name the score for record of 2-5 | SELECT Score FROM table WHERE Record = 2-5 |
Translate the following into a SQL query | How many schools won their last occ championship in 2006? | SELECT COUNT School FROM table WHERE Last OCC Championship = 2006 |
Translate the following into a SQL query | What are the years of participation for central crossing school? | SELECT Years of Participation FROM table WHERE School = Central Crossing |
Translate the following into a SQL query | What is the fewest number of occ championships for the team that last won an outright occ championship in 2006? | SELECT MIN OCC Championships FROM table WHERE Last Outright OCC Championship = 2006 |
Translate the following into a SQL query | What are the years of participation for pickerington north? | SELECT Years of Participation FROM table WHERE School = Pickerington North |
Translate the following into a SQL query | Name the event for redouane bouchtouk | SELECT Event FROM table WHERE Athlete = Redouane Bouchtouk |
Translate the following into a SQL query | Name the round 16 for did not advance and light flyweight | SELECT Round of 16 FROM table WHERE Quarterfinals = Did not advance AND Event = Light flyweight |
Translate the following into a SQL query | Name the athelte for enkhzorig ( mgl ) l 1–10 | SELECT Athlete FROM table WHERE Round of 32 = Enkhzorig ( MGL ) L 1–10 |
Translate the following into a SQL query | Who did Abdelhafid Benchebla face in the quarterfinals? | SELECT Quarterfinals FROM table WHERE Athlete = Abdelhafid Benchebla |
Translate the following into a SQL query | Who did Nabil Kassel face in the Round of 32? | SELECT Round of 32 FROM table WHERE Athlete = Nabil Kassel |
Translate the following into a SQL query | How did Hamza Kramou fare in the semifinals? | SELECT Semifinals FROM table WHERE Athlete = Hamza Kramou |
Translate the following into a SQL query | In what year did the winner of the FIS championship in 1982 win the Winter Olympics? | SELECT Winter Olympics FROM table WHERE FIS Nordic World Ski Championships = 1982 |
Translate the following into a SQL query | What year did Thorleif Haug win the Winter Olympics? | SELECT Winter Olympics FROM table WHERE Winner = Thorleif Haug |
Translate the following into a SQL query | What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships? | SELECT FIS Nordic World Ski Championships FROM table WHERE Country = Norway AND Holmenkollen = 1958 |
Translate the following into a SQL query | What is the holmenkollen for the 1982 FIS Nordic World Ski Championships? | SELECT Holmenkollen FROM table WHERE FIS Nordic World Ski Championships = 1982 |
Translate the following into a SQL query | What years did Birger Ruud win the FIS Nordic World Ski Championships? | SELECT FIS Nordic World Ski Championships FROM table WHERE Winner = Birger Ruud |
Translate the following into a SQL query | What year did Karl Schnabl win the Winter Olympics? | SELECT Winter Olympics FROM table WHERE Winner = Karl Schnabl |
Translate the following into a SQL query | What is the FIS Nordic World Ski Championships when holmenkollen is 1976? | SELECT FIS Nordic World Ski Championships FROM table WHERE Holmenkollen = 1976 |
Translate the following into a SQL query | What year is Winter Olympics when Holmenkollen is 1957, 1960? | SELECT Winter Olympics FROM table WHERE Holmenkollen = 1957, 1960 |
Translate the following into a SQL query | What's the part 4 for the verb whose part 3 is borgen? | SELECT Part 4 FROM table WHERE Part 3 = borgen |
Translate the following into a SQL query | What's the meaning of the verb whose part 1 is slapen? | SELECT Verb meaning FROM table WHERE Part 1 = slapen |
Translate the following into a SQL query | In what class does the verb with part 4 gelopen belong to? | SELECT Class FROM table WHERE Part 4 = gelopen |
Translate the following into a SQL query | What's part 1 of the verb whose part 4 is gevroren? | SELECT Part 1 FROM table WHERE Part 4 = gevroren |
Translate the following into a SQL query | How many different meanings does the verb with part 4 gegeven have? | SELECT COUNT Verb meaning FROM table WHERE Part 4 = gegeven |
Translate the following into a SQL query | What's the part 3 of the verb with part 4 gelopen? | SELECT Part 3 FROM table WHERE Part 4 = gelopen |
Translate the following into a SQL query | How many different classes of verbs are there whose part 3 is lucon? | SELECT COUNT Class FROM table WHERE Part 3 = lucon |
Translate the following into a SQL query | What's the class of the verb whose part 1 is lesan? | SELECT Class FROM table WHERE Part 1 = lesan |
Translate the following into a SQL query | How many different part 3 verbs are there that mean to freeze? | SELECT COUNT Part 3 FROM table WHERE Verb meaning = to freeze |
Translate the following into a SQL query | What's the part 3 of the verb whose class is 4? | SELECT Part 3 FROM table WHERE Class = 4 |
Translate the following into a SQL query | What's the part 3 of the verb in class 5? | SELECT Part 3 FROM table WHERE Class = 5 |
Translate the following into a SQL query | What is the class of the word who's second participle is laug? | SELECT Class FROM table WHERE Part 2 = laug |
Translate the following into a SQL query | What is the meaning of the class 6 verbs? | SELECT Verb meaning FROM table WHERE Class = 6 |
Translate the following into a SQL query | What is the 3rd participle of the verb whose 2nd participle is band? | SELECT Part 3 FROM table WHERE Part 2 = band |
Translate the following into a SQL query | What is the 1st participle of the verb whose 4th participle is haitans? | SELECT Part 1 FROM table WHERE Part 4 = haitans |
Translate the following into a SQL query | For part 2 *lauk, what is listed for part 4? | SELECT Part 4 FROM table WHERE Part 2 = *lauk |
Translate the following into a SQL query | What is the verb meaning for *bundun? | SELECT Verb meaning FROM table WHERE Part 3 = *bundun |
Translate the following into a SQL query | For part 2 *raid, what is listed for part 3? | SELECT Part 3 FROM table WHERE Part 2 = *raid |
Translate the following into a SQL query | What word is listed under part 2 for part 4 *ridanaz? | SELECT Part 2 FROM table WHERE Part 4 = *ridanaz |
Translate the following into a SQL query | What is listed under part 1 for class 3b? | SELECT Part 1 FROM table WHERE Class = 3b |
Translate the following into a SQL query | What class is the verb wich its part 4 is frosinn | SELECT Class FROM table WHERE Part 4 = frosinn |
Translate the following into a SQL query | What class is the verb wich its part 3 is heldu | SELECT Class FROM table WHERE Part 3 = heldu |
Translate the following into a SQL query | What is part 1 of the verb in class 7b | SELECT Part 1 FROM table WHERE Class = 7b |
Translate the following into a SQL query | What is part 1 of the verb in class 4 | SELECT Part 3 FROM table WHERE Class = 4 |
Translate the following into a SQL query | How many verbs mean to bear | SELECT COUNT Part 4 FROM table WHERE Verb meaning = to bear |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.