instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: Name the high rebounds for 81 game | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_12 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_27723228_12 WHERE game = 81 |
Write a SQL query that answers the following question: Name the score for indiana | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_12 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27723228_12 WHERE team = "Indiana" |
Write a SQL query that answers the following question: What was the location and attendance of the game against Dallas? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_11 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_27723228_11 WHERE team = "Dallas" |
Write a SQL query that answers the following question: Who had the high rebounds when the record was 14β7? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, record VARCHAR) | SELECT high_rebounds FROM table_27723228_8 WHERE record = "14β7" |
Write a SQL query that answers the following question: How many people are listed for high rebounds on game 30? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, game VARCHAR) | SELECT COUNT(high_rebounds) FROM table_27723228_8 WHERE game = 30 |
Write a SQL query that answers the following question: What was the record when chris paul (16) had the high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_8 (record VARCHAR, high_points VARCHAR) | SELECT record FROM table_27723228_8 WHERE high_points = "Chris Paul (16)" |
Write a SQL query that answers the following question: What is the record when the score was l 84β96 (ot)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR) | SELECT record FROM table_27723228_8 WHERE score = "L 84β96 (OT)" |
Write a SQL query that answers the following question: Where was the game played when the record was 16β11? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_8 (location_attendance VARCHAR, record VARCHAR) | SELECT location_attendance FROM table_27723228_8 WHERE record = "16β11" |
Write a SQL query that answers the following question: Name the score for miami | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_7 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27723228_7 WHERE team = "Miami" |
Write a SQL query that answers the following question: Name the high assists for w 107β99 (ot) | The relevant table was constructed using the following SQL : CREATE TABLE table_27723228_7 (high_assists VARCHAR, score VARCHAR) | SELECT high_assists FROM table_27723228_7 WHERE score = "W 107β99 (OT)" |
Write a SQL query that answers the following question: What's the predecessor of the Ekavian word vreme? | The relevant table was constructed using the following SQL : CREATE TABLE table_27730_9 (predecessor VARCHAR, ekavian VARCHAR) | SELECT predecessor FROM table_27730_9 WHERE ekavian = "vreme" |
Write a SQL query that answers the following question: What's the Ikavian translation of the Ijekavian word lijep? | The relevant table was constructed using the following SQL : CREATE TABLE table_27730_9 (ikavian VARCHAR, ijekavian VARCHAR) | SELECT ikavian FROM table_27730_9 WHERE ijekavian = "lijep" |
Write a SQL query that answers the following question: What's the ijekavian translation of the ikavian word grijati? | The relevant table was constructed using the following SQL : CREATE TABLE table_27730_9 (ijekavian VARCHAR, ikavian VARCHAR) | SELECT ijekavian FROM table_27730_9 WHERE ikavian = "grijati" |
Write a SQL query that answers the following question: Who had highest assists at game on December 21? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR) | SELECT COUNT(high_assists) FROM table_27723526_9 WHERE date = "December 21" |
Write a SQL query that answers the following question: What location did the Mavericks play against Milwaukee? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723526_9 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_27723526_9 WHERE team = "Milwaukee" |
Write a SQL query that answers the following question: What is the high rebound for June 9? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_27723526_17 WHERE date = "June 9" |
Write a SQL query that answers the following question: Who is the high rebound where game is 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_27723526_17 WHERE game = 5 |
Write a SQL query that answers the following question: What company plays on april 1? | The relevant table was constructed using the following SQL : CREATE TABLE table_27733258_11 (team VARCHAR, date VARCHAR) | SELECT team FROM table_27733258_11 WHERE date = "April 1" |
Write a SQL query that answers the following question: Name the high points for l 110β112 (ot) | The relevant table was constructed using the following SQL : CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR) | SELECT high_points FROM table_27733258_6 WHERE score = "L 110β112 (OT)" |
Write a SQL query that answers the following question: Name the location attendance for l 105β123 (ot) | The relevant table was constructed using the following SQL : CREATE TABLE table_27733258_6 (location_attendance VARCHAR, score VARCHAR) | SELECT location_attendance FROM table_27733258_6 WHERE score = "L 105β123 (OT)" |
Write a SQL query that answers the following question: what date was game 29? | The relevant table was constructed using the following SQL : CREATE TABLE table_27733258_7 (date VARCHAR, game VARCHAR) | SELECT date FROM table_27733258_7 WHERE game = 29 |
Write a SQL query that answers the following question: Who did the team play on january 9? | The relevant table was constructed using the following SQL : CREATE TABLE table_27733258_8 (team VARCHAR, date VARCHAR) | SELECT team FROM table_27733258_8 WHERE date = "January 9" |
Write a SQL query that answers the following question: Who had the highest assists in game 75? | The relevant table was constructed using the following SQL : CREATE TABLE table_27733909_10 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_27733909_10 WHERE game = 75 |
Write a SQL query that answers the following question: How many locations did the game that was on April 8 take place at? | The relevant table was constructed using the following SQL : CREATE TABLE table_27733909_10 (location_attendance VARCHAR, date VARCHAR) | SELECT COUNT(location_attendance) FROM table_27733909_10 WHERE date = "April 8" |
Write a SQL query that answers the following question: what is the overall number of times when the calendar showed october 6 | The relevant table was constructed using the following SQL : CREATE TABLE table_27733909_1 (record VARCHAR, date VARCHAR) | SELECT COUNT(record) FROM table_27733909_1 WHERE date = "October 6" |
Write a SQL query that answers the following question: what is the most number where the calendar shows october 20 | The relevant table was constructed using the following SQL : CREATE TABLE table_27733909_1 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_27733909_1 WHERE date = "October 20" |
Write a SQL query that answers the following question: what are the times where the play is 5 | The relevant table was constructed using the following SQL : CREATE TABLE table_27733909_1 (date VARCHAR, game VARCHAR) | SELECT date FROM table_27733909_1 WHERE game = 5 |
Write a SQL query that answers the following question: What was the score in the game on November 21? | The relevant table was constructed using the following SQL : CREATE TABLE table_27733909_5 (score VARCHAR, date VARCHAR) | SELECT score FROM table_27733909_5 WHERE date = "November 21" |
Write a SQL query that answers the following question: Who had the most points and how many did they have in game 11? | The relevant table was constructed using the following SQL : CREATE TABLE table_27733909_5 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_27733909_5 WHERE game = 11 |
Write a SQL query that answers the following question: List records for game 29. | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_6 (record VARCHAR, game VARCHAR) | SELECT record FROM table_27734286_6 WHERE game = 29 |
Write a SQL query that answers the following question: What record has c. j. miles (20) in the high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_1 (record VARCHAR, high_points VARCHAR) | SELECT record FROM table_27734286_1 WHERE high_points = "C. J. Miles (20)" |
Write a SQL query that answers the following question: Who in the high rebounds is in the honda center 15,625 location attendance? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_1 (high_rebounds VARCHAR, location_attendance VARCHAR) | SELECT high_rebounds FROM table_27734286_1 WHERE location_attendance = "Honda Center 15,625" |
Write a SQL query that answers the following question: Who is in the high points in the @ l.a. clippers team? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_1 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_27734286_1 WHERE team = "@ L.A. Clippers" |
Write a SQL query that answers the following question: What's the score in al jefferson (24) high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_1 (score VARCHAR, high_points VARCHAR) | SELECT COUNT(score) FROM table_27734286_1 WHERE high_points = "Al Jefferson (24)" |
Write a SQL query that answers the following question: What`s the score in October 7. | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_1 (score VARCHAR, date VARCHAR) | SELECT score FROM table_27734286_1 WHERE date = "October 7" |
Write a SQL query that answers the following question: What's the location attendance of the @ portland team? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_1 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_27734286_1 WHERE team = "@ Portland" |
Write a SQL query that answers the following question: Who had the high assist total on january 8? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_7 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27734286_7 WHERE date = "January 8" |
Write a SQL query that answers the following question: Who had the high assists for game number 38? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_7 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_27734286_7 WHERE game = 38 |
Write a SQL query that answers the following question: How many games did they play on january 7? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734286_7 (high_points VARCHAR, date VARCHAR) | SELECT COUNT(high_points) FROM table_27734286_7 WHERE date = "January 7" |
Write a SQL query that answers the following question: What date did the Hawks play against Boston? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_11 (date VARCHAR, team VARCHAR) | SELECT date FROM table_27734577_11 WHERE team = "Boston" |
Write a SQL query that answers the following question: List the highest number of assists when zaza pachulia (6) had the most rebounds. | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_2 (high_assists VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(high_assists) FROM table_27734577_2 WHERE high_rebounds = "Zaza Pachulia (6)" |
Write a SQL query that answers the following question: Which team was the opponent on october 21? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_2 (team VARCHAR, date VARCHAR) | SELECT team FROM table_27734577_2 WHERE date = "October 21" |
Write a SQL query that answers the following question: Who corned the most points for the game that ended with a score of l 85β94 (ot)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_2 (high_points VARCHAR, score VARCHAR) | SELECT high_points FROM table_27734577_2 WHERE score = "L 85β94 (OT)" |
Write a SQL query that answers the following question: what was the final score of the game where josh powell (13) scored the most points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_2 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_27734577_2 WHERE high_points = "Josh Powell (13)" |
Write a SQL query that answers the following question: What's the record of the @ miami team? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_8 (record VARCHAR, team VARCHAR) | SELECT record FROM table_27734577_8 WHERE team = "@ Miami" |
Write a SQL query that answers the following question: How many records where in January 2? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_8 (record VARCHAR, date VARCHAR) | SELECT COUNT(record) FROM table_27734577_8 WHERE date = "January 2" |
Write a SQL query that answers the following question: What are the high rebounds in the jamal crawford (20) high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, high_points VARCHAR) | SELECT high_rebounds FROM table_27734577_8 WHERE high_points = "Jamal Crawford (20)" |
Write a SQL query that answers the following question: What are the high rebounds in the 45 game? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_27734577_8 WHERE game = 45 |
Write a SQL query that answers the following question: What's the date of the new orleans team ? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_8 (date VARCHAR, team VARCHAR) | SELECT date FROM table_27734577_8 WHERE team = "New Orleans" |
Write a SQL query that answers the following question: What team has a score of w 110β87 (ot)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734577_8 (team VARCHAR, score VARCHAR) | SELECT team FROM table_27734577_8 WHERE score = "W 110β87 (OT)" |
Write a SQL query that answers the following question: What was the game record if Marcus Camby (13) got the high rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_9 (record VARCHAR, high_rebounds VARCHAR) | SELECT record FROM table_27734769_9 WHERE high_rebounds = "Marcus Camby (13)" |
Write a SQL query that answers the following question: Who did the high rebounds for the team Minnesota? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_9 (high_rebounds VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_27734769_9 WHERE team = "Minnesota" |
Write a SQL query that answers the following question: How many scores where achieved on January 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_9 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_27734769_9 WHERE date = "January 19" |
Write a SQL query that answers the following question: Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing? | The relevant table was constructed using the following SQL : CREATE TABLE table_27743641_2 (lmp2_winning_driver VARCHAR, lmp1_winning_team VARCHAR) | SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = "No. 20 Oryx Dyson Racing" |
Write a SQL query that answers the following question: Who were the GT winning team when the GTC winning team was No. 54 Black Swan Racing? | The relevant table was constructed using the following SQL : CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, gtc_winning_team VARCHAR) | SELECT gt_winning_team FROM table_27743641_2 WHERE gtc_winning_team = "No. 54 Black Swan Racing" |
Write a SQL query that answers the following question: Who were the GT winning team when the results were "report"? | The relevant table was constructed using the following SQL : CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, results VARCHAR) | SELECT gt_winning_team FROM table_27743641_2 WHERE results = "Report" |
Write a SQL query that answers the following question: what is the date the high assists was andre miller (7)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR) | SELECT date FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)" |
Write a SQL query that answers the following question: What is the date the high points was lamarcus aldridge (36)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_8 (date VARCHAR, high_points VARCHAR) | SELECT date FROM table_27734769_8 WHERE high_points = "LaMarcus Aldridge (36)" |
Write a SQL query that answers the following question: What is the score when the team is milwaukee? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_8 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27734769_8 WHERE team = "Milwaukee" |
Write a SQL query that answers the following question: How many times was the high assists andre miller (7)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR) | SELECT COUNT(date) FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)" |
Write a SQL query that answers the following question: How many times was the high rebounds by marcus camby (18)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(date) FROM table_27734769_8 WHERE high_rebounds = "Marcus Camby (18)" |
Write a SQL query that answers the following question: What is the date the high rebounds were by lamarcus aldridge (6)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR) | SELECT date FROM table_27734769_8 WHERE high_rebounds = "LaMarcus Aldridge (6)" |
Write a SQL query that answers the following question: Who had the most assists and how many did they have in game 35? | The relevant table was constructed using the following SQL : CREATE TABLE table_27744844_7 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_27744844_7 WHERE game = 35 |
Write a SQL query that answers the following question: Who had the most rebounds and how many did they have on January 19? | The relevant table was constructed using the following SQL : CREATE TABLE table_27744844_7 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_27744844_7 WHERE date = "January 19" |
Write a SQL query that answers the following question: Which team played on April 9? | The relevant table was constructed using the following SQL : CREATE TABLE table_27744976_11 (team VARCHAR, date VARCHAR) | SELECT team FROM table_27744976_11 WHERE date = "April 9" |
Write a SQL query that answers the following question: Which player scored the most points and how many were scored on November 6? | The relevant table was constructed using the following SQL : CREATE TABLE table_27744844_5 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_27744844_5 WHERE date = "November 6" |
Write a SQL query that answers the following question: Who had the high assists on November 17? | The relevant table was constructed using the following SQL : CREATE TABLE table_27744976_6 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27744976_6 WHERE date = "November 17" |
Write a SQL query that answers the following question: Who had highest rebounds during game on March 12? | The relevant table was constructed using the following SQL : CREATE TABLE table_27744976_10 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_27744976_10 WHERE date = "March 12" |
Write a SQL query that answers the following question: What was the rocket's record when they played against Indiana? | The relevant table was constructed using the following SQL : CREATE TABLE table_27744976_10 (record VARCHAR, team VARCHAR) | SELECT record FROM table_27744976_10 WHERE team = "Indiana" |
Write a SQL query that answers the following question: How many episodes in the season had production code of 175255? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755040_1 (no_in_season VARCHAR, production_code VARCHAR) | SELECT COUNT(no_in_season) FROM table_27755040_1 WHERE production_code = 175255 |
Write a SQL query that answers the following question: What were the high points on March 25? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_10 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_27755603_10 WHERE date = "March 25" |
Write a SQL query that answers the following question: Who was the team on March 18? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_10 (team VARCHAR, date VARCHAR) | SELECT team FROM table_27755603_10 WHERE date = "March 18" |
Write a SQL query that answers the following question: What was the high points when the team was Washington? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_10 (high_points VARCHAR, team VARCHAR) | SELECT high_points FROM table_27755603_10 WHERE team = "Washington" |
Write a SQL query that answers the following question: What was the game number when the location attendance was the Palace of Auburn Hills 15,166? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_10 (game INTEGER, location_attendance VARCHAR) | SELECT MIN(game) FROM table_27755603_10 WHERE location_attendance = "The Palace of Auburn Hills 15,166" |
Write a SQL query that answers the following question: What team did they play on april 6? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_11 (team VARCHAR, date VARCHAR) | SELECT team FROM table_27755603_11 WHERE date = "April 6" |
Write a SQL query that answers the following question: What numbered game did they play on april 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_11 (game INTEGER, date VARCHAR) | SELECT MAX(game) FROM table_27755603_11 WHERE date = "April 5" |
Write a SQL query that answers the following question: What numbered game did they play chicago? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_11 (game VARCHAR, team VARCHAR) | SELECT game FROM table_27755603_11 WHERE team = "Chicago" |
Write a SQL query that answers the following question: Who had the most assists agains New Orleans? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_7 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_27755603_7 WHERE team = "New Orleans" |
Write a SQL query that answers the following question: For how many games on December 19 is there information on who scored the most rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_7 (high_rebounds VARCHAR, date VARCHAR) | SELECT COUNT(high_rebounds) FROM table_27755603_7 WHERE date = "December 19" |
Write a SQL query that answers the following question: What's the record in the game where Greg Monroe (8) did the high rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_2 (record VARCHAR, high_rebounds VARCHAR) | SELECT record FROM table_27755603_2 WHERE high_rebounds = "Greg Monroe (8)" |
Write a SQL query that answers the following question: Who did the high rebounds in the game in which Rodney Stuckey (16) did the high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_2 (high_rebounds VARCHAR, high_points VARCHAR) | SELECT high_rebounds FROM table_27755603_2 WHERE high_points = "Rodney Stuckey (16)" |
Write a SQL query that answers the following question: Who was the opponent in the game in which Austin Daye (16) did the most high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_2 (team VARCHAR, high_points VARCHAR) | SELECT team FROM table_27755603_2 WHERE high_points = "Austin Daye (16)" |
Write a SQL query that answers the following question: Where was the game in which Will Bynum (5) did the high assists played? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_2 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_27755603_2 WHERE high_assists = "Will Bynum (5)" |
Write a SQL query that answers the following question: What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_10 (team VARCHAR, high_assists VARCHAR, high_points VARCHAR) | SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_points = "Monta Ellis (27)" |
Write a SQL query that answers the following question: What is the highest game number? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_10 (game INTEGER) | SELECT MAX(game) FROM table_27755784_10 |
Write a SQL query that answers the following question: What is the score when the team is @ dallas? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_10 (score VARCHAR, team VARCHAR) | SELECT score FROM table_27755784_10 WHERE team = "@ Dallas" |
Write a SQL query that answers the following question: Name the high rebounds for january 14 | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_8 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_27755603_8 WHERE date = "January 14" |
Write a SQL query that answers the following question: Name the number of score for january 12 | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_8 (score VARCHAR, date VARCHAR) | SELECT COUNT(score) FROM table_27755603_8 WHERE date = "January 12" |
Write a SQL query that answers the following question: Name the location attendance for austin daye , tracy mcgrady , tayshaun prince (20) | The relevant table was constructed using the following SQL : CREATE TABLE table_27755603_8 (location_attendance VARCHAR, high_points VARCHAR) | SELECT location_attendance FROM table_27755603_8 WHERE high_points = "Austin Daye , Tracy McGrady , Tayshaun Prince (20)" |
Write a SQL query that answers the following question: Name the number of date for stephen curry , dorell wright (27) | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_11 (date VARCHAR, high_points VARCHAR) | SELECT COUNT(date) FROM table_27755784_11 WHERE high_points = "Stephen Curry , Dorell Wright (27)" |
Write a SQL query that answers the following question: Name the high rebounds for 77 game | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_11 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_27755784_11 WHERE game = 77 |
Write a SQL query that answers the following question: What was the record after the game on November 10? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_6 (record VARCHAR, date VARCHAR) | SELECT record FROM table_27755784_6 WHERE date = "November 10" |
Write a SQL query that answers the following question: What is the score when the hight points is Monta Ellis (29)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_8 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_27755784_8 WHERE high_points = "Monta Ellis (29)" |
Write a SQL query that answers the following question: How many teams have hight points listed as David Lee (31)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_8 (team VARCHAR, high_points VARCHAR) | SELECT COUNT(team) FROM table_27755784_8 WHERE high_points = "David Lee (31)" |
Write a SQL query that answers the following question: What is the record when the high points is listed as Stephen Curry (32)? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_8 (record VARCHAR, high_points VARCHAR) | SELECT record FROM table_27755784_8 WHERE high_points = "Stephen Curry (32)" |
Write a SQL query that answers the following question: What is the record when the date is January 7? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_8 (record VARCHAR, date VARCHAR) | SELECT record FROM table_27755784_8 WHERE date = "January 7" |
Write a SQL query that answers the following question: What is the date when the team is listed as New Orleans? | The relevant table was constructed using the following SQL : CREATE TABLE table_27755784_8 (date VARCHAR, team VARCHAR) | SELECT date FROM table_27755784_8 WHERE team = "New Orleans" |
Write a SQL query that answers the following question: What was the team where Darren Collison (7) scored high assists? | The relevant table was constructed using the following SQL : CREATE TABLE table_27756164_11 (team VARCHAR, high_assists VARCHAR) | SELECT team FROM table_27756164_11 WHERE high_assists = "Darren Collison (7)" |
Write a SQL query that answers the following question: When did the Roy Hibbert (27) did the high points? | The relevant table was constructed using the following SQL : CREATE TABLE table_27756164_2 (date VARCHAR, high_points VARCHAR) | SELECT date FROM table_27756164_2 WHERE high_points = "Roy Hibbert (27)" |
Write a SQL query that answers the following question: In how many different games did Roy Hibbert (16) did the most high rebounds? | The relevant table was constructed using the following SQL : CREATE TABLE table_27756164_2 (game VARCHAR, high_rebounds VARCHAR) | SELECT COUNT(game) FROM table_27756164_2 WHERE high_rebounds = "Roy Hibbert (16)" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.