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