question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many games were played on March 15?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("game") FROM "game_log" WHERE "date"='March 15';
1-17323042-9
What was the team's record when they faced orlando?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "game_log" WHERE "team"='Orlando';
1-17323042-5
Whic teams scored l 97–107 (ot)
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "regular_season" WHERE "score"='L 97–107 (OT)';
1-17323092-5
Who had the high assists when the team was @ Minnesota?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "regular_season" WHERE "team"='@ Minnesota';
1-17323092-7
On what date did the Team Minnesota play?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "team"='Minnesota';
1-17323092-7
Who had the high points on the date February 10?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "regular_season" WHERE "date"='February 10';
1-17323092-7
How many players had high points in the location/attendance FedexForum 11,498 respectively?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_points") FROM "regular_season" WHERE "location_attendance"='FedExForum 11,498';
1-17323092-7
When the high assists were Shawn Marion (6) who had high rebounds?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "regular_season" WHERE "high_assists"='Shawn Marion (6)';
1-17323092-7
What dates did they play Miami?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "team"='Miami';
1-17323092-8
What dates did Chris Bosh (18) score the high points?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "high_points"='Chris Bosh (18)';
1-17323092-8
Where was the location and what was the attendance in the game that Anthony Parker (7) earned high assists?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "regular_season" WHERE "high_assists"='Anthony Parker (7)';
1-17323092-8
Who earned high points in game 69?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "regular_season" WHERE "game"=69;
1-17323092-8
What is the total number of high points on January 21?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_points") FROM "regular_season" WHERE "date"='January 21';
1-17323092-6
What is the location and attendance for the Orlando team?
CREATE TABLE "regular_season" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "regular_season" WHERE "team"='Orlando';
1-17323092-6
what was the final score of the game versus Milwaukee?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "team"='Milwaukee';
1-17325580-5
What is the record against Boston?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "game_log" WHERE "team"='Boston';
1-17323529-8
What is every high point when the team is Washington?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "game_log" WHERE "team"='Washington';
1-17325580-6
How many games occur on the date December 12?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("game") FROM "game_log" WHERE "date"='December 12';
1-17325580-6
How many high assist are on the date December 13?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_assists") FROM "game_log" WHERE "date"='December 13';
1-17325580-6
What is every location attendance on the date December 12?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "date"='December 12';
1-17325580-6
What was the high rebounds on November 26?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "date"='November 26';
1-17325937-5
What was the high assists on November 14?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "date"='November 14';
1-17325937-5
Who had the most assists in the game against Miami?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "team"='Miami';
1-17325937-8
How many assists were made in the game against San Antonio?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("high_assists") FROM "game_log" WHERE "team"='San Antonio';
1-17325937-8
Who did the most high rebounds in the game played on November 1?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "date"='November 1';
1-17326036-5
What team was the game on November 21 played against?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "date"='November 21';
1-17326036-5
What was the score in the game against Boston?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "team"='Boston';
1-17326036-5
Name the date of appointment for petrik sander
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT "date_of_appointment" FROM "managerial_changes" WHERE "replaced_by"='Petrik Sander';
1-17327264-3
Name the date of appointment for sacked and 14th position replaced by marco kostmann
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text, "position_in_table" text );
SELECT "date_of_appointment" FROM "managerial_changes" WHERE "manner_of_departure"='Sacked' AND "position_in_table"='14th' AND "replaced_by"='Marco Kostmann';
1-17327264-3
How many location attendance was recorded for December 5?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("location_attendance") FROM "game_log" WHERE "date"='December 5';
1-17326036-6
What was the attendance and location on December 15?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "date"='December 15';
1-17326036-6
How many games were recorded when the team was @ Memphis?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("game") FROM "game_log" WHERE "team"='@ Memphis';
1-17326036-6
What was the score of the game when the high rebounds Jeff Foster (10)?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "high_rebounds"='Jeff Foster (10)';
1-17326036-6
What team appointed a manager on 12 June?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT "team" FROM "managerial_changes" WHERE "date_of_appointment"='12 June';
1-17327458-1
Who was replaced on 11 July?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT "replaced_by" FROM "managerial_changes" WHERE "date_of_appointment"='11 July';
1-17327458-1
Who left a position on 29 May?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT "outgoing_manager" FROM "managerial_changes" WHERE "date_of_vacancy"='29 May';
1-17327458-1
Who left a position on 24 January?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT "outgoing_manager" FROM "managerial_changes" WHERE "date_of_vacancy"='24 January';
1-17327458-1
How many vacancies happened on 25 May?
CREATE TABLE "managerial_changes" ( "team" text, "outgoing_manager" text, "manner_of_departure" text, "date_of_vacancy" text, "replaced_by" text, "date_of_appointment" text );
SELECT COUNT("manner_of_departure") FROM "managerial_changes" WHERE "date_of_vacancy"='25 May';
1-17327458-1
how many 1391 carelia where 1398 donnera is 2397 lappajärvi
CREATE TABLE "table1_173278_1" ( "1391_carelia" text, "1398_donnera" text, "1405_sibelius" text, "1406_komppa" text, "1407_lindel_f" text );
SELECT COUNT("1391_carelia") FROM "table1_173278_1" WHERE "1398_donnera"='2397 Lappajärvi';
1-173278-1
what is the 1398 donnera of asteroid which 1391 carelia is 1529 oterma
CREATE TABLE "table1_173278_1" ( "1391_carelia" text, "1398_donnera" text, "1405_sibelius" text, "1406_komppa" text, "1407_lindel_f" text );
SELECT "1398_donnera" FROM "table1_173278_1" WHERE "1391_carelia"='1529 Oterma';
1-173278-1
what is the 1405 sibelius of asteroid which 1407 lindelöf is 2020 ukko
CREATE TABLE "table1_173278_1" ( "1391_carelia" text, "1398_donnera" text, "1405_sibelius" text, "1406_komppa" text, "1407_lindel_f" text );
SELECT "1405_sibelius" FROM "table1_173278_1" WHERE "1407_lindel_f"='2020 Ukko';
1-173278-1
what is the 1406 komppa of asteroid which 1391 carelia is 1460 haltia
CREATE TABLE "table1_173278_1" ( "1391_carelia" text, "1398_donnera" text, "1405_sibelius" text, "1406_komppa" text, "1407_lindel_f" text );
SELECT "1406_komppa" FROM "table1_173278_1" WHERE "1391_carelia"='1460 Haltia';
1-173278-1
what is the 1391 carelia of asteroid which 1407 lindelöf is 1527 malmquista
CREATE TABLE "table1_173278_1" ( "1391_carelia" text, "1398_donnera" text, "1405_sibelius" text, "1406_komppa" text, "1407_lindel_f" text );
SELECT "1391_carelia" FROM "table1_173278_1" WHERE "1407_lindel_f"='1527 Malmquista';
1-173278-1
what is the 1406 komppa of asteroid which 1405 sibelius is 2737 kotka
CREATE TABLE "table1_173278_1" ( "1391_carelia" text, "1398_donnera" text, "1405_sibelius" text, "1406_komppa" text, "1407_lindel_f" text );
SELECT "1406_komppa" FROM "table1_173278_1" WHERE "1405_sibelius"='2737 Kotka';
1-173278-1
If the points is 15, what is the fin. pos?
CREATE TABLE "classification" ( "fin_pos" real, "car_no" real, "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "laps_led" real, "points" text );
SELECT COUNT("fin_pos") FROM "classification" WHERE "points"='15';
1-17330069-1
What is the car number for driver Hélio Castroneves
CREATE TABLE "classification" ( "fin_pos" real, "car_no" real, "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "laps_led" real, "points" text );
SELECT MIN("car_no") FROM "classification" WHERE "driver"='Hélio Castroneves';
1-17330069-1
If grid is 2, what is the minimum fin. pos number?
CREATE TABLE "classification" ( "fin_pos" real, "car_no" real, "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "laps_led" real, "points" text );
SELECT MIN("fin_pos") FROM "classification" WHERE "grid"=2;
1-17330069-1
If there are 28 points, what is the time/retired?
CREATE TABLE "classification" ( "fin_pos" real, "car_no" real, "driver" text, "team" text, "laps" real, "time_retired" text, "grid" real, "laps_led" real, "points" text );
SELECT "time_retired" FROM "classification" WHERE "points"='28';
1-17330069-1
How many winning scores were there in the rr donnelley lpga founders cup?
CREATE TABLE "lpga_tour_15" ( "no" real, "date" text, "tournament" text, "winning_score" text, "to_par" text, "margin_of_victory" text, "runner_s_up" text, "winners_share" real );
SELECT COUNT("winning_score") FROM "lpga_tour_15" WHERE "tournament"='RR Donnelley LPGA Founders Cup';
1-17335602-1
When was the mcdonald's lpga championship?
CREATE TABLE "lpga_tour_15" ( "no" real, "date" text, "tournament" text, "winning_score" text, "to_par" text, "margin_of_victory" text, "runner_s_up" text, "winners_share" real );
SELECT "date" FROM "lpga_tour_15" WHERE "tournament"='McDonald''s LPGA Championship';
1-17335602-1
What was the winner's share in the wegmans lpga championship?
CREATE TABLE "lpga_tour_15" ( "no" real, "date" text, "tournament" text, "winning_score" text, "to_par" text, "margin_of_victory" text, "runner_s_up" text, "winners_share" real );
SELECT MAX("winners_share") FROM "lpga_tour_15" WHERE "tournament"='Wegmans LPGA Championship';
1-17335602-1
Name the kerry # for others# is 44
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "kerrynum" FROM "by_county" WHERE "othersnum"=44;
1-1733457-1
Name the minimum kerry # for bush % for 50.9%
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT MIN("kerrynum") FROM "by_county" WHERE "bushpct"='50.9%';
1-1733457-1
Name the others % for johnson
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "otherspct" FROM "by_county" WHERE "county"='Johnson';
1-1733457-1
Name the maximum kerry # for where others is 47
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT MAX("kerrynum") FROM "by_county" WHERE "othersnum"=47;
1-1733457-1
Name the bush% for where others # is 90
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "bushpct" FROM "by_county" WHERE "othersnum"=90;
1-1733457-1
Name the others % for cleveland
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "otherspct" FROM "by_county" WHERE "county"='Cleveland';
1-1733457-1
What is the percentage of others when the number of others is 2286?
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "otherspct" FROM "by_county" WHERE "othersnum"=2286;
1-1733513-1
What was the percentage of others when the number for Bush was 3196?
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "otherspct" FROM "by_county" WHERE "bushnum"=3196;
1-1733513-1
What is the percentage of others when the number for Bush is 1329?
CREATE TABLE "by_county" ( "county" text, "kerrypct" text, "kerrynum" real, "bushpct" text, "bushnum" real, "otherspct" text, "othersnum" real );
SELECT "otherspct" FROM "by_county" WHERE "bushnum"=1329;
1-1733513-1
Which game was played by team milwaukee
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "game" FROM "game_log" WHERE "team"='Milwaukee';
1-17340355-6
Who made high points on games of score w 106–104 (ot)
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "score"='W 106–104 (OT)';
1-17340355-6
What are the records of games where high rebounds is amar'e stoudemire (11)
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("record") FROM "game_log" WHERE "high_rebounds"='Amar''e Stoudemire (11)';
1-17340355-6
What is the location of the the game on december 10
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "date"='December 10';
1-17340355-6
List the all the scores where the high assis is b. shaw (5)
CREATE TABLE "playoffs" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "series" text );
SELECT "score" FROM "playoffs" WHERE "high_assists"='B. Shaw (5)';
1-17344582-11
List of high assists with high rebounds for k. mchale (10)
CREATE TABLE "playoffs" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "series" text );
SELECT "high_assists" FROM "playoffs" WHERE "high_rebounds"='K. McHale (10)';
1-17344582-11
List all location attendance for series 1-1.
CREATE TABLE "playoffs" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "series" text );
SELECT "location_attendance" FROM "playoffs" WHERE "series"='1-1';
1-17344582-11
What day(s) did the team play indiana?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "team"='Indiana';
1-17340355-7
Who had the high assist total on january 2?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "date"='January 2';
1-17340355-7
What was the title used in nomination in the original Bābǎi Zhuàngshì (八百壯士)?
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "director" text, "result" text );
SELECT "film_title_used_in_nomination" FROM "submissions" WHERE "original_title"='Bābǎi zhuàngshì (八百壯士)';
1-17350255-1
What was the year when Chūnqiū Cháshì (春秋茶室) was submitted?
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "director" text, "result" text );
SELECT "year_ceremony" FROM "submissions" WHERE "original_title"='Chūnqiū cháshì (春秋茶室)';
1-17350255-1
Old Mo's Second Spring was the film title used in nomination in what year?
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "director" text, "result" text );
SELECT "year_ceremony" FROM "submissions" WHERE "film_title_used_in_nomination"='Old Mo''s Second Spring';
1-17350255-1
What was the year when My Mother's Teahouse was not nominated?
CREATE TABLE "submissions" ( "year_ceremony" text, "film_title_used_in_nomination" text, "original_title" text, "director" text, "result" text );
SELECT "year_ceremony" FROM "submissions" WHERE "result"='Not Nominated' AND "film_title_used_in_nomination"='My Mother''s Teahouse';
1-17350255-1
What titles were released in 2006?
CREATE TABLE "versions" ( "release" real, "title" text, "start" real, "pieces" real, "board_inches" text, "board_cm" text, "type" text, "new_units_new_units_when_compared_to_the_original_a_a_classic_version_of_the_game" text, "playable_powers" text );
SELECT "title" FROM "versions" WHERE "release"=2006;
1-173475-1
What year(s) was axis & allies: d-day released?
CREATE TABLE "versions" ( "release" real, "title" text, "start" real, "pieces" real, "board_inches" text, "board_cm" text, "type" text, "new_units_new_units_when_compared_to_the_original_a_a_classic_version_of_the_game" text, "playable_powers" text );
SELECT "release" FROM "versions" WHERE "title"='Axis & Allies: D-Day';
1-173475-1
What game was on May 25?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "game" FROM "game_log" WHERE "date"='May 25';
1-17355408-12
What game was the record 2-3?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT COUNT("game") FROM "game_log" WHERE "record"='2-3';
1-17355408-12
Who had the high rebounds when the team played Sacramento?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "team"='Sacramento';
1-17355408-9
Who had the high points on April 8?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "game_log" WHERE "date"='April 8';
1-17355408-9
Who had the high assists in game 80?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "game"=80;
1-17355408-9
Name the highh points for december 29
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "game_log" WHERE "date"='December 29';
1-17355408-5
Name the high assists for 29 game
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "game"=29;
1-17355408-5
Name the high points for pepsi center 18,611
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "game_log" WHERE "location_attendance"='Pepsi Center 18,611';
1-17355408-5
Name the date for chicago
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "team"='Chicago';
1-17355408-4
Name the record for new orleans
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "game_log" WHERE "team"='New Orleans';
1-17355408-4
Name the high assists for chauncey billups , carmelo anthony (18)
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "high_points"='Chauncey Billups , Carmelo Anthony (18)';
1-17355408-4
What was the final score for @ Orlando?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "team"='@ Orlando';
1-17355408-7
Chauncey Billups (6) had a high assist on what date?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "date" FROM "game_log" WHERE "high_assists"='Chauncey Billups (6)';
1-17355408-7
@ Chicago had a high points of what?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_points" FROM "game_log" WHERE "team"='@ Chicago';
1-17355408-7
High assists belonging to Carmelo Anthony (11) have a record of what?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "record" FROM "game_log" WHERE "high_assists"='Carmelo Anthony (11)';
1-17355408-7
Name the high assists for april 8
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_assists" FROM "game_log" WHERE "date"='April 8';
1-17355628-10
Name the score for charlotte
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "team"='Charlotte';
1-17355628-10
Name the location attendance for chucky atkins , russell westbrook (4)
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "high_assists"='Chucky Atkins , Russell Westbrook (4)';
1-17355628-10
Name the series number directed by richard thorpe written by dee johnson
CREATE TABLE "table1_17355579_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MAX("series_num") FROM "table1_17355579_1" WHERE "directed_by"='Richard Thorpe' AND "written_by"='Dee Johnson';
1-17355579-1
Name the team where the date is november 17
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "date"='November 17';
1-17355716-5
Name the team for november 5
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "team" FROM "game_log" WHERE "date"='November 5';
1-17355716-5
What is the maximum series number what is smaller than season 7.0 and directed by Laura Innes?
CREATE TABLE "table1_17356106_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MAX("series_num") FROM "table1_17356106_1" WHERE "directed_by"='Laura Innes' AND "season_num"<7.0;
1-17356106-1
If Arthur Albert is the director, what is the maximum series number?
CREATE TABLE "table1_17356106_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT MAX("series_num") FROM "table1_17356106_1" WHERE "directed_by"='Arthur Albert';
1-17356106-1
What was the number of seasons that was directed by Joanna Kerns?
CREATE TABLE "table1_17356106_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT COUNT("season_num") FROM "table1_17356106_1" WHERE "directed_by"='Joanna Kerns';
1-17356106-1
For series number 256, what was the original air date?
CREATE TABLE "table1_17356106_1" ( "series_num" real, "season_num" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_17356106_1" WHERE "series_num"=256;
1-17356106-1