question
stringlengths 12
244
| create_table_statement
stringlengths 97
895
| sql_query
stringlengths 27
479
| wiki_sql_table_id
stringlengths 8
14
|
---|---|---|---|
When the blank ends at 1, what is the PA? | CREATE TABLE "standings" (
"province" text,
"skip" text,
"w" real,
"l" real,
"pf" real,
"pa" real,
"ends_won" real,
"ends_lost" real,
"blank_ends" real,
"stolen_ends" real,
"shot_pct" real
); | SELECT COUNT("pa") FROM "standings" WHERE "blank_ends"=1; | 1-17012578-6 |
How many times did the team play 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 COUNT("record") FROM "game_log" WHERE "team"='Charlotte'; | 1-17058116-6 |
What day did the team play 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 "date" FROM "game_log" WHERE "team"='Charlotte'; | 1-17058116-6 |
When was the game with score l 99–107 (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 "date" FROM "game_log" WHERE "score"='L 99–107 (OT)'; | 1-17058116-7 |
Where was the game with record 20–23 and how many people attended it | 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 "record"='20–23'; | 1-17058116-7 |
Who scored highest rebounds high points is charlie villanueva (32) | 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 "high_points"='Charlie Villanueva (32)'; | 1-17058116-7 |
What is the score of game 46 | 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 "game"=46; | 1-17058116-7 |
Who scored the high points on the date November 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_points" FROM "game_log" WHERE "date"='November 2'; | 1-17058116-5 |
In how many locations did Game 13 take place? | 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 "game"=13; | 1-17058116-5 |
Where was the game that took place in November 21 located and how many attended? | 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"='November 21'; | 1-17058116-5 |
Name the high reobounds for april 7 | 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"='April 7'; | 1-17058178-11 |
How many games was game 43? | 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 "game"=43; | 1-17058151-7 |
Name the total number of high rebounds for february 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 COUNT("high_rebounds") FROM "game_log" WHERE "date"='February 10'; | 1-17058151-8 |
Name the record for december 6 | 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 "date"='December 6'; | 1-17058151-6 |
What was the final score in game 38? | 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 "game"=38; | 1-17058178-8 |
Who did the Trail Blazers play 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 "team" FROM "game_log" WHERE "date"='January 2'; | 1-17058178-8 |
On how many dates did the Timberwolves play Phoenix? | CREATE TABLE "table1_17058226_10" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("date") FROM "table1_17058226_10" WHERE "team"='Phoenix'; | 1-17058226-10 |
What was the Timberwolves' record on April 3? | CREATE TABLE "table1_17058226_10" (
"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 "table1_17058226_10" WHERE "date"='April 3'; | 1-17058226-10 |
Where are all of Utah's games held and how many have attended? | 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 "team"='Utah'; | 1-17058226-8 |
Who performed all the high rebounds when craig smith (4) was the lead for high assists? | 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 "high_assists"='Craig Smith (4)'; | 1-17058226-5 |
Who had all the high rebounds when kevin love (20) scored the highest points? | 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 "high_points"='Kevin Love (20)'; | 1-17058226-5 |
What opposing team was playing when sebastian telfair (7) had the highest assists? | 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 "high_assists"='Sebastian Telfair (7)'; | 1-17058226-5 |
Name the score for january 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 "score" FROM "game_log" WHERE "date"='January 26'; | 1-17058226-7 |
Who did the high points in the game played on April 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 "high_points" FROM "game_log" WHERE "date"='April 12'; | 1-17060277-10 |
What is the constructor when the Q1 order is 4? | CREATE TABLE "qualifying" (
"pos" text,
"no" real,
"driver" text,
"constructor" text,
"q1_order" real,
"q1_time" text,
"q1_pos" real,
"q1_q2_time" text
); | SELECT "constructor" FROM "qualifying" WHERE "q1_order"=4; | 1-1706942-1 |
What is the Q1 order for Felipe Massa? | CREATE TABLE "qualifying" (
"pos" text,
"no" real,
"driver" text,
"constructor" text,
"q1_order" real,
"q1_time" text,
"q1_pos" real,
"q1_q2_time" text
); | SELECT MAX("q1_order") FROM "qualifying" WHERE "driver"='Felipe Massa'; | 1-1706942-1 |
What is the Q1 time for the driver with Q1 order of 6? | CREATE TABLE "qualifying" (
"pos" text,
"no" real,
"driver" text,
"constructor" text,
"q1_order" real,
"q1_time" text,
"q1_pos" real,
"q1_q2_time" text
); | SELECT "q1_time" FROM "qualifying" WHERE "q1_order"=6; | 1-1706942-1 |
How many Q1 figures are given for Alexander Wurz? | CREATE TABLE "qualifying" (
"pos" text,
"no" real,
"driver" text,
"constructor" text,
"q1_order" real,
"q1_time" text,
"q1_pos" real,
"q1_q2_time" text
); | SELECT COUNT("q1_order") FROM "qualifying" WHERE "driver"='Alexander Wurz'; | 1-1706942-1 |
Who all had the most assists in game 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 "high_assists" FROM "game_log" WHERE "game"=12; | 1-17060277-5 |
Which position offers winnings of $4,228,889? | CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT "position" FROM "nascar_sprint_cup_series" WHERE "winnings"='$4,228,889'; | 1-1708014-1 |
How many poles did team #14 ginn racing have? | CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT "poles" FROM "nascar_sprint_cup_series" WHERE "team_s"='#14 Ginn Racing'; | 1-1708014-1 |
When the poles are 0 and the position is 14th, how much are the winnings? | CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT "winnings" FROM "nascar_sprint_cup_series" WHERE "poles"=0 AND "position"='14th'; | 1-1708014-1 |
Which start won $1,301,370? | CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT "starts" FROM "nascar_sprint_cup_series" WHERE "winnings"='$1,301,370'; | 1-1708014-1 |
For team #40 chip ganassi racing which top 5 is the highest where top 10 is 5? | CREATE TABLE "nascar_sprint_cup_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT MAX("top_5") FROM "nascar_sprint_cup_series" WHERE "top_10"=5 AND "team_s"='#40 Chip Ganassi Racing'; | 1-1708014-1 |
what is the posisiotn where the start is 3? | CREATE TABLE "nascar_nationwide_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT "position" FROM "nascar_nationwide_series" WHERE "starts"=3; | 1-1708014-2 |
what is the team where winnings is $81,690? | CREATE TABLE "nascar_nationwide_series" (
"year" real,
"starts" real,
"wins" real,
"top_5" real,
"top_10" real,
"poles" real,
"avg_start" text,
"avg_finish" text,
"winnings" text,
"position" text,
"team_s" text
); | SELECT "team_s" FROM "nascar_nationwide_series" WHERE "winnings"='$81,690'; | 1-1708014-2 |
What was the attendance of the Indiana 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 "location_attendance" FROM "game_log" WHERE "team"='Indiana'; | 1-17080868-7 |
What is the trans 2 duration if the biking stage is covered within 58:20? | CREATE TABLE "triathlon" (
"athlete" text,
"event" text,
"swim_1_5km" text,
"trans_1" text,
"bike_40km" text,
"trans_2" text,
"run_10km" text,
"total_time" text,
"rank" real
); | SELECT "trans_2" FROM "triathlon" WHERE "bike_40km"='58:20'; | 1-17085947-32 |
What is the trans 2 duration if the total time is 1:51:19.45? | CREATE TABLE "triathlon" (
"athlete" text,
"event" text,
"swim_1_5km" text,
"trans_1" text,
"bike_40km" text,
"trans_2" text,
"run_10km" text,
"total_time" text,
"rank" real
); | SELECT "trans_2" FROM "triathlon" WHERE "total_time"='1:51:19.45'; | 1-17085947-32 |
What was the duration of Daniela Ryf's swimming stage? | CREATE TABLE "triathlon" (
"athlete" text,
"event" text,
"swim_1_5km" text,
"trans_1" text,
"bike_40km" text,
"trans_2" text,
"run_10km" text,
"total_time" text,
"rank" real
); | SELECT "swim_1_5km" FROM "triathlon" WHERE "athlete"='Daniela Ryf'; | 1-17085947-32 |
How many athletes completed a trans 1 within 0:26? | CREATE TABLE "triathlon" (
"athlete" text,
"event" text,
"swim_1_5km" text,
"trans_1" text,
"bike_40km" text,
"trans_2" text,
"run_10km" text,
"total_time" text,
"rank" real
); | SELECT COUNT("athlete") FROM "triathlon" WHERE "trans_1"='0:26'; | 1-17085947-32 |
Who was the athlete that covered biking within 58:52? | CREATE TABLE "triathlon" (
"athlete" text,
"event" text,
"swim_1_5km" text,
"trans_1" text,
"bike_40km" text,
"trans_2" text,
"run_10km" text,
"total_time" text,
"rank" real
); | SELECT "athlete" FROM "triathlon" WHERE "bike_40km"='58:52'; | 1-17085947-32 |
All high points are team new york. | 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"='New York'; | 1-17080868-8 |
February 12 is the date for all location attendance. | 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"='February 12'; | 1-17080868-8 |
54 is the game where location attendance are. | 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 "game"=54; | 1-17080868-8 |
All high points were record by corey maggette (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 "record" FROM "game_log" WHERE "high_points"='Corey Maggette (25)'; | 1-17080868-8 |
what is the total number of attendance where the date is 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 COUNT("location_attendance") FROM "game_log" WHERE "date"='December 29'; | 1-17080868-6 |
What was the manner in which Petrik Sander departed? | 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 "manner_of_departure" FROM "managerial_changes" WHERE "outgoing_manager"='Petrik Sander'; | 1-17085981-2 |
What was the manner of departure for Edgar Schmitt of the Stuttgarter Kickers? | 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 "manner_of_departure" FROM "managerial_changes" WHERE "team"='Stuttgarter Kickers' AND "outgoing_manager"='Edgar Schmitt'; | 1-17085981-2 |
What was the date of appointment when Jürgen Kohler was the outgoing manager? | 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 "date_of_appointment" FROM "managerial_changes" WHERE "outgoing_manager"='Jürgen Kohler'; | 1-17085981-2 |
How many appointment dates were recorded when Jürgen Kohler was the replaced by? | 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("date_of_appointment") FROM "managerial_changes" WHERE "replaced_by"='Jürgen Kohler'; | 1-17085981-2 |
What are the swimsuit scores of participants with score 9.366 in interview | CREATE TABLE "final_competition_score" (
"country" text,
"preliminary" text,
"interview" text,
"swimsuit" text,
"evening_gown" text,
"average" text
); | SELECT "swimsuit" FROM "final_competition_score" WHERE "interview"='9.366'; | 1-17088705-2 |
State average scores of participants from arizona | CREATE TABLE "final_competition_score" (
"country" text,
"preliminary" text,
"interview" text,
"swimsuit" text,
"evening_gown" text,
"average" text
); | SELECT "average" FROM "final_competition_score" WHERE "country"='Arizona'; | 1-17088705-2 |
Number of participants with a score 8.895 in preliminary | CREATE TABLE "final_competition_score" (
"country" text,
"preliminary" text,
"interview" text,
"swimsuit" text,
"evening_gown" text,
"average" text
); | SELECT COUNT("interview") FROM "final_competition_score" WHERE "preliminary"='8.895'; | 1-17088705-2 |
Evening gown scores of participants with 8.988 swimsuit score | CREATE TABLE "final_competition_score" (
"country" text,
"preliminary" text,
"interview" text,
"swimsuit" text,
"evening_gown" text,
"average" text
); | SELECT "evening_gown" FROM "final_competition_score" WHERE "swimsuit"='8.988'; | 1-17088705-2 |
What are the average scores of participants with 9.226 in evening gown | CREATE TABLE "final_competition_score" (
"country" text,
"preliminary" text,
"interview" text,
"swimsuit" text,
"evening_gown" text,
"average" text
); | SELECT "average" FROM "final_competition_score" WHERE "evening_gown"='9.226'; | 1-17088705-2 |
Give swimsuit scores of participants 8.847 in preliminary | CREATE TABLE "final_competition_score" (
"country" text,
"preliminary" text,
"interview" text,
"swimsuit" text,
"evening_gown" text,
"average" text
); | SELECT "swimsuit" FROM "final_competition_score" WHERE "preliminary"='8.847'; | 1-17088705-2 |
What is the official name of the land with an area of 276.84 km2? | CREATE TABLE "albert_county_new_brunswick" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "official_name" FROM "albert_county_new_brunswick" WHERE "area_km_2"='276.84'; | 1-170958-2 |
What is the total number of population in the land with an area of 149.32 km2? | CREATE TABLE "albert_county_new_brunswick" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT COUNT("population") FROM "albert_county_new_brunswick" WHERE "area_km_2"='149.32'; | 1-170958-2 |
What is the maximum population of the land with an area of 276.84 km2? | CREATE TABLE "albert_county_new_brunswick" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT MAX("population") FROM "albert_county_new_brunswick" WHERE "area_km_2"='276.84'; | 1-170958-2 |
What is the land area of Hopewell parish in km2? | CREATE TABLE "albert_county_new_brunswick" (
"official_name" text,
"status" text,
"area_km_2" text,
"population" real,
"census_ranking" text
); | SELECT "area_km_2" FROM "albert_county_new_brunswick" WHERE "official_name"='Hopewell'; | 1-170958-2 |
Name the march 27-29 for november 3 being 133 | CREATE TABLE "table1_1708610_3" (
"june_10_11" text,
"march_27_29" text,
"january_15_16" text,
"november_3" text,
"august_21_22" text
); | SELECT "march_27_29" FROM "table1_1708610_3" WHERE "november_3"='133'; | 1-1708610-3 |
Name march 27-29 where january 15-16 is january 15, 1991 | CREATE TABLE "table1_1708610_3" (
"june_10_11" text,
"march_27_29" text,
"january_15_16" text,
"november_3" text,
"august_21_22" text
); | SELECT "march_27_29" FROM "table1_1708610_3" WHERE "january_15_16"='January 15, 1991'; | 1-1708610-3 |
Name the january 15-16 where march 27-29 where march 29, 2006 | CREATE TABLE "table1_1708610_3" (
"june_10_11" text,
"march_27_29" text,
"january_15_16" text,
"november_3" text,
"august_21_22" text
); | SELECT "january_15_16" FROM "table1_1708610_3" WHERE "march_27_29"='March 29, 2006'; | 1-1708610-3 |
Name the number of location attendance for l 141–143 (ot) | CREATE TABLE "table1_17102076_10" (
"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 "table1_17102076_10" WHERE "score"='L 141–143 (OT)'; | 1-17102076-10 |
Name the record for april 1 | CREATE TABLE "table1_17102076_10" (
"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 "table1_17102076_10" WHERE "date"='April 1'; | 1-17102076-10 |
Name the high assists for score being l 98–118 (ot) | CREATE TABLE "table1_17102076_10" (
"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 "table1_17102076_10" WHERE "score"='L 98–118 (OT)'; | 1-17102076-10 |
Name the least game for arco arena 13,330 | CREATE TABLE "table1_17102076_10" (
"game" real,
"date" text,
"team" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT MIN("game") FROM "table1_17102076_10" WHERE "location_attendance"='ARCO Arena 13,330'; | 1-17102076-10 |
Name the high rebounds for game 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 "high_rebounds" FROM "game_log" WHERE "game"=11; | 1-17102076-5 |
Name the high points for score being l 92–100 (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_points" FROM "game_log" WHERE "score"='L 92–100 (OT)'; | 1-17102076-5 |
Name the team for arco arena 13,685 | 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 "location_attendance"='ARCO Arena 13,685'; | 1-17102076-5 |
What was the score of game 35? | 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 "game"=35; | 1-17102076-7 |
Name the location attendance for score of 65-72 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "regular_season" WHERE "score"='65-72'; | 1-17103645-10 |
Name the record for july 18 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "regular_season" WHERE "date"='July 18'; | 1-17103645-10 |
Name the number of high assists for july 1 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_assists") FROM "regular_season" WHERE "date"='July 1'; | 1-17103645-10 |
Name the score when game is 19 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "regular_season" WHERE "game"=19; | 1-17103645-10 |
What is the result when team 1 is ICL Pakistan? | CREATE TABLE "table1_17103566_1" (
"match_number" real,
"date" text,
"venue" text,
"team_1" text,
"team_2" text,
"result" text,
"man_of_the_match" text
); | SELECT "result" FROM "table1_17103566_1" WHERE "team_1"='ICL Pakistan'; | 1-17103566-1 |
What is the match number where the result is ICL World by 8 wickets? | CREATE TABLE "table1_17103566_1" (
"match_number" real,
"date" text,
"venue" text,
"team_1" text,
"team_2" text,
"result" text,
"man_of_the_match" text
); | SELECT "match_number" FROM "table1_17103566_1" WHERE "result"='ICL World by 8 wickets'; | 1-17103566-1 |
What is team 2 where the result is ICL world by 8 wickets? | CREATE TABLE "table1_17103566_1" (
"match_number" real,
"date" text,
"venue" text,
"team_1" text,
"team_2" text,
"result" text,
"man_of_the_match" text
); | SELECT "team_2" FROM "table1_17103566_1" WHERE "result"='ICL World by 8 wickets'; | 1-17103566-1 |
Who is man of the match when Team 1 is ICL Pakistan? | CREATE TABLE "table1_17103566_1" (
"match_number" real,
"date" text,
"venue" text,
"team_1" text,
"team_2" text,
"result" text,
"man_of_the_match" text
); | SELECT "man_of_the_match" FROM "table1_17103566_1" WHERE "team_1"='ICL Pakistan'; | 1-17103566-1 |
How many dates have a Match number of 5? | CREATE TABLE "table1_17103566_1" (
"match_number" real,
"date" text,
"venue" text,
"team_1" text,
"team_2" text,
"result" text,
"man_of_the_match" text
); | SELECT COUNT("date") FROM "table1_17103566_1" WHERE "match_number"=5; | 1-17103566-1 |
Who is man of the match for match number 5? | CREATE TABLE "table1_17103566_1" (
"match_number" real,
"date" text,
"venue" text,
"team_1" text,
"team_2" text,
"result" text,
"man_of_the_match" text
); | SELECT "man_of_the_match" FROM "table1_17103566_1" WHERE "match_number"=5; | 1-17103566-1 |
With a score of 68-85, what is the location and attendance? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "regular_season" WHERE "score"='68-85'; | 1-17103729-7 |
Name the location of 64-74 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "regular_season" WHERE "score"='64-74'; | 1-17103729-8 |
Name the score for game for 25 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "regular_season" WHERE "game"=25; | 1-17103729-8 |
Name the record for attendance location of palace of auburn hills 15,210 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "regular_season" WHERE "location_attendance"='Palace of Auburn Hills 15,210'; | 1-17103729-8 |
Name the high rebounds for score of 64-74 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT COUNT("high_rebounds") FROM "regular_season" WHERE "score"='64-74'; | 1-17103729-8 |
Namethe score for july 16 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "regular_season" WHERE "date"='July 16'; | 1-17103729-8 |
Which people had the best 10-year period when Fischer had best 15-year period? | CREATE TABLE "moves_played_compared_with_computer_choi" (
"position" real,
"best_year" text,
"best_2_year_period" text,
"best_3_year_period" text,
"best_5_year_period" text,
"best_10_year_period" text,
"best_15_year_period" text
); | SELECT "best_10_year_period" FROM "moves_played_compared_with_computer_choi" WHERE "best_15_year_period"='Fischer'; | 1-1710426-2 |
Which people had the best 10-year period when Capablanca had the best 15-year period? | CREATE TABLE "moves_played_compared_with_computer_choi" (
"position" real,
"best_year" text,
"best_2_year_period" text,
"best_3_year_period" text,
"best_5_year_period" text,
"best_10_year_period" text,
"best_15_year_period" text
); | SELECT "best_10_year_period" FROM "moves_played_compared_with_computer_choi" WHERE "best_15_year_period"='Capablanca'; | 1-1710426-2 |
Name the record for june 7 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "regular_season" WHERE "date"='June 7'; | 1-17104539-9 |
Name the date for the score of w 83-69 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "date" FROM "regular_season" WHERE "score"='W 83-69'; | 1-17104539-9 |
Name the record for score of w 76-67 | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "record" FROM "regular_season" WHERE "score"='W 76-67'; | 1-17104539-9 |
What are the scores for games played on september 9? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "regular_season" WHERE "date"='September 9'; | 1-17104539-12 |
What was the score of the game played when the team was 16-17? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "score" FROM "regular_season" WHERE "record"='16-17'; | 1-17104539-12 |
What was the location and where did the team play game number 32? | CREATE TABLE "regular_season" (
"game" real,
"date" text,
"opponent" text,
"score" text,
"high_points" text,
"high_rebounds" text,
"high_assists" text,
"location_attendance" text,
"record" text
); | SELECT "location_attendance" FROM "regular_season" WHERE "game"=32; | 1-17104539-12 |
What is every 5-year peek with a when Anatoly Karpov, 2820 is 15-year peak? | CREATE TABLE "chessmetrics" (
"rank" real,
"1_year_peak" text,
"5_year_peak" text,
"10_year_peak" text,
"15_year_peak" text,
"20_year_peak" text
); | SELECT "5_year_peak" FROM "chessmetrics" WHERE "15_year_peak"='Anatoly Karpov, 2820'; | 1-1710426-1 |
What is the highest rank when Garry Kasparov, 2879 is the 1-year peak? | CREATE TABLE "chessmetrics" (
"rank" real,
"1_year_peak" text,
"5_year_peak" text,
"10_year_peak" text,
"15_year_peak" text,
"20_year_peak" text
); | SELECT MAX("rank") FROM "chessmetrics" WHERE "1_year_peak"='Garry Kasparov, 2879'; | 1-1710426-1 |
What is every 5-year peak when Emanuel Lasker, 2847 is the 10-year peak? | CREATE TABLE "chessmetrics" (
"rank" real,
"1_year_peak" text,
"5_year_peak" text,
"10_year_peak" text,
"15_year_peak" text,
"20_year_peak" text
); | SELECT "5_year_peak" FROM "chessmetrics" WHERE "10_year_peak"='Emanuel Lasker, 2847'; | 1-1710426-1 |
What is the highest rank when Anatoly Karpov, 2820 is the 15-year peak? | CREATE TABLE "chessmetrics" (
"rank" real,
"1_year_peak" text,
"5_year_peak" text,
"10_year_peak" text,
"15_year_peak" text,
"20_year_peak" text
); | SELECT MAX("rank") FROM "chessmetrics" WHERE "15_year_peak"='Anatoly Karpov, 2820'; | 1-1710426-1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.