question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Which units are commanded by Lieutenant Colonel Francis Hepburn?
CREATE TABLE table_11793221_2 (unit VARCHAR, commander VARCHAR)
{ "SQL_Query": "SELECT unit FROM table_11793221_2 WHERE commander = \"Lieutenant Colonel Francis Hepburn\"" }
What are the complements when the commander is Major William Lloyd?
CREATE TABLE table_11793221_2 (complement VARCHAR, commander VARCHAR)
{ "SQL_Query": "SELECT complement FROM table_11793221_2 WHERE commander = \"Major William Lloyd\"" }
How many were wounded when the complement was 173 off 2059 men?
CREATE TABLE table_11793221_2 (wounded VARCHAR, complement VARCHAR)
{ "SQL_Query": "SELECT wounded FROM table_11793221_2 WHERE complement = \"173 off 2059 men\"" }
How many where killed under Major-General Jean Victor de Constant Rebecque's command?
CREATE TABLE table_11793221_2 (killed VARCHAR, commander VARCHAR)
{ "SQL_Query": "SELECT killed FROM table_11793221_2 WHERE commander = \"Major-General Jean Victor de Constant Rebecque\"" }
Who were the commanders when 8 off 0 men were wounded?
CREATE TABLE table_11793221_2 (commander VARCHAR, wounded VARCHAR)
{ "SQL_Query": "SELECT commander FROM table_11793221_2 WHERE wounded = \"8 off 0 men\"" }
What is the gpa per capita (nominal) for the country with gdp (nominal) is $52.0 billion?
CREATE TABLE table_11780179_1 (gdp_per_capita__nominal_ VARCHAR, gdp__nominal_ VARCHAR)
{ "SQL_Query": "SELECT gdp_per_capita__nominal_ FROM table_11780179_1 WHERE gdp__nominal_ = \"$52.0 billion\"" }
How many countries has a gdp (nominal) of $29.9 billion?
CREATE TABLE table_11780179_1 (gdp_per_capita__nominal_ VARCHAR, gdp__nominal_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(gdp_per_capita__nominal_) FROM table_11780179_1 WHERE gdp__nominal_ = \"$29.9 billion\"" }
What is the GDP (nominal) for Uzbekistan?
CREATE TABLE table_11780179_1 (gdp__nominal_ VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT gdp__nominal_ FROM table_11780179_1 WHERE country = \"Uzbekistan\"" }
What is the area (km²) for the country with a population of 16967000?
CREATE TABLE table_11780179_1 (area__km²_ INTEGER, population VARCHAR)
{ "SQL_Query": "SELECT MIN(area__km²_) FROM table_11780179_1 WHERE population = 16967000" }
What is the aspect ratio of the DVD released on 12/10/2009?
CREATE TABLE table_1180228_1 (aspect_ratio VARCHAR, released VARCHAR)
{ "SQL_Query": "SELECT aspect_ratio FROM table_1180228_1 WHERE released = \"12/10/2009\"" }
What is the name of the DVD where the number of discs is greater than 2.0
CREATE TABLE table_1180228_1 (dvd_name VARCHAR, num_of_discs INTEGER)
{ "SQL_Query": "SELECT dvd_name FROM table_1180228_1 WHERE num_of_discs > 2.0" }
How many releases did the DVD River Cottage forever have?
CREATE TABLE table_1180228_1 (released VARCHAR, dvd_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(released) FROM table_1180228_1 WHERE dvd_name = \"River Cottage Forever\"" }
What is the total number of discs where the run time was 4 hours 40 minutes?
CREATE TABLE table_1180228_1 (num_of_discs VARCHAR, duration VARCHAR)
{ "SQL_Query": "SELECT COUNT(num_of_discs) FROM table_1180228_1 WHERE duration = \"4 hours 40 minutes\"" }
What were the wounded for complement of 46 off 656 men?
CREATE TABLE table_11793221_4 (wounded VARCHAR, complement VARCHAR)
{ "SQL_Query": "SELECT wounded FROM table_11793221_4 WHERE complement = \"46 off 656 men\"" }
What was the missing for lieutenant general sir thomas picton?
CREATE TABLE table_11793221_4 (missing VARCHAR, commander VARCHAR)
{ "SQL_Query": "SELECT missing FROM table_11793221_4 WHERE commander = \"Lieutenant General Sir Thomas Picton\"" }
Name the number of complement for 4th hanoverian brigade
CREATE TABLE table_11793221_4 (complement VARCHAR, unit VARCHAR)
{ "SQL_Query": "SELECT COUNT(complement) FROM table_11793221_4 WHERE unit = \"4th Hanoverian Brigade\"" }
Name the commander of 167 off 2348 men
CREATE TABLE table_11793221_4 (commander VARCHAR, complement VARCHAR)
{ "SQL_Query": "SELECT commander FROM table_11793221_4 WHERE complement = \"167 off 2348 men\"" }
HOW MUCH WAS THE OVERALL FOR ERIK KARLSSON?
CREATE TABLE table_11803648_17 (overall INTEGER)
{ "SQL_Query": "SELECT MIN(overall) FROM table_11803648_17" }
WHAT ROUND WAS FORWARD ANDRE PETERSSON SELECTED?
CREATE TABLE table_11803648_17 (round INTEGER, position VARCHAR)
{ "SQL_Query": "SELECT MIN(round) FROM table_11803648_17 WHERE position = \"Forward\"" }
WHAT POSITION DOES PATRICK WIERCIOCH PLAY?
CREATE TABLE table_11803648_17 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11803648_17 WHERE player = \"Patrick Wiercioch\"" }
NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM
CREATE TABLE table_11803648_17 (overall INTEGER, club_team VARCHAR)
{ "SQL_Query": "SELECT MIN(overall) FROM table_11803648_17 WHERE club_team = \"Omaha (USHL)\"" }
WHERE IS ANDRE PETERSSON FROM?
CREATE TABLE table_11803648_17 (nationality VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_11803648_17 WHERE player = \"Andre Petersson\"" }
What club team did JArrod Maidens play for?
CREATE TABLE table_11803648_21 (club_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT club_team FROM table_11803648_21 WHERE player = \"Jarrod Maidens\"" }
What position does Cody Ceci play?
CREATE TABLE table_11803648_21 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11803648_21 WHERE player = \"Cody Ceci\"" }
What is the Nationality when the club team is Peterborough Petes (OHL)?
CREATE TABLE table_11803648_20 (nationality VARCHAR, club_team VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_11803648_20 WHERE club_team = \"Peterborough Petes (OHL)\"" }
Which player is in round 5?
CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT player FROM table_11803648_20 WHERE round = 5" }
What position is associated with an overall value of 126?
CREATE TABLE table_11803648_20 (position VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11803648_20 WHERE overall = \"126\"" }
What position is the player Jordan Fransoo in?
CREATE TABLE table_11803648_20 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11803648_20 WHERE player = \"Jordan Fransoo\"" }
How many rounds is the player Matthew Puempel associated with?
CREATE TABLE table_11803648_20 (round VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_11803648_20 WHERE player = \"Matthew Puempel\"" }
What is the position of player Tobias Lindberg?
CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11803648_22 WHERE player = \"Tobias Lindberg\"" }
How many players had overall 78?
CREATE TABLE table_11803648_22 (player VARCHAR, overall VARCHAR)
{ "SQL_Query": "SELECT COUNT(player) FROM table_11803648_22 WHERE overall = \"78\"" }
What is the last round with club team Guelph Storm (ohl)?
CREATE TABLE table_11803648_22 (round INTEGER, club_team VARCHAR)
{ "SQL_Query": "SELECT MAX(round) FROM table_11803648_22 WHERE club_team = \"Guelph Storm (OHL)\"" }
How many positions did player Ben Harpur play?
CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(position) FROM table_11803648_22 WHERE player = \"Ben Harpur\"" }
What is the position of player Marcus Hogberg?
CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT position FROM table_11803648_22 WHERE player = \"Marcus Hogberg\"" }
3488 is the enrollment amount of what college?
CREATE TABLE table_1183842_1 (institution VARCHAR, enrollment VARCHAR)
{ "SQL_Query": "SELECT institution FROM table_1183842_1 WHERE enrollment = 3488" }
Barry University had the highest enrollment of what number?
CREATE TABLE table_1183842_1 (enrollment INTEGER, institution VARCHAR)
{ "SQL_Query": "SELECT MAX(enrollment) FROM table_1183842_1 WHERE institution = \"Barry University\"" }
The fighting knights has what type of nickname?
CREATE TABLE table_1183842_1 (type VARCHAR, nickname VARCHAR)
{ "SQL_Query": "SELECT type FROM table_1183842_1 WHERE nickname = \"Fighting Knights\"" }
Boca Raton, Florida had what joined amount?
CREATE TABLE table_1183842_1 (joined VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT joined FROM table_1183842_1 WHERE location = \"Boca Raton, Florida\"" }
If the enrollment is 3584, what's the largest founded?
CREATE TABLE table_1183842_1 (founded INTEGER, enrollment VARCHAR)
{ "SQL_Query": "SELECT MAX(founded) FROM table_1183842_1 WHERE enrollment = 3584" }
Who directed the episode that was viewed by 2.57 million people in the U.S.?
CREATE TABLE table_11820086_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_11820086_1 WHERE us_viewers__millions_ = \"2.57\"" }
Who directed the episode that was viewed by 2.50 million people in the U.S.?
CREATE TABLE table_11820086_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT directed_by FROM table_11820086_1 WHERE us_viewers__millions_ = \"2.50\"" }
Which episode number in season 5 was viewed by 3.00 million U.S. viziers?
CREATE TABLE table_11820086_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR)
{ "SQL_Query": "SELECT MIN(no_in_season) FROM table_11820086_1 WHERE us_viewers__millions_ = \"3.00\"" }
what are all the percent (1990) where state is united states
CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR)
{ "SQL_Query": "SELECT percent__1990_ FROM table_1182314_5 WHERE state = \"United states\"" }
what is the total number of percent (2000) where percent (1980) is 3.4%
CREATE TABLE table_1182314_5 (percent__2000_ VARCHAR, percent__1980_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(percent__2000_) FROM table_1182314_5 WHERE percent__1980_ = \"3.4%\"" }
what are all the percent (1990) where state is mississippi
CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR)
{ "SQL_Query": "SELECT percent__1990_ FROM table_1182314_5 WHERE state = \"Mississippi\"" }
what is the maximum norwegian americans (2000) where norwegian americans (1990) is 9170
CREATE TABLE table_1182314_5 (norwegian_americans__2000_ INTEGER, norwegian_americans__1990_ VARCHAR)
{ "SQL_Query": "SELECT MAX(norwegian_americans__2000_) FROM table_1182314_5 WHERE norwegian_americans__1990_ = 9170" }
what is the minimum norwegian americans (1980) where state is rhode island
CREATE TABLE table_1182314_5 (norwegian_americans__1980_ INTEGER, state VARCHAR)
{ "SQL_Query": "SELECT MIN(norwegian_americans__1980_) FROM table_1182314_5 WHERE state = \"Rhode Island\"" }
What is the English version of the title Getto Daun?
CREATE TABLE table_11839306_2 (english_title VARCHAR, rōmaji_title VARCHAR)
{ "SQL_Query": "SELECT english_title FROM table_11839306_2 WHERE rōmaji_title = \"Getto Daun\"" }
What is the smallest track number?
CREATE TABLE table_11839306_2 (track INTEGER)
{ "SQL_Query": "SELECT MIN(track) FROM table_11839306_2" }
How many tracks are titled Mō Sukoshi Tōku?
CREATE TABLE table_11839306_2 (track VARCHAR, rōmaji_title VARCHAR)
{ "SQL_Query": "SELECT COUNT(track) FROM table_11839306_2 WHERE rōmaji_title = \"Mō Sukoshi Tōku\"" }
What is the Japanese title for Fantasy?
CREATE TABLE table_11839306_2 (japanese_title VARCHAR, english_title VARCHAR)
{ "SQL_Query": "SELECT japanese_title FROM table_11839306_2 WHERE english_title = \"Fantasy\"" }
How long is track number 8?
CREATE TABLE table_11839306_2 (track VARCHAR)
{ "SQL_Query": "SELECT track AS time FROM table_11839306_2 WHERE track = 8" }
Who was the GT2 winning team when the GT3 winning team was #1 PTG?
CREATE TABLE table_11875915_2 (gt2_winning_team VARCHAR, gt3_winning_team VARCHAR)
{ "SQL_Query": "SELECT gt2_winning_team FROM table_11875915_2 WHERE gt3_winning_team = \"#1 PTG\"" }
How many doubles champions were there for the Serbia f6 Futures tournament?
CREATE TABLE table_11900378_1 (doubles_champions VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT COUNT(doubles_champions) FROM table_11900378_1 WHERE tournament = \"Serbia F6 Futures\"" }
How many singles tournaments did Ludovic Walter win?
CREATE TABLE table_11900378_1 (tournament VARCHAR, singles_champions VARCHAR)
{ "SQL_Query": "SELECT COUNT(tournament) FROM table_11900378_1 WHERE singles_champions = \"Ludovic Walter\"" }
What is the type where the country is esp?
CREATE TABLE table_11891841_2 (type VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT type FROM table_11891841_2 WHERE country = \"ESp\"" }
What is the name where p is mf?
CREATE TABLE table_11891841_2 (name VARCHAR, p VARCHAR)
{ "SQL_Query": "SELECT name FROM table_11891841_2 WHERE p = \"MF\"" }
What is the type where the name is bojan?
CREATE TABLE table_11891841_2 (type VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT type FROM table_11891841_2 WHERE name = \"Bojan\"" }
What was the first day cover cancellation for the University of Saskatchewan themed stamp?
CREATE TABLE table_11900773_5 (first_day_cover_cancellation VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT first_day_cover_cancellation FROM table_11900773_5 WHERE theme = \"University of Saskatchewan\"" }
Who was responsible for the design of the Jasper National Park theme?
CREATE TABLE table_11900773_5 (design VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT design FROM table_11900773_5 WHERE theme = \"Jasper National Park\"" }
What is the paper type of the University of Saskatchewan themed stamp?
CREATE TABLE table_11900773_5 (paper_type VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT paper_type FROM table_11900773_5 WHERE theme = \"University of Saskatchewan\"" }
Who created the illustration for the stamp that was themed 100 years of scouting?
CREATE TABLE table_11900773_5 (illustration VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT illustration FROM table_11900773_5 WHERE theme = \"100 Years of Scouting\"" }
What is the number of nicknames for the meaning of god knows my journey.
CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR)
{ "SQL_Query": "SELECT COUNT(nickname) FROM table_11908801_1 WHERE meaning = \"God Knows My Journey\"" }
What is the number of meaning where full name is chidinma anulika?
CREATE TABLE table_11908801_1 (meaning VARCHAR, full_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(meaning) FROM table_11908801_1 WHERE full_name = \"Chidinma Anulika\"" }
What is the nickname that means god holds my life?
CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR)
{ "SQL_Query": "SELECT nickname FROM table_11908801_1 WHERE meaning = \"God Holds My Life\"" }
Who had the high assists for game 49?
CREATE TABLE table_11907963_6 (high_assists VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_11907963_6 WHERE game = 49" }
What was the score for the game in which Emeka Okafor (10) had high rebounds?
CREATE TABLE table_11907963_6 (score VARCHAR, high_rebounds VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11907963_6 WHERE high_rebounds = \"Emeka Okafor (10)\"" }
what is the total number of location where station number is c03
CREATE TABLE table_11934032_1 (location VARCHAR, station_number VARCHAR)
{ "SQL_Query": "SELECT COUNT(location) FROM table_11934032_1 WHERE station_number = \"C03\"" }
what are all the type where station number is c08
CREATE TABLE table_11934032_1 (type VARCHAR, station_number VARCHAR)
{ "SQL_Query": "SELECT type FROM table_11934032_1 WHERE station_number = \"C08\"" }
what are all the type where location is st ives, cambridgeshire
CREATE TABLE table_11934032_1 (type VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT type FROM table_11934032_1 WHERE location = \"St Ives, Cambridgeshire\"" }
what are all the registrations where station number is c26
CREATE TABLE table_11934032_1 (registrations VARCHAR, station_number VARCHAR)
{ "SQL_Query": "SELECT registrations FROM table_11934032_1 WHERE station_number = \"C26\"" }
what are all the location where station number is c11
CREATE TABLE table_11934032_1 (location VARCHAR, station_number VARCHAR)
{ "SQL_Query": "SELECT location FROM table_11934032_1 WHERE station_number = \"C11\"" }
what are all the registrations where location is yaxley
CREATE TABLE table_11934032_1 (registrations VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT registrations FROM table_11934032_1 WHERE location = \"Yaxley\"" }
What is the issue price (proof) where the issue price (bu) is 34.95?
CREATE TABLE table_11916083_1 (issue_price__proof_ VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)
{ "SQL_Query": "SELECT issue_price__proof_ FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = \"34.95\"" }
What is the earliest year where the mintage (proof) is 25,000?
CREATE TABLE table_11916083_1 (year INTEGER, mintage__proof_ VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_11916083_1 WHERE mintage__proof_ = \"25,000\"" }
What is the mintage (bu) with the artist Royal Canadian Mint Staff and has an issue price (proof) of $54.95?
CREATE TABLE table_11916083_1 (mintage__bu_ VARCHAR, _clarification_needed_ VARCHAR, artist VARCHAR, issue_price__proof_ VARCHAR)
{ "SQL_Query": "SELECT mintage__bu_[_clarification_needed_] FROM table_11916083_1 WHERE artist = \"Royal Canadian Mint Staff\" AND issue_price__proof_ = \"$54.95\"" }
What is the year that the issue price (bu) is $26.95?
CREATE TABLE table_11916083_1 (year VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR)
{ "SQL_Query": "SELECT year FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = \"$26.95\"" }
What is the number of first class team with birthday of 5 december 1970?
CREATE TABLE table_11950720_4 (first_class_team VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT COUNT(first_class_team) FROM table_11950720_4 WHERE date_of_birth = \"5 December 1970\"" }
What is the number when birthday is 15 november 1973?
CREATE TABLE table_11950720_4 (no VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT no FROM table_11950720_4 WHERE date_of_birth = \"15 November 1973\"" }
What is the bowling style of chris harris?
CREATE TABLE table_11950720_4 (bowling_style VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT bowling_style FROM table_11950720_4 WHERE player = \"Chris Harris\"" }
Where is the first class team of date of birth 20 november 1969?
CREATE TABLE table_11950720_4 (first_class_team VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT first_class_team FROM table_11950720_4 WHERE date_of_birth = \"20 November 1969\"" }
What's Javagal Srinath's batting style?
CREATE TABLE table_11950720_3 (batting_style VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT batting_style FROM table_11950720_3 WHERE player = \"Javagal Srinath\"" }
Shivnarine Chanderpaul used what bowling style?
CREATE TABLE table_11950720_8 (bowling_style VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT bowling_style FROM table_11950720_8 WHERE player = \"Shivnarine Chanderpaul\"" }
How many musical guests and songs were in episodes with a production code k0519?
CREATE TABLE table_11951237_2 (musical_guest_and_song VARCHAR, production_code VARCHAR)
{ "SQL_Query": "SELECT COUNT(musical_guest_and_song) FROM table_11951237_2 WHERE production_code = \"K0519\"" }
How many episodes originally aired on August 31, 1995?
CREATE TABLE table_11951237_2 (title VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT COUNT(title) FROM table_11951237_2 WHERE original_air_date = \"August 31, 1995\"" }
What is theoriginal air date of the episode directed by timothy van patten?
CREATE TABLE table_11951237_3 (original_air_date VARCHAR, directed_by VARCHAR)
{ "SQL_Query": "SELECT original_air_date FROM table_11951237_3 WHERE directed_by = \"Timothy Van Patten\"" }
What is the season # where production code is k1505?
CREATE TABLE table_11951237_3 (season__number INTEGER, production_code VARCHAR)
{ "SQL_Query": "SELECT MIN(season__number) FROM table_11951237_3 WHERE production_code = \"K1505\"" }
What is the title of the episode with the original air date of february 6, 1997?
CREATE TABLE table_11951237_3 (title VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT title FROM table_11951237_3 WHERE original_air_date = \"February 6, 1997\"" }
How many titles are there for season 8
CREATE TABLE table_11951237_4 (title VARCHAR, season__number VARCHAR)
{ "SQL_Query": "SELECT COUNT(title) FROM table_11951237_4 WHERE season__number = 8" }
Which tittles have an original air date of March 19, 1998
CREATE TABLE table_11951237_4 (title VARCHAR, original_air_date VARCHAR)
{ "SQL_Query": "SELECT title FROM table_11951237_4 WHERE original_air_date = \"March 19, 1998\"" }
What was the attendance of the game November 24
CREATE TABLE table_11959669_3 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT location_attendance FROM table_11959669_3 WHERE date = \"November 24\"" }
Who had the highest assists on November 4
CREATE TABLE table_11959669_3 (high_assists VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_11959669_3 WHERE date = \"November 4\"" }
Who had the highest rebounds on November 4
CREATE TABLE table_11959669_3 (high_rebounds VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT high_rebounds FROM table_11959669_3 WHERE date = \"November 4\"" }
How many numbers were listed under attendance for March 2?
CREATE TABLE table_11959669_7 (location_attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(location_attendance) FROM table_11959669_7 WHERE date = \"March 2\"" }
What was the final score on March 26?
CREATE TABLE table_11959669_7 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11959669_7 WHERE date = \"March 26\"" }
What is the team when the score is 88–86?
CREATE TABLE table_11959669_6 (team VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11959669_6 WHERE score = \"88–86\"" }
What is the score when high points is from pierce (30)?
CREATE TABLE table_11959669_6 (score VARCHAR, high_points VARCHAR)
{ "SQL_Query": "SELECT score FROM table_11959669_6 WHERE high_points = \"Pierce (30)\"" }
How many times is the score 98–90?
CREATE TABLE table_11959669_6 (location_attendance VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(location_attendance) FROM table_11959669_6 WHERE score = \"98–90\"" }
What is the game that the location attendance is pepsi center 19,894?
CREATE TABLE table_11959669_6 (game INTEGER, location_attendance VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_11959669_6 WHERE location_attendance = \"Pepsi Center 19,894\"" }
What is the team when location attendance is us airways center 18,422?
CREATE TABLE table_11959669_6 (team VARCHAR, location_attendance VARCHAR)
{ "SQL_Query": "SELECT team FROM table_11959669_6 WHERE location_attendance = \"US Airways Center 18,422\"" }