question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who's in the high rebounds in the verizon center 9,263 location attendance?
CREATE TABLE table_27721131_2 (high_rebounds VARCHAR, location_attendance VARCHAR)
SELECT high_rebounds FROM table_27721131_2 WHERE location_attendance = "Verizon Center 9,263"
### Context: CREATE TABLE table_27721131_2 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Question: Who's in the high rebounds in the verizon center 9,263 location attendance? ### Answer: SELECT high_rebounds FROM table_27721131_2 WHERE location_attendance = "Verizon Center 9,263"
What's the location attendance of the milwaukee team?
CREATE TABLE table_27721131_2 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_27721131_2 WHERE team = "Milwaukee"
### Context: CREATE TABLE table_27721131_2 (location_attendance VARCHAR, team VARCHAR) ### Question: What's the location attendance of the milwaukee team? ### Answer: SELECT location_attendance FROM table_27721131_2 WHERE team = "Milwaukee"
What's the team number with John Wall (9) in high assists and a w 97–83 (ot) score?
CREATE TABLE table_27721131_2 (team VARCHAR, high_assists VARCHAR, score VARCHAR)
SELECT COUNT(team) FROM table_27721131_2 WHERE high_assists = "John Wall (9)" AND score = "W 97–83 (OT)"
### Context: CREATE TABLE table_27721131_2 (team VARCHAR, high_assists VARCHAR, score VARCHAR) ### Question: What's the team number with John Wall (9) in high assists and a w 97–83 (ot) score? ### Answer: SELECT COUNT(team) FROM table_27721131_2 WHERE high_assists = "John Wall (9)" AND score = "W 97–83 (OT)"
Who had the highest assists during game 78?
CREATE TABLE table_27721131_11 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_27721131_11 WHERE game = 78
### Context: CREATE TABLE table_27721131_11 (high_assists VARCHAR, game VARCHAR) ### Question: Who had the highest assists during game 78? ### Answer: SELECT high_assists FROM table_27721131_11 WHERE game = 78
What is the date where john wall (11) had the high assists?
CREATE TABLE table_27721131_6 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_27721131_6 WHERE high_assists = "John Wall (11)"
### Context: CREATE TABLE table_27721131_6 (date VARCHAR, high_assists VARCHAR) ### Question: What is the date where john wall (11) had the high assists? ### Answer: SELECT date FROM table_27721131_6 WHERE high_assists = "John Wall (11)"
What is the team they played on november 25?
CREATE TABLE table_27721131_6 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27721131_6 WHERE date = "November 25"
### Context: CREATE TABLE table_27721131_6 (team VARCHAR, date VARCHAR) ### Question: What is the team they played on november 25? ### Answer: SELECT team FROM table_27721131_6 WHERE date = "November 25"
What is the record for the game on november 25?
CREATE TABLE table_27721131_6 (record VARCHAR, date VARCHAR)
SELECT record FROM table_27721131_6 WHERE date = "November 25"
### Context: CREATE TABLE table_27721131_6 (record VARCHAR, date VARCHAR) ### Question: What is the record for the game on november 25? ### Answer: SELECT record FROM table_27721131_6 WHERE date = "November 25"
Which team played them when andray blatche , javale mcgee (20) had the high points?
CREATE TABLE table_27721131_6 (team VARCHAR, high_points VARCHAR)
SELECT team FROM table_27721131_6 WHERE high_points = "Andray Blatche , JaVale McGee (20)"
### Context: CREATE TABLE table_27721131_6 (team VARCHAR, high_points VARCHAR) ### Question: Which team played them when andray blatche , javale mcgee (20) had the high points? ### Answer: SELECT team FROM table_27721131_6 WHERE high_points = "Andray Blatche , JaVale McGee (20)"
What was the score when andray blatche , al thornton (20) had the high points?
CREATE TABLE table_27721131_6 (score VARCHAR, high_points VARCHAR)
SELECT score FROM table_27721131_6 WHERE high_points = "Andray Blatche , Al Thornton (20)"
### Context: CREATE TABLE table_27721131_6 (score VARCHAR, high_points VARCHAR) ### Question: What was the score when andray blatche , al thornton (20) had the high points? ### Answer: SELECT score FROM table_27721131_6 WHERE high_points = "Andray Blatche , Al Thornton (20)"
How many games are shown against Houston?
CREATE TABLE table_27721131_6 (game VARCHAR, team VARCHAR)
SELECT COUNT(game) FROM table_27721131_6 WHERE team = "Houston"
### Context: CREATE TABLE table_27721131_6 (game VARCHAR, team VARCHAR) ### Question: How many games are shown against Houston? ### Answer: SELECT COUNT(game) FROM table_27721131_6 WHERE team = "Houston"
How many teams listed for game 45?
CREATE TABLE table_27721131_8 (team VARCHAR, game VARCHAR)
SELECT COUNT(team) FROM table_27721131_8 WHERE game = 45
### Context: CREATE TABLE table_27721131_8 (team VARCHAR, game VARCHAR) ### Question: How many teams listed for game 45? ### Answer: SELECT COUNT(team) FROM table_27721131_8 WHERE game = 45
What was the score when the Celtics played Washington at home?
CREATE TABLE table_27722408_11 (score VARCHAR, team VARCHAR)
SELECT score FROM table_27722408_11 WHERE team = "Washington"
### Context: CREATE TABLE table_27722408_11 (score VARCHAR, team VARCHAR) ### Question: What was the score when the Celtics played Washington at home? ### Answer: SELECT score FROM table_27722408_11 WHERE team = "Washington"
Who had the most assists and how many did they have on April 8?
CREATE TABLE table_27722408_11 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_27722408_11 WHERE date = "April 8"
### Context: CREATE TABLE table_27722408_11 (high_assists VARCHAR, date VARCHAR) ### Question: Who had the most assists and how many did they have on April 8? ### Answer: SELECT high_assists FROM table_27722408_11 WHERE date = "April 8"
Name the total number of record for 61
CREATE TABLE table_27722408_10 (record VARCHAR, game VARCHAR)
SELECT COUNT(record) FROM table_27722408_10 WHERE game = 61
### Context: CREATE TABLE table_27722408_10 (record VARCHAR, game VARCHAR) ### Question: Name the total number of record for 61 ### Answer: SELECT COUNT(record) FROM table_27722408_10 WHERE game = 61
What was location and attendance for the game where the Celtics played San Antonio?
CREATE TABLE table_27722408_8 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_27722408_8 WHERE team = "San Antonio"
### Context: CREATE TABLE table_27722408_8 (location_attendance VARCHAR, team VARCHAR) ### Question: What was location and attendance for the game where the Celtics played San Antonio? ### Answer: SELECT location_attendance FROM table_27722408_8 WHERE team = "San Antonio"
Name the score for denver
CREATE TABLE table_27722734_11 (score VARCHAR, team VARCHAR)
SELECT score FROM table_27722734_11 WHERE team = "Denver"
### Context: CREATE TABLE table_27722734_11 (score VARCHAR, team VARCHAR) ### Question: Name the score for denver ### Answer: SELECT score FROM table_27722734_11 WHERE team = "Denver"
Name the high points for april 8
CREATE TABLE table_27722734_11 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_27722734_11 WHERE date = "April 8"
### Context: CREATE TABLE table_27722734_11 (high_points VARCHAR, date VARCHAR) ### Question: Name the high points for april 8 ### Answer: SELECT high_points FROM table_27722734_11 WHERE date = "April 8"
what was the location for charlotte?
CREATE TABLE table_27722734_10 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_27722734_10 WHERE team = "Charlotte"
### Context: CREATE TABLE table_27722734_10 (location_attendance VARCHAR, team VARCHAR) ### Question: what was the location for charlotte? ### Answer: SELECT location_attendance FROM table_27722734_10 WHERE team = "Charlotte"
who had high points on march 27?
CREATE TABLE table_27722734_10 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_27722734_10 WHERE date = "March 27"
### Context: CREATE TABLE table_27722734_10 (high_points VARCHAR, date VARCHAR) ### Question: who had high points on march 27? ### Answer: SELECT high_points FROM table_27722734_10 WHERE date = "March 27"
What number was the first game?
CREATE TABLE table_27722734_12 (game INTEGER)
SELECT MIN(game) FROM table_27722734_12
### Context: CREATE TABLE table_27722734_12 (game INTEGER) ### Question: What number was the first game? ### Answer: SELECT MIN(game) FROM table_27722734_12
Name the record for w 101–93 (ot)
CREATE TABLE table_27723228_12 (record VARCHAR, score VARCHAR)
SELECT record FROM table_27723228_12 WHERE score = "W 101–93 (OT)"
### Context: CREATE TABLE table_27723228_12 (record VARCHAR, score VARCHAR) ### Question: Name the record for w 101–93 (ot) ### Answer: SELECT record FROM table_27723228_12 WHERE score = "W 101–93 (OT)"
Name the high rebounds for 81 game
CREATE TABLE table_27723228_12 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_27723228_12 WHERE game = 81
### Context: CREATE TABLE table_27723228_12 (high_rebounds VARCHAR, game VARCHAR) ### Question: Name the high rebounds for 81 game ### Answer: SELECT high_rebounds FROM table_27723228_12 WHERE game = 81
Name the score for indiana
CREATE TABLE table_27723228_12 (score VARCHAR, team VARCHAR)
SELECT score FROM table_27723228_12 WHERE team = "Indiana"
### Context: CREATE TABLE table_27723228_12 (score VARCHAR, team VARCHAR) ### Question: Name the score for indiana ### Answer: SELECT score FROM table_27723228_12 WHERE team = "Indiana"
What was the location and attendance of the game against Dallas?
CREATE TABLE table_27723228_11 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_27723228_11 WHERE team = "Dallas"
### Context: CREATE TABLE table_27723228_11 (location_attendance VARCHAR, team VARCHAR) ### Question: What was the location and attendance of the game against Dallas? ### Answer: SELECT location_attendance FROM table_27723228_11 WHERE team = "Dallas"
Who had the high rebounds when the record was 14–7?
CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_27723228_8 WHERE record = "14–7"
### Context: CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, record VARCHAR) ### Question: Who had the high rebounds when the record was 14–7? ### Answer: SELECT high_rebounds FROM table_27723228_8 WHERE record = "14–7"
How many people are listed for high rebounds on game 30?
CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, game VARCHAR)
SELECT COUNT(high_rebounds) FROM table_27723228_8 WHERE game = 30
### Context: CREATE TABLE table_27723228_8 (high_rebounds VARCHAR, game VARCHAR) ### Question: How many people are listed for high rebounds on game 30? ### Answer: SELECT COUNT(high_rebounds) FROM table_27723228_8 WHERE game = 30
What was the record when chris paul (16) had the high points?
CREATE TABLE table_27723228_8 (record VARCHAR, high_points VARCHAR)
SELECT record FROM table_27723228_8 WHERE high_points = "Chris Paul (16)"
### Context: CREATE TABLE table_27723228_8 (record VARCHAR, high_points VARCHAR) ### Question: What was the record when chris paul (16) had the high points? ### Answer: SELECT record FROM table_27723228_8 WHERE high_points = "Chris Paul (16)"
What is the record when the score was l 84–96 (ot)?
CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR)
SELECT record FROM table_27723228_8 WHERE score = "L 84–96 (OT)"
### Context: CREATE TABLE table_27723228_8 (record VARCHAR, score VARCHAR) ### Question: What is the record when the score was l 84–96 (ot)? ### Answer: SELECT record FROM table_27723228_8 WHERE score = "L 84–96 (OT)"
Where was the game played when the record was 16–11?
CREATE TABLE table_27723228_8 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_27723228_8 WHERE record = "16–11"
### Context: CREATE TABLE table_27723228_8 (location_attendance VARCHAR, record VARCHAR) ### Question: Where was the game played when the record was 16–11? ### Answer: SELECT location_attendance FROM table_27723228_8 WHERE record = "16–11"
Name the score for miami
CREATE TABLE table_27723228_7 (score VARCHAR, team VARCHAR)
SELECT score FROM table_27723228_7 WHERE team = "Miami"
### Context: CREATE TABLE table_27723228_7 (score VARCHAR, team VARCHAR) ### Question: Name the score for miami ### Answer: SELECT score FROM table_27723228_7 WHERE team = "Miami"
Name the high assists for w 107–99 (ot)
CREATE TABLE table_27723228_7 (high_assists VARCHAR, score VARCHAR)
SELECT high_assists FROM table_27723228_7 WHERE score = "W 107–99 (OT)"
### Context: CREATE TABLE table_27723228_7 (high_assists VARCHAR, score VARCHAR) ### Question: Name the high assists for w 107–99 (ot) ### Answer: SELECT high_assists FROM table_27723228_7 WHERE score = "W 107–99 (OT)"
What's the predecessor of the Ekavian word vreme?
CREATE TABLE table_27730_9 (predecessor VARCHAR, ekavian VARCHAR)
SELECT predecessor FROM table_27730_9 WHERE ekavian = "vreme"
### Context: CREATE TABLE table_27730_9 (predecessor VARCHAR, ekavian VARCHAR) ### Question: What's the predecessor of the Ekavian word vreme? ### Answer: SELECT predecessor FROM table_27730_9 WHERE ekavian = "vreme"
What's the Ikavian translation of the Ijekavian word lijep?
CREATE TABLE table_27730_9 (ikavian VARCHAR, ijekavian VARCHAR)
SELECT ikavian FROM table_27730_9 WHERE ijekavian = "lijep"
### Context: CREATE TABLE table_27730_9 (ikavian VARCHAR, ijekavian VARCHAR) ### Question: What's the Ikavian translation of the Ijekavian word lijep? ### Answer: SELECT ikavian FROM table_27730_9 WHERE ijekavian = "lijep"
What's the ijekavian translation of the ikavian word grijati?
CREATE TABLE table_27730_9 (ijekavian VARCHAR, ikavian VARCHAR)
SELECT ijekavian FROM table_27730_9 WHERE ikavian = "grijati"
### Context: CREATE TABLE table_27730_9 (ijekavian VARCHAR, ikavian VARCHAR) ### Question: What's the ijekavian translation of the ikavian word grijati? ### Answer: SELECT ijekavian FROM table_27730_9 WHERE ikavian = "grijati"
Who had highest assists at game on December 21?
CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR)
SELECT COUNT(high_assists) FROM table_27723526_9 WHERE date = "December 21"
### Context: CREATE TABLE table_27723526_9 (high_assists VARCHAR, date VARCHAR) ### Question: Who had highest assists at game on December 21? ### Answer: SELECT COUNT(high_assists) FROM table_27723526_9 WHERE date = "December 21"
What location did the Mavericks play against Milwaukee?
CREATE TABLE table_27723526_9 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_27723526_9 WHERE team = "Milwaukee"
### Context: CREATE TABLE table_27723526_9 (location_attendance VARCHAR, team VARCHAR) ### Question: What location did the Mavericks play against Milwaukee? ### Answer: SELECT location_attendance FROM table_27723526_9 WHERE team = "Milwaukee"
What is the high rebound for June 9?
CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_27723526_17 WHERE date = "June 9"
### Context: CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, date VARCHAR) ### Question: What is the high rebound for June 9? ### Answer: SELECT high_rebounds FROM table_27723526_17 WHERE date = "June 9"
Who is the high rebound where game is 5?
CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_27723526_17 WHERE game = 5
### Context: CREATE TABLE table_27723526_17 (high_rebounds VARCHAR, game VARCHAR) ### Question: Who is the high rebound where game is 5? ### Answer: SELECT high_rebounds FROM table_27723526_17 WHERE game = 5
What company plays on april 1?
CREATE TABLE table_27733258_11 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27733258_11 WHERE date = "April 1"
### Context: CREATE TABLE table_27733258_11 (team VARCHAR, date VARCHAR) ### Question: What company plays on april 1? ### Answer: SELECT team FROM table_27733258_11 WHERE date = "April 1"
Name the high points for l 110–112 (ot)
CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR)
SELECT high_points FROM table_27733258_6 WHERE score = "L 110–112 (OT)"
### Context: CREATE TABLE table_27733258_6 (high_points VARCHAR, score VARCHAR) ### Question: Name the high points for l 110–112 (ot) ### Answer: SELECT high_points FROM table_27733258_6 WHERE score = "L 110–112 (OT)"
Name the location attendance for l 105–123 (ot)
CREATE TABLE table_27733258_6 (location_attendance VARCHAR, score VARCHAR)
SELECT location_attendance FROM table_27733258_6 WHERE score = "L 105–123 (OT)"
### Context: CREATE TABLE table_27733258_6 (location_attendance VARCHAR, score VARCHAR) ### Question: Name the location attendance for l 105–123 (ot) ### Answer: SELECT location_attendance FROM table_27733258_6 WHERE score = "L 105–123 (OT)"
what date was game 29?
CREATE TABLE table_27733258_7 (date VARCHAR, game VARCHAR)
SELECT date FROM table_27733258_7 WHERE game = 29
### Context: CREATE TABLE table_27733258_7 (date VARCHAR, game VARCHAR) ### Question: what date was game 29? ### Answer: SELECT date FROM table_27733258_7 WHERE game = 29
Who did the team play on january 9?
CREATE TABLE table_27733258_8 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27733258_8 WHERE date = "January 9"
### Context: CREATE TABLE table_27733258_8 (team VARCHAR, date VARCHAR) ### Question: Who did the team play on january 9? ### Answer: SELECT team FROM table_27733258_8 WHERE date = "January 9"
Who had the highest assists in game 75?
CREATE TABLE table_27733909_10 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_27733909_10 WHERE game = 75
### Context: CREATE TABLE table_27733909_10 (high_assists VARCHAR, game VARCHAR) ### Question: Who had the highest assists in game 75? ### Answer: SELECT high_assists FROM table_27733909_10 WHERE game = 75
How many locations did the game that was on April 8 take place at?
CREATE TABLE table_27733909_10 (location_attendance VARCHAR, date VARCHAR)
SELECT COUNT(location_attendance) FROM table_27733909_10 WHERE date = "April 8"
### Context: CREATE TABLE table_27733909_10 (location_attendance VARCHAR, date VARCHAR) ### Question: How many locations did the game that was on April 8 take place at? ### Answer: SELECT COUNT(location_attendance) FROM table_27733909_10 WHERE date = "April 8"
what is the overall number of times when the calendar showed october 6
CREATE TABLE table_27733909_1 (record VARCHAR, date VARCHAR)
SELECT COUNT(record) FROM table_27733909_1 WHERE date = "October 6"
### Context: CREATE TABLE table_27733909_1 (record VARCHAR, date VARCHAR) ### Question: what is the overall number of times when the calendar showed october 6 ### Answer: SELECT COUNT(record) FROM table_27733909_1 WHERE date = "October 6"
what is the most number where the calendar shows october 20
CREATE TABLE table_27733909_1 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_27733909_1 WHERE date = "October 20"
### Context: CREATE TABLE table_27733909_1 (high_points VARCHAR, date VARCHAR) ### Question: what is the most number where the calendar shows october 20 ### Answer: SELECT high_points FROM table_27733909_1 WHERE date = "October 20"
what are the times where the play is 5
CREATE TABLE table_27733909_1 (date VARCHAR, game VARCHAR)
SELECT date FROM table_27733909_1 WHERE game = 5
### Context: CREATE TABLE table_27733909_1 (date VARCHAR, game VARCHAR) ### Question: what are the times where the play is 5 ### Answer: SELECT date FROM table_27733909_1 WHERE game = 5
What was the score in the game on November 21?
CREATE TABLE table_27733909_5 (score VARCHAR, date VARCHAR)
SELECT score FROM table_27733909_5 WHERE date = "November 21"
### Context: CREATE TABLE table_27733909_5 (score VARCHAR, date VARCHAR) ### Question: What was the score in the game on November 21? ### Answer: SELECT score FROM table_27733909_5 WHERE date = "November 21"
Who had the most points and how many did they have in game 11?
CREATE TABLE table_27733909_5 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_27733909_5 WHERE game = 11
### Context: CREATE TABLE table_27733909_5 (high_points VARCHAR, game VARCHAR) ### Question: Who had the most points and how many did they have in game 11? ### Answer: SELECT high_points FROM table_27733909_5 WHERE game = 11
List records for game 29.
CREATE TABLE table_27734286_6 (record VARCHAR, game VARCHAR)
SELECT record FROM table_27734286_6 WHERE game = 29
### Context: CREATE TABLE table_27734286_6 (record VARCHAR, game VARCHAR) ### Question: List records for game 29. ### Answer: SELECT record FROM table_27734286_6 WHERE game = 29
What record has c. j. miles (20) in the high points?
CREATE TABLE table_27734286_1 (record VARCHAR, high_points VARCHAR)
SELECT record FROM table_27734286_1 WHERE high_points = "C. J. Miles (20)"
### Context: CREATE TABLE table_27734286_1 (record VARCHAR, high_points VARCHAR) ### Question: What record has c. j. miles (20) in the high points? ### Answer: SELECT record FROM table_27734286_1 WHERE high_points = "C. J. Miles (20)"
Who in the high rebounds is in the honda center 15,625 location attendance?
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"
### Context: CREATE TABLE table_27734286_1 (high_rebounds VARCHAR, location_attendance VARCHAR) ### Question: Who in the high rebounds is in the honda center 15,625 location attendance? ### Answer: SELECT high_rebounds FROM table_27734286_1 WHERE location_attendance = "Honda Center 15,625"
Who is in the high points in the @ l.a. clippers team?
CREATE TABLE table_27734286_1 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_27734286_1 WHERE team = "@ L.A. Clippers"
### Context: CREATE TABLE table_27734286_1 (high_points VARCHAR, team VARCHAR) ### Question: Who is in the high points in the @ l.a. clippers team? ### Answer: SELECT high_points FROM table_27734286_1 WHERE team = "@ L.A. Clippers"
What's the score in al jefferson (24) high points?
CREATE TABLE table_27734286_1 (score VARCHAR, high_points VARCHAR)
SELECT COUNT(score) FROM table_27734286_1 WHERE high_points = "Al Jefferson (24)"
### Context: CREATE TABLE table_27734286_1 (score VARCHAR, high_points VARCHAR) ### Question: What's the score in al jefferson (24) high points? ### Answer: SELECT COUNT(score) FROM table_27734286_1 WHERE high_points = "Al Jefferson (24)"
What`s the score in October 7.
CREATE TABLE table_27734286_1 (score VARCHAR, date VARCHAR)
SELECT score FROM table_27734286_1 WHERE date = "October 7"
### Context: CREATE TABLE table_27734286_1 (score VARCHAR, date VARCHAR) ### Question: What`s the score in October 7. ### Answer: SELECT score FROM table_27734286_1 WHERE date = "October 7"
What's the location attendance of the @ portland team?
CREATE TABLE table_27734286_1 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_27734286_1 WHERE team = "@ Portland"
### Context: CREATE TABLE table_27734286_1 (location_attendance VARCHAR, team VARCHAR) ### Question: What's the location attendance of the @ portland team? ### Answer: SELECT location_attendance FROM table_27734286_1 WHERE team = "@ Portland"
Who had the high assist total on january 8?
CREATE TABLE table_27734286_7 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_27734286_7 WHERE date = "January 8"
### Context: CREATE TABLE table_27734286_7 (high_assists VARCHAR, date VARCHAR) ### Question: Who had the high assist total on january 8? ### Answer: SELECT high_assists FROM table_27734286_7 WHERE date = "January 8"
Who had the high assists for game number 38?
CREATE TABLE table_27734286_7 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_27734286_7 WHERE game = 38
### Context: CREATE TABLE table_27734286_7 (high_assists VARCHAR, game VARCHAR) ### Question: Who had the high assists for game number 38? ### Answer: SELECT high_assists FROM table_27734286_7 WHERE game = 38
How many games did they play on january 7?
CREATE TABLE table_27734286_7 (high_points VARCHAR, date VARCHAR)
SELECT COUNT(high_points) FROM table_27734286_7 WHERE date = "January 7"
### Context: CREATE TABLE table_27734286_7 (high_points VARCHAR, date VARCHAR) ### Question: How many games did they play on january 7? ### Answer: SELECT COUNT(high_points) FROM table_27734286_7 WHERE date = "January 7"
What date did the Hawks play against Boston?
CREATE TABLE table_27734577_11 (date VARCHAR, team VARCHAR)
SELECT date FROM table_27734577_11 WHERE team = "Boston"
### Context: CREATE TABLE table_27734577_11 (date VARCHAR, team VARCHAR) ### Question: What date did the Hawks play against Boston? ### Answer: SELECT date FROM table_27734577_11 WHERE team = "Boston"
List the highest number of assists when zaza pachulia (6) had the most rebounds.
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)"
### Context: CREATE TABLE table_27734577_2 (high_assists VARCHAR, high_rebounds VARCHAR) ### Question: List the highest number of assists when zaza pachulia (6) had the most rebounds. ### Answer: SELECT COUNT(high_assists) FROM table_27734577_2 WHERE high_rebounds = "Zaza Pachulia (6)"
Which team was the opponent on october 21?
CREATE TABLE table_27734577_2 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27734577_2 WHERE date = "October 21"
### Context: CREATE TABLE table_27734577_2 (team VARCHAR, date VARCHAR) ### Question: Which team was the opponent on october 21? ### Answer: SELECT team FROM table_27734577_2 WHERE date = "October 21"
Who corned the most points for the game that ended with a score of l 85–94 (ot)?
CREATE TABLE table_27734577_2 (high_points VARCHAR, score VARCHAR)
SELECT high_points FROM table_27734577_2 WHERE score = "L 85–94 (OT)"
### Context: CREATE TABLE table_27734577_2 (high_points VARCHAR, score VARCHAR) ### Question: Who corned the most points for the game that ended with a score of l 85–94 (ot)? ### Answer: SELECT high_points FROM table_27734577_2 WHERE score = "L 85–94 (OT)"
what was the final score of the game where josh powell (13) scored the most points?
CREATE TABLE table_27734577_2 (score VARCHAR, high_points VARCHAR)
SELECT score FROM table_27734577_2 WHERE high_points = "Josh Powell (13)"
### Context: CREATE TABLE table_27734577_2 (score VARCHAR, high_points VARCHAR) ### Question: what was the final score of the game where josh powell (13) scored the most points? ### Answer: SELECT score FROM table_27734577_2 WHERE high_points = "Josh Powell (13)"
What's the record of the @ miami team?
CREATE TABLE table_27734577_8 (record VARCHAR, team VARCHAR)
SELECT record FROM table_27734577_8 WHERE team = "@ Miami"
### Context: CREATE TABLE table_27734577_8 (record VARCHAR, team VARCHAR) ### Question: What's the record of the @ miami team? ### Answer: SELECT record FROM table_27734577_8 WHERE team = "@ Miami"
How many records where in January 2?
CREATE TABLE table_27734577_8 (record VARCHAR, date VARCHAR)
SELECT COUNT(record) FROM table_27734577_8 WHERE date = "January 2"
### Context: CREATE TABLE table_27734577_8 (record VARCHAR, date VARCHAR) ### Question: How many records where in January 2? ### Answer: SELECT COUNT(record) FROM table_27734577_8 WHERE date = "January 2"
What are the high rebounds in the jamal crawford (20) high points?
CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT high_rebounds FROM table_27734577_8 WHERE high_points = "Jamal Crawford (20)"
### Context: CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, high_points VARCHAR) ### Question: What are the high rebounds in the jamal crawford (20) high points? ### Answer: SELECT high_rebounds FROM table_27734577_8 WHERE high_points = "Jamal Crawford (20)"
What are the high rebounds in the 45 game?
CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, game VARCHAR)
SELECT high_rebounds FROM table_27734577_8 WHERE game = 45
### Context: CREATE TABLE table_27734577_8 (high_rebounds VARCHAR, game VARCHAR) ### Question: What are the high rebounds in the 45 game? ### Answer: SELECT high_rebounds FROM table_27734577_8 WHERE game = 45
What's the date of the new orleans team ?
CREATE TABLE table_27734577_8 (date VARCHAR, team VARCHAR)
SELECT date FROM table_27734577_8 WHERE team = "New Orleans"
### Context: CREATE TABLE table_27734577_8 (date VARCHAR, team VARCHAR) ### Question: What's the date of the new orleans team ? ### Answer: SELECT date FROM table_27734577_8 WHERE team = "New Orleans"
What team has a score of w 110–87 (ot)?
CREATE TABLE table_27734577_8 (team VARCHAR, score VARCHAR)
SELECT team FROM table_27734577_8 WHERE score = "W 110–87 (OT)"
### Context: CREATE TABLE table_27734577_8 (team VARCHAR, score VARCHAR) ### Question: What team has a score of w 110–87 (ot)? ### Answer: SELECT team FROM table_27734577_8 WHERE score = "W 110–87 (OT)"
What was the game record if Marcus Camby (13) got the high rebounds?
CREATE TABLE table_27734769_9 (record VARCHAR, high_rebounds VARCHAR)
SELECT record FROM table_27734769_9 WHERE high_rebounds = "Marcus Camby (13)"
### Context: CREATE TABLE table_27734769_9 (record VARCHAR, high_rebounds VARCHAR) ### Question: What was the game record if Marcus Camby (13) got the high rebounds? ### Answer: SELECT record FROM table_27734769_9 WHERE high_rebounds = "Marcus Camby (13)"
Who did the high rebounds for the team Minnesota?
CREATE TABLE table_27734769_9 (high_rebounds VARCHAR, team VARCHAR)
SELECT high_rebounds FROM table_27734769_9 WHERE team = "Minnesota"
### Context: CREATE TABLE table_27734769_9 (high_rebounds VARCHAR, team VARCHAR) ### Question: Who did the high rebounds for the team Minnesota? ### Answer: SELECT high_rebounds FROM table_27734769_9 WHERE team = "Minnesota"
How many scores where achieved on January 19?
CREATE TABLE table_27734769_9 (score VARCHAR, date VARCHAR)
SELECT COUNT(score) FROM table_27734769_9 WHERE date = "January 19"
### Context: CREATE TABLE table_27734769_9 (score VARCHAR, date VARCHAR) ### Question: How many scores where achieved on January 19? ### Answer: SELECT COUNT(score) FROM table_27734769_9 WHERE date = "January 19"
Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing?
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"
### Context: CREATE TABLE table_27743641_2 (lmp2_winning_driver VARCHAR, lmp1_winning_team VARCHAR) ### Question: Who was the LMP2 winner when the LMP1 winning team was No. 20 Oryx Dyson Racing? ### Answer: SELECT lmp2_winning_driver FROM table_27743641_2 WHERE lmp1_winning_team = "No. 20 Oryx Dyson Racing"
Who were the GT winning team when the GTC winning team was No. 54 Black Swan Racing?
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"
### Context: CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, gtc_winning_team VARCHAR) ### Question: Who were the GT winning team when the GTC winning team was No. 54 Black Swan Racing? ### Answer: SELECT gt_winning_team FROM table_27743641_2 WHERE gtc_winning_team = "No. 54 Black Swan Racing"
Who were the GT winning team when the results were "report"?
CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, results VARCHAR)
SELECT gt_winning_team FROM table_27743641_2 WHERE results = "Report"
### Context: CREATE TABLE table_27743641_2 (gt_winning_team VARCHAR, results VARCHAR) ### Question: Who were the GT winning team when the results were "report"? ### Answer: SELECT gt_winning_team FROM table_27743641_2 WHERE results = "Report"
what is the date the high assists was andre miller (7)?
CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"
### Context: CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR) ### Question: what is the date the high assists was andre miller (7)? ### Answer: SELECT date FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"
What is the date the high points was lamarcus aldridge (36)?
CREATE TABLE table_27734769_8 (date VARCHAR, high_points VARCHAR)
SELECT date FROM table_27734769_8 WHERE high_points = "LaMarcus Aldridge (36)"
### Context: CREATE TABLE table_27734769_8 (date VARCHAR, high_points VARCHAR) ### Question: What is the date the high points was lamarcus aldridge (36)? ### Answer: SELECT date FROM table_27734769_8 WHERE high_points = "LaMarcus Aldridge (36)"
What is the score when the team is milwaukee?
CREATE TABLE table_27734769_8 (score VARCHAR, team VARCHAR)
SELECT score FROM table_27734769_8 WHERE team = "Milwaukee"
### Context: CREATE TABLE table_27734769_8 (score VARCHAR, team VARCHAR) ### Question: What is the score when the team is milwaukee? ### Answer: SELECT score FROM table_27734769_8 WHERE team = "Milwaukee"
How many times was the high assists andre miller (7)?
CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR)
SELECT COUNT(date) FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"
### Context: CREATE TABLE table_27734769_8 (date VARCHAR, high_assists VARCHAR) ### Question: How many times was the high assists andre miller (7)? ### Answer: SELECT COUNT(date) FROM table_27734769_8 WHERE high_assists = "Andre Miller (7)"
How many times was the high rebounds by marcus camby (18)?
CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR)
SELECT COUNT(date) FROM table_27734769_8 WHERE high_rebounds = "Marcus Camby (18)"
### Context: CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR) ### Question: How many times was the high rebounds by marcus camby (18)? ### Answer: SELECT COUNT(date) FROM table_27734769_8 WHERE high_rebounds = "Marcus Camby (18)"
What is the date the high rebounds were by lamarcus aldridge (6)?
CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_27734769_8 WHERE high_rebounds = "LaMarcus Aldridge (6)"
### Context: CREATE TABLE table_27734769_8 (date VARCHAR, high_rebounds VARCHAR) ### Question: What is the date the high rebounds were by lamarcus aldridge (6)? ### Answer: SELECT date FROM table_27734769_8 WHERE high_rebounds = "LaMarcus Aldridge (6)"
Who had the most assists and how many did they have in game 35?
CREATE TABLE table_27744844_7 (high_assists VARCHAR, game VARCHAR)
SELECT high_assists FROM table_27744844_7 WHERE game = 35
### Context: CREATE TABLE table_27744844_7 (high_assists VARCHAR, game VARCHAR) ### Question: Who had the most assists and how many did they have in game 35? ### Answer: SELECT high_assists FROM table_27744844_7 WHERE game = 35
Who had the most rebounds and how many did they have on January 19?
CREATE TABLE table_27744844_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_27744844_7 WHERE date = "January 19"
### Context: CREATE TABLE table_27744844_7 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had the most rebounds and how many did they have on January 19? ### Answer: SELECT high_rebounds FROM table_27744844_7 WHERE date = "January 19"
Which team played on April 9?
CREATE TABLE table_27744976_11 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27744976_11 WHERE date = "April 9"
### Context: CREATE TABLE table_27744976_11 (team VARCHAR, date VARCHAR) ### Question: Which team played on April 9? ### Answer: SELECT team FROM table_27744976_11 WHERE date = "April 9"
Which player scored the most points and how many were scored on November 6?
CREATE TABLE table_27744844_5 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_27744844_5 WHERE date = "November 6"
### Context: CREATE TABLE table_27744844_5 (high_points VARCHAR, date VARCHAR) ### Question: Which player scored the most points and how many were scored on November 6? ### Answer: SELECT high_points FROM table_27744844_5 WHERE date = "November 6"
Who had the high assists on November 17?
CREATE TABLE table_27744976_6 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_27744976_6 WHERE date = "November 17"
### Context: CREATE TABLE table_27744976_6 (high_assists VARCHAR, date VARCHAR) ### Question: Who had the high assists on November 17? ### Answer: SELECT high_assists FROM table_27744976_6 WHERE date = "November 17"
Who had highest rebounds during game on March 12?
CREATE TABLE table_27744976_10 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_27744976_10 WHERE date = "March 12"
### Context: CREATE TABLE table_27744976_10 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had highest rebounds during game on March 12? ### Answer: SELECT high_rebounds FROM table_27744976_10 WHERE date = "March 12"
What was the rocket's record when they played against Indiana?
CREATE TABLE table_27744976_10 (record VARCHAR, team VARCHAR)
SELECT record FROM table_27744976_10 WHERE team = "Indiana"
### Context: CREATE TABLE table_27744976_10 (record VARCHAR, team VARCHAR) ### Question: What was the rocket's record when they played against Indiana? ### Answer: SELECT record FROM table_27744976_10 WHERE team = "Indiana"
How many episodes in the season had production code of 175255?
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
### Context: CREATE TABLE table_27755040_1 (no_in_season VARCHAR, production_code VARCHAR) ### Question: How many episodes in the season had production code of 175255? ### Answer: SELECT COUNT(no_in_season) FROM table_27755040_1 WHERE production_code = 175255
What were the high points on March 25?
CREATE TABLE table_27755603_10 (high_points VARCHAR, date VARCHAR)
SELECT high_points FROM table_27755603_10 WHERE date = "March 25"
### Context: CREATE TABLE table_27755603_10 (high_points VARCHAR, date VARCHAR) ### Question: What were the high points on March 25? ### Answer: SELECT high_points FROM table_27755603_10 WHERE date = "March 25"
Who was the team on March 18?
CREATE TABLE table_27755603_10 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27755603_10 WHERE date = "March 18"
### Context: CREATE TABLE table_27755603_10 (team VARCHAR, date VARCHAR) ### Question: Who was the team on March 18? ### Answer: SELECT team FROM table_27755603_10 WHERE date = "March 18"
What was the high points when the team was Washington?
CREATE TABLE table_27755603_10 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_27755603_10 WHERE team = "Washington"
### Context: CREATE TABLE table_27755603_10 (high_points VARCHAR, team VARCHAR) ### Question: What was the high points when the team was Washington? ### Answer: SELECT high_points FROM table_27755603_10 WHERE team = "Washington"
What was the game number when the location attendance was the Palace of Auburn Hills 15,166?
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"
### Context: CREATE TABLE table_27755603_10 (game INTEGER, location_attendance VARCHAR) ### Question: What was the game number when the location attendance was the Palace of Auburn Hills 15,166? ### Answer: SELECT MIN(game) FROM table_27755603_10 WHERE location_attendance = "The Palace of Auburn Hills 15,166"
What team did they play on april 6?
CREATE TABLE table_27755603_11 (team VARCHAR, date VARCHAR)
SELECT team FROM table_27755603_11 WHERE date = "April 6"
### Context: CREATE TABLE table_27755603_11 (team VARCHAR, date VARCHAR) ### Question: What team did they play on april 6? ### Answer: SELECT team FROM table_27755603_11 WHERE date = "April 6"
What numbered game did they play on april 5?
CREATE TABLE table_27755603_11 (game INTEGER, date VARCHAR)
SELECT MAX(game) FROM table_27755603_11 WHERE date = "April 5"
### Context: CREATE TABLE table_27755603_11 (game INTEGER, date VARCHAR) ### Question: What numbered game did they play on april 5? ### Answer: SELECT MAX(game) FROM table_27755603_11 WHERE date = "April 5"
What numbered game did they play chicago?
CREATE TABLE table_27755603_11 (game VARCHAR, team VARCHAR)
SELECT game FROM table_27755603_11 WHERE team = "Chicago"
### Context: CREATE TABLE table_27755603_11 (game VARCHAR, team VARCHAR) ### Question: What numbered game did they play chicago? ### Answer: SELECT game FROM table_27755603_11 WHERE team = "Chicago"
Who had the most assists agains New Orleans?
CREATE TABLE table_27755603_7 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_27755603_7 WHERE team = "New Orleans"
### Context: CREATE TABLE table_27755603_7 (high_assists VARCHAR, team VARCHAR) ### Question: Who had the most assists agains New Orleans? ### Answer: SELECT high_assists FROM table_27755603_7 WHERE team = "New Orleans"
For how many games on December 19 is there information on who scored the most rebounds?
CREATE TABLE table_27755603_7 (high_rebounds VARCHAR, date VARCHAR)
SELECT COUNT(high_rebounds) FROM table_27755603_7 WHERE date = "December 19"
### Context: CREATE TABLE table_27755603_7 (high_rebounds VARCHAR, date VARCHAR) ### Question: For how many games on December 19 is there information on who scored the most rebounds? ### Answer: SELECT COUNT(high_rebounds) FROM table_27755603_7 WHERE date = "December 19"