question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which units are commanded by Lieutenant Colonel Francis Hepburn? | CREATE TABLE table_11793221_2 (unit VARCHAR, commander VARCHAR) | SELECT unit FROM table_11793221_2 WHERE commander = "Lieutenant Colonel Francis Hepburn" | ### Context: CREATE TABLE table_11793221_2 (unit VARCHAR, commander VARCHAR) ### Question: Which units are commanded by Lieutenant Colonel Francis Hepburn? ### Answer: 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) | SELECT complement FROM table_11793221_2 WHERE commander = "Major William Lloyd" | ### Context: CREATE TABLE table_11793221_2 (complement 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" |
How many were wounded when the complement was 173 off 2059 men? | CREATE TABLE table_11793221_2 (wounded VARCHAR, complement VARCHAR) | 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 were wounded when the complement was 173 off 2059 men? ### Answer: 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) | 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: 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" |
Who were the commanders when 8 off 0 men were wounded? | CREATE TABLE table_11793221_2 (commander VARCHAR, wounded VARCHAR) | SELECT commander FROM table_11793221_2 WHERE wounded = "8 off 0 men" | ### Context: CREATE TABLE table_11793221_2 (commander VARCHAR, wounded 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" |
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) | 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: 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" |
How many countries has a gdp (nominal) of $29.9 billion? | CREATE TABLE table_11780179_1 (gdp_per_capita__nominal_ VARCHAR, gdp__nominal_ VARCHAR) | 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: 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" |
What is the GDP (nominal) for Uzbekistan? | CREATE TABLE table_11780179_1 (gdp__nominal_ VARCHAR, country VARCHAR) | 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 GDP (nominal) for Uzbekistan? ### Answer: 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) | 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 area (km²) for the country with a population of 16967000? ### Answer: 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) | 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 aspect ratio of the DVD released on 12/10/2009? ### Answer: 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) | 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: 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 |
How many releases did the DVD River Cottage forever have? | CREATE TABLE table_1180228_1 (released VARCHAR, dvd_name VARCHAR) | 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: How many releases did the DVD River Cottage forever have? ### Answer: 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) | 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 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" |
What were the wounded for complement of 46 off 656 men? | CREATE TABLE table_11793221_4 (wounded VARCHAR, complement VARCHAR) | SELECT wounded FROM table_11793221_4 WHERE complement = "46 off 656 men" | ### Context: CREATE TABLE table_11793221_4 (wounded VARCHAR, complement 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" |
What was the missing for lieutenant general sir thomas picton? | CREATE TABLE table_11793221_4 (missing VARCHAR, commander VARCHAR) | SELECT missing FROM table_11793221_4 WHERE commander = "Lieutenant General Sir Thomas Picton" | ### Context: CREATE TABLE table_11793221_4 (missing VARCHAR, commander 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" |
Name the number of complement for 4th hanoverian brigade | CREATE TABLE table_11793221_4 (complement VARCHAR, unit VARCHAR) | 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 number of complement for 4th hanoverian brigade ### Answer: 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) | SELECT commander FROM table_11793221_4 WHERE complement = "167 off 2348 men" | ### Context: CREATE TABLE table_11793221_4 (commander VARCHAR, complement VARCHAR) ### Question: Name the commander of 167 off 2348 men ### Answer: 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) | SELECT MIN(overall) FROM table_11803648_17 | ### Context: CREATE TABLE table_11803648_17 (overall INTEGER) ### Question: HOW MUCH WAS THE OVERALL FOR ERIK KARLSSON? ### Answer: SELECT MIN(overall) FROM table_11803648_17 |
WHAT ROUND WAS FORWARD ANDRE PETERSSON SELECTED? | CREATE TABLE table_11803648_17 (round INTEGER, position VARCHAR) | SELECT MIN(round) FROM table_11803648_17 WHERE position = "Forward" | ### Context: CREATE TABLE table_11803648_17 (round INTEGER, position VARCHAR) ### Question: WHAT ROUND WAS FORWARD ANDRE PETERSSON SELECTED? ### Answer: 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) | SELECT position FROM table_11803648_17 WHERE player = "Patrick Wiercioch" | ### Context: CREATE TABLE table_11803648_17 (position VARCHAR, player VARCHAR) ### Question: WHAT POSITION DOES PATRICK WIERCIOCH PLAY? ### Answer: 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) | SELECT MIN(overall) FROM table_11803648_17 WHERE club_team = "Omaha (USHL)" | ### Context: CREATE TABLE table_11803648_17 (overall INTEGER, club_team VARCHAR) ### Question: NAME THE OVERALL FOR THE OMAHA (USHL) CLUB TEAM ### Answer: 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) | SELECT nationality FROM table_11803648_17 WHERE player = "Andre Petersson" | ### Context: CREATE TABLE table_11803648_17 (nationality VARCHAR, player VARCHAR) ### Question: WHERE IS ANDRE PETERSSON FROM? ### Answer: 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) | SELECT club_team FROM table_11803648_21 WHERE player = "Jarrod Maidens" | ### Context: CREATE TABLE table_11803648_21 (club_team VARCHAR, player VARCHAR) ### Question: What club team did JArrod Maidens play for? ### Answer: 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) | SELECT position FROM table_11803648_21 WHERE player = "Cody Ceci" | ### Context: CREATE TABLE table_11803648_21 (position VARCHAR, player VARCHAR) ### Question: What position does Cody Ceci play? ### Answer: 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) | SELECT nationality FROM table_11803648_20 WHERE club_team = "Peterborough Petes (OHL)" | ### Context: CREATE TABLE table_11803648_20 (nationality VARCHAR, club_team 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)" |
Which player is in round 5? | CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR) | SELECT player FROM table_11803648_20 WHERE round = 5 | ### Context: CREATE TABLE table_11803648_20 (player VARCHAR, round VARCHAR) ### Question: Which player is in round 5? ### Answer: 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) | SELECT position FROM table_11803648_20 WHERE overall = "126" | ### Context: CREATE TABLE table_11803648_20 (position VARCHAR, overall VARCHAR) ### Question: What position is associated with an overall value of 126? ### Answer: 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) | SELECT position FROM table_11803648_20 WHERE player = "Jordan Fransoo" | ### Context: CREATE TABLE table_11803648_20 (position VARCHAR, player VARCHAR) ### Question: What position is the player Jordan Fransoo in? ### Answer: 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) | SELECT COUNT(round) FROM table_11803648_20 WHERE player = "Matthew Puempel" | ### Context: CREATE TABLE table_11803648_20 (round 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" |
What is the position of player Tobias Lindberg? | CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR) | SELECT position FROM table_11803648_22 WHERE player = "Tobias Lindberg" | ### Context: CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR) ### Question: What is the position of player Tobias Lindberg? ### Answer: 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) | SELECT COUNT(player) FROM table_11803648_22 WHERE overall = "78" | ### Context: CREATE TABLE table_11803648_22 (player VARCHAR, overall VARCHAR) ### Question: How many players had overall 78? ### Answer: 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) | 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: 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)" |
How many positions did player Ben Harpur play? | CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR) | SELECT COUNT(position) FROM table_11803648_22 WHERE player = "Ben Harpur" | ### Context: CREATE TABLE table_11803648_22 (position VARCHAR, player VARCHAR) ### Question: How many positions did player Ben Harpur play? ### Answer: 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) | SELECT position FROM table_11803648_22 WHERE player = "Marcus Hogberg" | ### 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" |
3488 is the enrollment amount of what college? | CREATE TABLE table_1183842_1 (institution VARCHAR, enrollment VARCHAR) | SELECT institution FROM table_1183842_1 WHERE enrollment = 3488 | ### Context: CREATE TABLE table_1183842_1 (institution VARCHAR, enrollment VARCHAR) ### Question: 3488 is the enrollment amount of what college? ### Answer: 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) | SELECT MAX(enrollment) FROM table_1183842_1 WHERE institution = "Barry University" | ### Context: CREATE TABLE table_1183842_1 (enrollment INTEGER, institution VARCHAR) ### Question: Barry University had the highest enrollment of what number? ### Answer: 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) | SELECT type FROM table_1183842_1 WHERE nickname = "Fighting Knights" | ### Context: CREATE TABLE table_1183842_1 (type VARCHAR, nickname VARCHAR) ### Question: The fighting knights has what type of nickname? ### Answer: 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) | SELECT joined FROM table_1183842_1 WHERE location = "Boca Raton, Florida" | ### Context: CREATE TABLE table_1183842_1 (joined VARCHAR, location VARCHAR) ### Question: Boca Raton, Florida had what joined amount? ### Answer: 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) | SELECT MAX(founded) FROM table_1183842_1 WHERE enrollment = 3584 | ### Context: CREATE TABLE table_1183842_1 (founded INTEGER, enrollment VARCHAR) ### Question: If the enrollment is 3584, what's the largest founded? ### Answer: 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) | 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.57 million people in the U.S.? ### Answer: 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) | 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: 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" |
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) | 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: 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" |
what are all the percent (1990) where state is united states | CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR) | SELECT percent__1990_ FROM table_1182314_5 WHERE state = "United states" | ### Context: CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state 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" |
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) | 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 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%" |
what are all the percent (1990) where state is mississippi | CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR) | SELECT percent__1990_ FROM table_1182314_5 WHERE state = "Mississippi" | ### Context: CREATE TABLE table_1182314_5 (percent__1990_ VARCHAR, state VARCHAR) ### Question: what are all the percent (1990) where state is mississippi ### Answer: 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) | 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 maximum norwegian americans (2000) where norwegian americans (1990) is 9170 ### Answer: SELECT MAX(norwegian_americans__2000_) FROM table_1182314_5 WHERE norwegian_americans__1990... |
what is the minimum norwegian americans (1980) where state is rhode island | CREATE TABLE table_1182314_5 (norwegian_americans__1980_ INTEGER, state VARCHAR) | 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 minimum norwegian americans (1980) where state is rhode island ### Answer: 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) | 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 English version of the title Getto Daun? ### Answer: 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) | SELECT MIN(track) FROM table_11839306_2 | ### Context: CREATE TABLE table_11839306_2 (track INTEGER) ### Question: What is the smallest track number? ### Answer: 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) | 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: 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" |
What is the Japanese title for Fantasy? | CREATE TABLE table_11839306_2 (japanese_title VARCHAR, english_title VARCHAR) | SELECT japanese_title FROM table_11839306_2 WHERE english_title = "Fantasy" | ### Context: CREATE TABLE table_11839306_2 (japanese_title VARCHAR, english_title VARCHAR) ### Question: What is the Japanese title for Fantasy? ### Answer: SELECT japanese_title FROM table_11839306_2 WHERE english_title = "Fantasy" |
How long is track number 8? | CREATE TABLE table_11839306_2 (track VARCHAR) | SELECT track AS time FROM table_11839306_2 WHERE track = 8 | ### Context: CREATE TABLE table_11839306_2 (track VARCHAR) ### Question: How long is track number 8? ### Answer: 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) | 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: 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" |
How many doubles champions were there for the Serbia f6 Futures tournament? | CREATE TABLE table_11900378_1 (doubles_champions VARCHAR, tournament VARCHAR) | 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 doubles champions were there for the Serbia f6 Futures tournament? ### Answer: 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) | SELECT COUNT(tournament) FROM table_11900378_1 WHERE singles_champions = "Ludovic Walter" | ### Context: CREATE TABLE table_11900378_1 (tournament VARCHAR, singles_champions VARCHAR) ### Question: How many singles tournaments did Ludovic Walter win? ### Answer: 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) | SELECT type FROM table_11891841_2 WHERE country = "ESp" | ### Context: CREATE TABLE table_11891841_2 (type VARCHAR, country VARCHAR) ### Question: What is the type where the country is esp? ### Answer: 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) | SELECT name FROM table_11891841_2 WHERE p = "MF" | ### Context: CREATE TABLE table_11891841_2 (name VARCHAR, p VARCHAR) ### Question: What is the name where p is mf? ### Answer: 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) | SELECT type FROM table_11891841_2 WHERE name = "Bojan" | ### Context: CREATE TABLE table_11891841_2 (type VARCHAR, name VARCHAR) ### Question: What is the type where the name is bojan? ### Answer: 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) | 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: 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" |
Who was responsible for the design of the Jasper National Park theme? | CREATE TABLE table_11900773_5 (design VARCHAR, theme VARCHAR) | SELECT design FROM table_11900773_5 WHERE theme = "Jasper National Park" | ### Context: CREATE TABLE table_11900773_5 (design 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" |
What is the paper type of the University of Saskatchewan themed stamp? | CREATE TABLE table_11900773_5 (paper_type VARCHAR, theme VARCHAR) | SELECT paper_type FROM table_11900773_5 WHERE theme = "University of Saskatchewan" | ### Context: CREATE TABLE table_11900773_5 (paper_type 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" |
Who created the illustration for the stamp that was themed 100 years of scouting? | CREATE TABLE table_11900773_5 (illustration VARCHAR, theme VARCHAR) | SELECT illustration FROM table_11900773_5 WHERE theme = "100 Years of Scouting" | ### Context: CREATE TABLE table_11900773_5 (illustration 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" |
What is the number of nicknames for the meaning of god knows my journey. | CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning VARCHAR) | 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 nicknames for the meaning of god knows my journey. ### Answer: 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) | 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 number of meaning where full name is chidinma anulika? ### Answer: 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) | SELECT nickname FROM table_11908801_1 WHERE meaning = "God Holds My Life" | ### Context: CREATE TABLE table_11908801_1 (nickname VARCHAR, meaning 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" |
Who had the high assists for game 49? | CREATE TABLE table_11907963_6 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_11907963_6 WHERE game = 49 | ### Context: CREATE TABLE table_11907963_6 (high_assists VARCHAR, game VARCHAR) ### Question: Who had the high assists for game 49? ### Answer: 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) | 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 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)" |
what is the total number of location where station number is c03 | CREATE TABLE table_11934032_1 (location VARCHAR, station_number VARCHAR) | SELECT COUNT(location) FROM table_11934032_1 WHERE station_number = "C03" | ### Context: CREATE TABLE table_11934032_1 (location VARCHAR, station_number 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" |
what are all the type where station number is c08 | CREATE TABLE table_11934032_1 (type VARCHAR, station_number VARCHAR) | 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 station number is c08 ### Answer: 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) | 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 type where location is st ives, cambridgeshire ### Answer: 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) | 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 registrations where station number is c26 ### Answer: 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) | 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 location where station number is c11 ### Answer: 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) | SELECT registrations FROM table_11934032_1 WHERE location = "Yaxley" | ### Context: CREATE TABLE table_11934032_1 (registrations VARCHAR, location VARCHAR) ### Question: what are all the registrations where location is yaxley ### Answer: 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) | 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_ 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_... |
What is the earliest year where the mintage (proof) is 25,000? | CREATE TABLE table_11916083_1 (year INTEGER, mintage__proof_ VARCHAR) | 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 earliest year where the mintage (proof) is 25,000? ### Answer: 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) | 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 (mintage__bu_ VARCHAR, _clarification_needed_ VARCHAR, artist VARCHAR, issue_price__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_... |
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) | 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 year that the issue price (bu) is $26.95? ### Answer: 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) | 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 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" |
What is the number when birthday is 15 november 1973? | CREATE TABLE table_11950720_4 (no VARCHAR, date_of_birth VARCHAR) | 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 number when birthday is 15 november 1973? ### Answer: 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) | SELECT bowling_style FROM table_11950720_4 WHERE player = "Chris Harris" | ### Context: CREATE TABLE table_11950720_4 (bowling_style VARCHAR, player VARCHAR) ### Question: What is the bowling style of chris harris? ### Answer: 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) | 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: 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" |
What's Javagal Srinath's batting style? | CREATE TABLE table_11950720_3 (batting_style VARCHAR, player VARCHAR) | SELECT batting_style FROM table_11950720_3 WHERE player = "Javagal Srinath" | ### Context: CREATE TABLE table_11950720_3 (batting_style VARCHAR, player VARCHAR) ### Question: What's Javagal Srinath's batting style? ### Answer: 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) | SELECT bowling_style FROM table_11950720_8 WHERE player = "Shivnarine Chanderpaul" | ### Context: CREATE TABLE table_11950720_8 (bowling_style VARCHAR, player VARCHAR) ### Question: Shivnarine Chanderpaul used what bowling style? ### Answer: 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) | 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 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" |
How many episodes originally aired on August 31, 1995? | CREATE TABLE table_11951237_2 (title VARCHAR, original_air_date VARCHAR) | 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: How many episodes originally aired on August 31, 1995? ### Answer: 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) | 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 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" |
What is the season # where production code is k1505? | CREATE TABLE table_11951237_3 (season__number INTEGER, production_code VARCHAR) | 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 season # where production code is k1505? ### Answer: 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) | 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: 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" |
How many titles are there for season 8 | CREATE TABLE table_11951237_4 (title VARCHAR, season__number VARCHAR) | SELECT COUNT(title) FROM table_11951237_4 WHERE season__number = 8 | ### Context: CREATE TABLE table_11951237_4 (title VARCHAR, season__number VARCHAR) ### Question: How many titles are there for season 8 ### Answer: 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) | 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: 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" |
What was the attendance of the game November 24 | CREATE TABLE table_11959669_3 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_11959669_3 WHERE date = "November 24" | ### Context: CREATE TABLE table_11959669_3 (location_attendance VARCHAR, date VARCHAR) ### Question: What was the attendance of the game November 24 ### Answer: 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) | 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 assists on November 4 ### Answer: 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) | SELECT high_rebounds FROM table_11959669_3 WHERE date = "November 4" | ### Context: CREATE TABLE table_11959669_3 (high_rebounds VARCHAR, date VARCHAR) ### Question: Who had the highest rebounds on November 4 ### Answer: 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) | SELECT COUNT(location_attendance) FROM table_11959669_7 WHERE date = "March 2" | ### Context: CREATE TABLE table_11959669_7 (location_attendance 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" |
What was the final score on March 26? | CREATE TABLE table_11959669_7 (score VARCHAR, date VARCHAR) | SELECT score FROM table_11959669_7 WHERE date = "March 26" | ### Context: CREATE TABLE table_11959669_7 (score VARCHAR, date VARCHAR) ### Question: What was the final score on March 26? ### Answer: 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) | SELECT team FROM table_11959669_6 WHERE score = "88–86" | ### Context: CREATE TABLE table_11959669_6 (team VARCHAR, score VARCHAR) ### Question: What is the team when the score is 88–86? ### Answer: 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) | SELECT score FROM table_11959669_6 WHERE high_points = "Pierce (30)" | ### Context: CREATE TABLE table_11959669_6 (score VARCHAR, high_points 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)" |
How many times is the score 98–90? | CREATE TABLE table_11959669_6 (location_attendance VARCHAR, score VARCHAR) | SELECT COUNT(location_attendance) FROM table_11959669_6 WHERE score = "98–90" | ### Context: CREATE TABLE table_11959669_6 (location_attendance VARCHAR, score VARCHAR) ### Question: How many times is the score 98–90? ### Answer: 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) | 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 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" |
What is the team when location attendance is us airways center 18,422? | CREATE TABLE table_11959669_6 (team VARCHAR, location_attendance VARCHAR) | 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) ### 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" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.