instruction
stringclasses 1
value | input
stringlengths 12
244
| output
stringlengths 22
468
|
---|---|---|
Translate the following into a SQL query | Who had the most assists and how many did they have in game 35? | SELECT High assists FROM table WHERE Game = 35 |
Translate the following into a SQL query | Who had the most rebounds and how many did they have on January 19? | SELECT High rebounds FROM table WHERE Date = January 19 |
Translate the following into a SQL query | Which team played on April 9? | SELECT Team FROM table WHERE Date = April 9 |
Translate the following into a SQL query | Which player scored the most points and how many were scored on November 6? | SELECT High points FROM table WHERE Date = November 6 |
Translate the following into a SQL query | Who had the high assists on November 17? | SELECT High assists FROM table WHERE Date = November 17 |
Translate the following into a SQL query | Who had highest rebounds during game on March 12? | SELECT High rebounds FROM table WHERE Date = March 12 |
Translate the following into a SQL query | What was the rocket's record when they played against Indiana? | SELECT Record FROM table WHERE Team = Indiana |
Translate the following into a SQL query | How many people directed "the one with rachel's dream"? | SELECT COUNT Directed by FROM table WHERE Title = "The One with Rachel's Dream" |
Translate the following into a SQL query | How many episodes in the season had production code of 175255? | SELECT COUNT No in season FROM table WHERE Production code = 175255 |
Translate the following into a SQL query | What episode number in the series is "the one with the blind dates"? | SELECT MAX No in series FROM table WHERE Title = "The One with the Blind Dates" |
Translate the following into a SQL query | What were the high points on March 25? | SELECT High points FROM table WHERE Date = March 25 |
Translate the following into a SQL query | Who was the team on March 18? | SELECT Team FROM table WHERE Date = March 18 |
Translate the following into a SQL query | What was the high points when the team was Washington? | SELECT High points FROM table WHERE Team = Washington |
Translate the following into a SQL query | What was the game number when the location attendance was the Palace of Auburn Hills 15,166? | SELECT MIN Game FROM table WHERE Location Attendance = The Palace of Auburn Hills 15,166 |
Translate the following into a SQL query | What team did they play on april 6? | SELECT Team FROM table WHERE Date = April 6 |
Translate the following into a SQL query | What numbered game did they play on april 5? | SELECT MAX Game FROM table WHERE Date = April 5 |
Translate the following into a SQL query | What numbered game did they play chicago? | SELECT Game FROM table WHERE Team = Chicago |
Translate the following into a SQL query | Who had the most assists agains New Orleans? | SELECT High assists FROM table WHERE Team = New Orleans |
Translate the following into a SQL query | For how many games on December 19 is there information on who scored the most rebounds? | SELECT COUNT High rebounds FROM table WHERE Date = December 19 |
Translate the following into a SQL query | What's the record in the game where Greg Monroe (8) did the high rebounds? | SELECT Record FROM table WHERE High rebounds = Greg Monroe (8) |
Translate the following into a SQL query | Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points? | SELECT High rebounds FROM table WHERE High points = Rodney Stuckey (16) |
Translate the following into a SQL query | Who was the opponent in the game in which Austin Daye (16) did the most high points? | SELECT Team FROM table WHERE High points = Austin Daye (16) |
Translate the following into a SQL query | Where was the game in which Will Bynum (5) did the high assists played? | SELECT Location Attendance FROM table WHERE High assists = Will Bynum (5) |
Translate the following into a SQL query | What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)? | SELECT Team FROM table WHERE High assists = Stephen Curry (7) AND High points = Monta Ellis (27) |
Translate the following into a SQL query | What is the highest game number? | SELECT MAX Game FROM table |
Translate the following into a SQL query | What is the score when the team is @ dallas? | SELECT Score FROM table WHERE Team = @ Dallas |
Translate the following into a SQL query | Name the high rebounds for january 14 | SELECT High rebounds FROM table WHERE Date = January 14 |
Translate the following into a SQL query | Name the number of score for january 12 | SELECT COUNT Score FROM table WHERE Date = January 12 |
Translate the following into a SQL query | Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20) | SELECT Location Attendance FROM table WHERE High points = Austin Daye , Tracy McGrady , Tayshaun Prince (20) |
Translate the following into a SQL query | Name the number of date for stephen curry , dorell wright (27) | SELECT COUNT Date FROM table WHERE High points = Stephen Curry , Dorell Wright (27) |
Translate the following into a SQL query | Name the high rebounds for 77 game | SELECT High rebounds FROM table WHERE Game = 77 |
Translate the following into a SQL query | What was the record after the game on November 10? | SELECT Record FROM table WHERE Date = November 10 |
Translate the following into a SQL query | What is the score when the hight points is Monta Ellis (29)? | SELECT Score FROM table WHERE High points = Monta Ellis (29) |
Translate the following into a SQL query | How many teams have hight points listed as David Lee (31)? | SELECT COUNT Team FROM table WHERE High points = David Lee (31) |
Translate the following into a SQL query | What is the record when the high points is listed as Stephen Curry (32)? | SELECT Record FROM table WHERE High points = Stephen Curry (32) |
Translate the following into a SQL query | What is the record when the date is January 7? | SELECT Record FROM table WHERE Date = January 7 |
Translate the following into a SQL query | What is the date when the team is listed as New Orleans? | SELECT Date FROM table WHERE Team = New Orleans |
Translate the following into a SQL query | What was the team where Darren Collison (7) scored high assists? | SELECT Team FROM table WHERE High assists = Darren Collison (7) |
Translate the following into a SQL query | When did the Roy Hibbert (27) did the high points? | SELECT Date FROM table WHERE High points = Roy Hibbert (27) |
Translate the following into a SQL query | In how many different games did Roy Hibbert (16) did the most high rebounds? | SELECT COUNT Game FROM table WHERE High rebounds = Roy Hibbert (16) |
Translate the following into a SQL query | What was the score of the game in which Danny Granger (30) did the high points? | SELECT Score FROM table WHERE High points = Danny Granger (30) |
Translate the following into a SQL query | Who scored the most points when the Bucks played against Houston? | SELECT High points FROM table WHERE Team = Houston |
Translate the following into a SQL query | What date was game number 22 on? | SELECT Date FROM table WHERE Game = 22 |
Translate the following into a SQL query | How many people scored the most points during the game on December 10? | SELECT COUNT High points FROM table WHERE Date = December 10 |
Translate the following into a SQL query | When the team is chicago what is the location attendence? | SELECT Location Attendance FROM table WHERE Team = Chicago |
Translate the following into a SQL query | What is the score when the team is Orlando? | SELECT COUNT Score FROM table WHERE Team = Orlando |
Translate the following into a SQL query | What was the score in the game on March 26? | SELECT Score FROM table WHERE Date = March 26 |
Translate the following into a SQL query | What was the record when the Clippers played Philadelphia? | SELECT Record FROM table WHERE Team = Philadelphia |
Translate the following into a SQL query | What location and attendance were there for game 5? | SELECT Location Attendance FROM table WHERE Game = 5 |
Translate the following into a SQL query | Which game did rudy gay (12) have the highest points? | SELECT Game FROM table WHERE High points = Rudy Gay (12) |
Translate the following into a SQL query | How many high assists where there for the team of caja laboral? | SELECT COUNT High assists FROM table WHERE Team = Caja Laboral |
Translate the following into a SQL query | Which game did marc gasol (10) have the high rebounds? | SELECT Game FROM table WHERE High rebounds = Marc Gasol (10) |
Translate the following into a SQL query | Who had the high assists on october 6? | SELECT High assists FROM table WHERE Date = October 6 |
Translate the following into a SQL query | Name the total number of high assists for fedexforum 11,283 | SELECT COUNT High assists FROM table WHERE Location Attendance = FedExForum 11,283 |
Translate the following into a SQL query | Name the most game for us airways center 16,470 | SELECT MIN Game FROM table WHERE Location Attendance = US Airways Center 16,470 |
Translate the following into a SQL query | Who and what were the high points player for the game against Detroit? | SELECT High points FROM table WHERE Team = Detroit |
Translate the following into a SQL query | How many times did the Centurions play the Rhein Fire? | SELECT COUNT Game site FROM table WHERE Opponent = Rhein Fire |
Translate the following into a SQL query | Where did the Centurions play the Hamburg Sea Devils? | SELECT Game site FROM table WHERE Opponent = Hamburg Sea Devils |
Translate the following into a SQL query | What time was the kickoff against the Frankfurt Galaxy? | SELECT Kickoff FROM table WHERE Opponent = Frankfurt Galaxy |
Translate the following into a SQL query | How many total catches did the player with no. 46 have? | SELECT COUNT Catches FROM table WHERE No. = 46 |
Translate the following into a SQL query | How did the manager who was replaced by Jakob Michelsen depart? | SELECT Manner of departure FROM table WHERE Replaced by = Jakob Michelsen |
Translate the following into a SQL query | What was the AB team's position in table? | SELECT Position in table FROM table WHERE Team = AB |
Translate the following into a SQL query | On what date did Kim Fogh replace the previous manager? | SELECT Date of appointment FROM table WHERE Replaced by = Kim Fogh |
Translate the following into a SQL query | What was the vacancy date for Thomas Thomasberg? | SELECT Date of vacancy FROM table WHERE Outgoing manager = Thomas Thomasberg |
Translate the following into a SQL query | Which manager was replaced by Thomas Thomasberg? | SELECT Outgoing manager FROM table WHERE Replaced by = Thomas Thomasberg |
Translate the following into a SQL query | How many total dismissals did the player for Guyana have? | SELECT MAX Total dismissals FROM table WHERE Club = Guyana |
Translate the following into a SQL query | The player for what club had 2 tests? | SELECT Club FROM table WHERE Tests = 2 |
Translate the following into a SQL query | What is the most amount of stumpings any player had? | SELECT MAX Stumpings FROM table |
Translate the following into a SQL query | What club did Cyril Christiani play for? | SELECT Club FROM table WHERE Player = Cyril Christiani |
Translate the following into a SQL query | How many catches did Clifford McWatt have? | SELECT MIN Catches FROM table WHERE Player = Clifford McWatt |
Translate the following into a SQL query | Name the points for top tens being 24 and ownder david pearson | SELECT Points (margin) FROM table WHERE Top Tens = 24 AND Owner = David Pearson |
Translate the following into a SQL query | Name the starts for bobby labonte | SELECT Starts FROM table WHERE Driver = Bobby Labonte |
Translate the following into a SQL query | Name the poles for season 2006 | SELECT Poles FROM table WHERE Season = 2006 |
Translate the following into a SQL query | What was the production code of the episode no. 55 in the series? | SELECT Production code FROM table WHERE No. in series = 55 |
Translate the following into a SQL query | What was the production code of the episode with an audience of 14.79 million in the US? | SELECT Production code FROM table WHERE U.S. viewers (million) = 14.79 |
Translate the following into a SQL query | Who directed the episode with an audience of 14.11 million? | SELECT Directed by FROM table WHERE U.S. viewers (million) = 14.11 |
Translate the following into a SQL query | What was the title of the episode with a production code of 3x6404? | SELECT Title FROM table WHERE Production code = 3X6404 |
Translate the following into a SQL query | Which school players have a number of 255 | SELECT College/junior/club team FROM table WHERE Pick = 255 |
Translate the following into a SQL query | what educational institute does wes swinson attend | SELECT College/junior/club team FROM table WHERE Player = Wes Swinson |
Translate the following into a SQL query | which part on the team does rick schuhwerk play | SELECT Position FROM table WHERE Player = Rick Schuhwerk |
Translate the following into a SQL query | For college/junior/club team is brandon wheat kings (whl) mention all the player name | SELECT Player FROM table WHERE College/junior/club team = Brandon Wheat Kings (WHL) |
Translate the following into a SQL query | For player is jamal mayers mention the minimum pick | SELECT MIN Pick FROM table WHERE Player = Jamal Mayers |
Translate the following into a SQL query | For player is john jakopin mention the total number of position | SELECT COUNT Position FROM table WHERE Player = John Jakopin |
Translate the following into a SQL query | For nhl team is san jose sharks mention all the college/junior/club team | SELECT College/junior/club team FROM table WHERE NHL team = San Jose Sharks |
Translate the following into a SQL query | For player is adam wiesel mention all the college/junior/club team | SELECT College/junior/club team FROM table WHERE Player = Adam Wiesel |
Translate the following into a SQL query | How many values are displayed under pick for Vlastimil Kroupa? | SELECT COUNT Pick FROM table WHERE Player = Vlastimil Kroupa |
Translate the following into a SQL query | How many positions does Janne Niinimaa play? | SELECT COUNT Position FROM table WHERE Player = Janne Niinimaa |
Translate the following into a SQL query | How many teams does Lee Sorochan play for? | SELECT COUNT College/junior/club team FROM table WHERE Player = Lee Sorochan |
Translate the following into a SQL query | What player belongs to the Chicago Blackhawks? | SELECT Player FROM table WHERE NHL team = Chicago Blackhawks |
Translate the following into a SQL query | How many teams does Maxim Bets play for? | SELECT COUNT NHL team FROM table WHERE Player = Maxim Bets |
Translate the following into a SQL query | What was the minimum pick by the Florida Panthers? | SELECT MIN Pick FROM table WHERE NHL team = Florida Panthers |
Translate the following into a SQL query | What NHL team picked Ryan Meade for the draft? | SELECT NHL team FROM table WHERE Player = Ryan Meade |
Translate the following into a SQL query | What college team did Ryan Golden come from? | SELECT College/junior/club team FROM table WHERE Player = Ryan Golden |
Translate the following into a SQL query | How many different nationalities is pick number 179? | SELECT COUNT Nationality FROM table WHERE Pick = 179 |
Translate the following into a SQL query | What college team did the pick for Pittsburgh Penguins come from? | SELECT College/junior/club team FROM table WHERE NHL team = Pittsburgh Penguins |
Translate the following into a SQL query | What NHL team picked Tom White? | SELECT NHL team FROM table WHERE Player = Tom White |
Translate the following into a SQL query | How many weeks in the top 10 was spent by a song performed by Peter Kay? | SELECT MAX Weeks in top 10 FROM table WHERE Artist = Peter Kay |
Translate the following into a SQL query | How long has the longest song spent in the top 10? | SELECT MAX Weeks in top 10 FROM table |
Translate the following into a SQL query | What college/junior/club team did dmitri gorenko play for? | SELECT College/junior/club team FROM table WHERE Player = Dmitri Gorenko |
Translate the following into a SQL query | What position does krylja sovetov (russia) play? | SELECT Position FROM table WHERE College/junior/club team = Krylja Sovetov (Russia) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.