question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
How many positions did the car with a final time of +10.8098 finish in?
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 "time_retired"='+10.8098';
1-17244483-1
Darren Manning finished in what position?
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 "driver"='Darren Manning';
1-17244483-1
What was the position for the Josef Kaufmann Racing team?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT "position" FROM "career_summary" WHERE "team"='Josef Kaufmann Racing';
1-17246160-1
How many poles did the player have during the Formula BMW Pacific race?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT MAX("poles") FROM "career_summary" WHERE "series"='Formula BMW Pacific';
1-17246160-1
Which season did he have 0 points and 31st position?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT MAX("season") FROM "career_summary" WHERE "points"=0 AND "position"='31st';
1-17246160-1
How many wins did the player have in the Formula BMW World Final?
CREATE TABLE "career_summary" ( "season" real, "series" text, "team" text, "races" real, "wins" real, "poles" real, "f_laps" real, "podiums" real, "points" real, "position" text );
SELECT "wins" FROM "career_summary" WHERE "series"='Formula BMW World Final';
1-17246160-1
On what date was the episode aired where event 2 was Hang Tough?
CREATE TABLE "episode_events" ( "episode_number" real, "air_date" text, "event_1" text, "event_2" text, "event_3" text, "event_4" text );
SELECT "air_date" FROM "episode_events" WHERE "event_2"='Hang Tough';
1-17257687-1
When event 4 was Whiplash, what was event 2?
CREATE TABLE "episode_events" ( "episode_number" real, "air_date" text, "event_1" text, "event_2" text, "event_3" text, "event_4" text );
SELECT "event_2" FROM "episode_events" WHERE "event_4"='Whiplash';
1-17257687-1
On how many different dates was event 1 Suspension Bridge?
CREATE TABLE "episode_events" ( "episode_number" real, "air_date" text, "event_1" text, "event_2" text, "event_3" text, "event_4" text );
SELECT COUNT("air_date") FROM "episode_events" WHERE "event_1"='Suspension Bridge';
1-17257687-1
On which episode number is event 4 The Wall and event 1 the Pendulum?
CREATE TABLE "episode_events" ( "episode_number" real, "air_date" text, "event_1" text, "event_2" text, "event_3" text, "event_4" text );
SELECT COUNT("episode_number") FROM "episode_events" WHERE "event_4"='The Wall' AND "event_1"='Pendulum';
1-17257687-1
What was event 2 when event 1 was Atlasphere?
CREATE TABLE "episode_events" ( "episode_number" real, "air_date" text, "event_1" text, "event_2" text, "event_3" text, "event_4" text );
SELECT "event_2" FROM "episode_events" WHERE "event_1"='Atlasphere';
1-17257687-1
What is the car number driven by Darren Manning?
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 "car_no" FROM "classification" WHERE "driver"='Darren Manning';
1-17256857-1
Which position earned 50 points?
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 MAX("fin_pos") FROM "classification" WHERE "points"='50';
1-17256857-1
How many drivers on the grid are called Vitor Meira?
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("grid") FROM "classification" WHERE "driver"='Vitor Meira';
1-17256857-1
If the equation is 0 × 9² + 3 × 9 + 3, what is the result?
CREATE TABLE "0_728_throw_3_times" ( "1st_throw" real, "2nd_throw" real, "3rd_throw" real, "equation" text, "result" real );
SELECT MIN("result") FROM "0_728_throw_3_times" WHERE "equation"='0 × 9² + 3 × 9 + 3';
1-17265535-7
If the equation is 6 × 9² + 6 × 9 + 6, what is the 3rd throw?
CREATE TABLE "0_728_throw_3_times" ( "1st_throw" real, "2nd_throw" real, "3rd_throw" real, "equation" text, "result" real );
SELECT MAX("3rd_throw") FROM "0_728_throw_3_times" WHERE "equation"='6 × 9² + 6 × 9 + 6';
1-17265535-7
If the equation is 8 × 9² + 8 × 9 + 8, what is the 2nd throw?
CREATE TABLE "0_728_throw_3_times" ( "1st_throw" real, "2nd_throw" real, "3rd_throw" real, "equation" text, "result" real );
SELECT MIN("2nd_throw") FROM "0_728_throw_3_times" WHERE "equation"='8 × 9² + 8 × 9 + 8';
1-17265535-7
If the equation is 1 × 9² + 4 × 9 + 0, what is the 2nd throw?
CREATE TABLE "0_728_throw_3_times" ( "1st_throw" real, "2nd_throw" real, "3rd_throw" real, "equation" text, "result" real );
SELECT "2nd_throw" FROM "0_728_throw_3_times" WHERE "equation"='1 × 9² + 4 × 9 + 0';
1-17265535-7
If the equation is 6 × 9² + 6 × 9 + 6, what is the 2nd throw?
CREATE TABLE "0_728_throw_3_times" ( "1st_throw" real, "2nd_throw" real, "3rd_throw" real, "equation" text, "result" real );
SELECT MAX("2nd_throw") FROM "0_728_throw_3_times" WHERE "equation"='6 × 9² + 6 × 9 + 6';
1-17265535-7
When they played San Lorenzo, what was the score of the second leg?
CREATE TABLE "round_of_16" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT "2nd_leg" FROM "round_of_16" WHERE "team_num1"='San Lorenzo';
1-17282875-3
When they played Universidad de Chile, what was the score of the first leg?
CREATE TABLE "round_of_16" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT COUNT("1st_leg") FROM "round_of_16" WHERE "team_num2"='Universidad de Chile';
1-17282875-3
Who played San Lorenzo?
CREATE TABLE "round_of_16" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_num2" FROM "round_of_16" WHERE "team_num1"='San Lorenzo';
1-17282875-3
Who played River Plate?
CREATE TABLE "round_of_16" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_num2" FROM "round_of_16" WHERE "team_num1"='River Plate';
1-17282875-3
What was the score on the 1st leg if the team 2 is botafogo?
CREATE TABLE "first_stage" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT COUNT("1st_leg") FROM "first_stage" WHERE "team_num2"='Botafogo';
1-17282875-2
Who played against team 1 Vitória?
CREATE TABLE "first_stage" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_num2" FROM "first_stage" WHERE "team_num1"='Vitória';
1-17282875-2
Who played against team 1 Liverpool?
CREATE TABLE "first_stage" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_num2" FROM "first_stage" WHERE "team_num1"='Liverpool';
1-17282875-2
What was the game's points against Team 2 Deportivo Anzoátegui?
CREATE TABLE "first_stage" ( "team_num1" text, "points" text, "team_num2" text, "1st_leg" text, "2nd_leg" text );
SELECT "points" FROM "first_stage" WHERE "team_num2"='Deportivo Anzoátegui';
1-17282875-2
How many different items appear in the high points column when the location attendance was US Airways Center 18,422?
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_points") FROM "game_log" WHERE "location_attendance"='US Airways Center 18,422';
1-17288825-10
What was the high assists on 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_assists" FROM "game_log" WHERE "date"='April 7';
1-17288825-10
What is the score for the game played on January 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 "score" FROM "game_log" WHERE "date"='January 25';
1-17288825-7
What is the record for the team on January 19?
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"='January 19';
1-17288825-7
How many times did Ron Artest (24) receive the record for high 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 COUNT("record") FROM "game_log" WHERE "high_points"='Ron Artest (24)';
1-17288825-7
At what location and what was the attendance when Rafer Alston (10) achieved 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 "location_attendance" FROM "game_log" WHERE "high_assists"='Rafer Alston (10)';
1-17288825-7
At what game number was the attendance at Conseco Fieldhouse 14,486?
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 MAX("game") FROM "game_log" WHERE "location_attendance"='Conseco Fieldhouse 14,486';
1-17288825-7
What is the number of the game that was played on January 19?
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 MAX("game") FROM "game_log" WHERE "date"='January 19';
1-17288845-7
Name the record for verizon center 20,173
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 "location_attendance"='Verizon Center 20,173';
1-17288845-8
Name the date for score l 89–91 (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 89–91 (OT)';
1-17288845-8
What was the team record when the team was Cleveland?
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"='Cleveland';
1-17288861-5
Name the high assists for l 93–103 (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"='L 93–103 (OT)';
1-17288861-9
What was the date of game 21?
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 "game"=21;
1-17288869-6
What were the results for round of 32 for Nicole Vaidišová?
CREATE TABLE "table1_17289604_38" ( "athlete" text, "event" text, "round_of_64" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text );
SELECT "round_of_32" FROM "table1_17289604_38" WHERE "athlete"='Nicole Vaidišová';
1-17289604-38
How many number of athletes were in round of 64 was llagostera Vives ( esp ) l 6–2, 3–6, 5–7?
CREATE TABLE "table1_17289604_38" ( "athlete" text, "event" text, "round_of_64" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text );
SELECT COUNT("athlete") FROM "table1_17289604_38" WHERE "round_of_64"='Llagostera Vives ( ESP ) L 6–2, 3–6, 5–7';
1-17289604-38
What was round of 16 when in round 32 it was koryttseva ( ukr ) w 2–6, 6–1, 7–5?
CREATE TABLE "table1_17289604_38" ( "athlete" text, "event" text, "round_of_64" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text );
SELECT "round_of_16" FROM "table1_17289604_38" WHERE "round_of_32"='Koryttseva ( UKR ) W 2–6, 6–1, 7–5';
1-17289604-38
What was round of 64 of the singles event when the result of round 16 was did not advance and the athlete was Iveta Benešová?
CREATE TABLE "table1_17289604_38" ( "athlete" text, "event" text, "round_of_64" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text );
SELECT "round_of_64" FROM "table1_17289604_38" WHERE "event"='Singles' AND "round_of_16"='Did not advance' AND "athlete"='Iveta Benešová';
1-17289604-38
What were the quarterfinals in the round of 32 was S williams / V williams ( usa ) l 6–4, 5–7, 1–6?
CREATE TABLE "table1_17289604_38" ( "athlete" text, "event" text, "round_of_64" text, "round_of_32" text, "round_of_16" text, "quarterfinals" text );
SELECT "quarterfinals" FROM "table1_17289604_38" WHERE "round_of_32"='S Williams / V Williams ( USA ) L 6–4, 5–7, 1–6';
1-17289604-38
On what day did Dirk Nowitzki (14) have a high rebound?
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_rebounds"='Dirk Nowitzki (14)';
1-17288869-7
High points earned by Josh Howard (19) resulted in how many high rebounds?
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 "high_points"='Josh Howard (19)';
1-17288869-7
Who had the high assists while Erick Dampier (8) had the high rebounds?
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_rebounds"='Erick Dampier (8)';
1-17288869-7
Who had the high points while Dirk Nowitzki (13) had the high rebounds?
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 "high_rebounds"='Dirk Nowitzki (13)';
1-17288869-7
What was the final record for the game in which Dirk Nowitzki (19) had the high 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 "record" FROM "game_log" WHERE "high_points"='Dirk Nowitzki (19)';
1-17288869-7
Which championship had the final opponents of nathalie dechy andy ram?
CREATE TABLE "mixed_doubles_11_5_6" ( "outcome" text, "year" real, "championship" text, "surface" text, "partner" text, "opponents_in_the_final" text, "score_in_the_final" text );
SELECT "championship" FROM "mixed_doubles_11_5_6" WHERE "opponents_in_the_final"='Nathalie Dechy Andy Ram';
1-1729366-2
What is the upstream speed of the network that costs 39 tl?
CREATE TABLE "turkey" ( "downstream" text, "upstream" text, "bandwidth" text, "price_tl" text, "every_1_gb" text, "max" text );
SELECT "upstream" FROM "turkey" WHERE "price_tl"='39 TL';
1-17304621-14
How many upstream speeds are there for downstream of 20 mbit/s and bandwidth of 40 gb?
CREATE TABLE "turkey" ( "downstream" text, "upstream" text, "bandwidth" text, "price_tl" text, "every_1_gb" text, "max" text );
SELECT COUNT("upstream") FROM "turkey" WHERE "downstream"='20 Mbit/s' AND "bandwidth"='40 GB';
1-17304621-14
What is the upstream speed that you get for 89 tl?
CREATE TABLE "turkey" ( "downstream" text, "upstream" text, "bandwidth" text, "price_tl" text, "every_1_gb" text, "max" text );
SELECT "upstream" FROM "turkey" WHERE "price_tl"='89 TL';
1-17304621-14
What is the bandwidth for downstream of 20 mbit/s for 69 tl?
CREATE TABLE "turkey" ( "downstream" text, "upstream" text, "bandwidth" text, "price_tl" text, "every_1_gb" text, "max" text );
SELECT "bandwidth" FROM "turkey" WHERE "downstream"='20 Mbit/s' AND "price_tl"='69 TL';
1-17304621-14
What was the year when West Manila has a tariff increase of 6.5?
CREATE TABLE "table1_17302440_1" ( "year" real, "west_manila" text, "east_manila" text, "consumer_price_index_2005_100" text, "west_manila_as_a_share_of_1996_real_tariff" text, "east_manila_as_a_share_of_1996_real_tariff" text );
SELECT "year" FROM "table1_17302440_1" WHERE "west_manila"='6.5';
1-17302440-1
What was East Manila's share of 1996 real tariff when its Consumer Price Index is 119.4?
CREATE TABLE "table1_17302440_1" ( "year" real, "west_manila" text, "east_manila" text, "consumer_price_index_2005_100" text, "west_manila_as_a_share_of_1996_real_tariff" text, "east_manila_as_a_share_of_1996_real_tariff" text );
SELECT "east_manila_as_a_share_of_1996_real_tariff" FROM "table1_17302440_1" WHERE "consumer_price_index_2005_100"='119.4';
1-17302440-1
What was West Manila's tariff increase when its CPI is 60.6?
CREATE TABLE "table1_17302440_1" ( "year" real, "west_manila" text, "east_manila" text, "consumer_price_index_2005_100" text, "west_manila_as_a_share_of_1996_real_tariff" text, "east_manila_as_a_share_of_1996_real_tariff" text );
SELECT "west_manila" FROM "table1_17302440_1" WHERE "consumer_price_index_2005_100"='60.6';
1-17302440-1
What was West Manila's tariff increase when its CPI is 119.4?
CREATE TABLE "table1_17302440_1" ( "year" real, "west_manila" text, "east_manila" text, "consumer_price_index_2005_100" text, "west_manila_as_a_share_of_1996_real_tariff" text, "east_manila_as_a_share_of_1996_real_tariff" text );
SELECT "west_manila" FROM "table1_17302440_1" WHERE "consumer_price_index_2005_100"='119.4';
1-17302440-1
What was the CPI of West Manila when its share of 1996 real tariff is 189%?
CREATE TABLE "table1_17302440_1" ( "year" real, "west_manila" text, "east_manila" text, "consumer_price_index_2005_100" text, "west_manila_as_a_share_of_1996_real_tariff" text, "east_manila_as_a_share_of_1996_real_tariff" text );
SELECT "consumer_price_index_2005_100" FROM "table1_17302440_1" WHERE "west_manila_as_a_share_of_1996_real_tariff"='189%';
1-17302440-1
What was West Manila's share of 1996 real tariff when it CPI was 92.9?
CREATE TABLE "table1_17302440_1" ( "year" real, "west_manila" text, "east_manila" text, "consumer_price_index_2005_100" text, "west_manila_as_a_share_of_1996_real_tariff" text, "east_manila_as_a_share_of_1996_real_tariff" text );
SELECT "west_manila_as_a_share_of_1996_real_tariff" FROM "table1_17302440_1" WHERE "consumer_price_index_2005_100"='92.9';
1-17302440-1
Of the times the Broncos played the Cincinnati Bengals, what was the highest attendance?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "record" text, "attendance" real );
SELECT MAX("attendance") FROM "regular_season" WHERE "opponent"='Cincinnati Bengals';
1-17294353-1
When did the Broncos play the Miami Dolphins?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "record" text, "attendance" real );
SELECT "date" FROM "regular_season" WHERE "opponent"='Miami Dolphins';
1-17294353-1
In the game with an attendance of 18304, what was the final score?
CREATE TABLE "regular_season" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "record" text, "attendance" real );
SELECT "result" FROM "regular_season" WHERE "attendance"=18304;
1-17294353-1
How many pressure figures are given for the .380 acp cartridge?
CREATE TABLE "38_comparisons" ( "cartridge" text, "bullet_weight" text, "muzzle_velocity" text, "muzzle_energy" text, "max_pressure" text );
SELECT COUNT("max_pressure") FROM "38_comparisons" WHERE "cartridge"='.380 ACP';
1-173103-1
What is the max pressure of the cartridge where the muzzle energy is 201ft•lbf (273 j)?
CREATE TABLE "38_comparisons" ( "cartridge" text, "bullet_weight" text, "muzzle_velocity" text, "muzzle_energy" text, "max_pressure" text );
SELECT "max_pressure" FROM "38_comparisons" WHERE "muzzle_energy"='201ft•lbf (273 J)';
1-173103-1
What is the max pressure of the .38 long colt cartridge?
CREATE TABLE "38_comparisons" ( "cartridge" text, "bullet_weight" text, "muzzle_velocity" text, "muzzle_energy" text, "max_pressure" text );
SELECT "max_pressure" FROM "38_comparisons" WHERE "cartridge"='.38 Long Colt';
1-173103-1
What is the bullet weight when the max pressure is 12,000 cup?
CREATE TABLE "38_comparisons" ( "cartridge" text, "bullet_weight" text, "muzzle_velocity" text, "muzzle_energy" text, "max_pressure" text );
SELECT "bullet_weight" FROM "38_comparisons" WHERE "max_pressure"='12,000 CUP';
1-173103-1
What are the scores made by Charlotte team
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-17311759-4
Who made highest assists when high rebounds was Al Horford (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 "high_assists" FROM "game_log" WHERE "high_rebounds"='Al Horford (17)';
1-17311759-4
Give the score when high rebounds was zaza pachulia (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 "score" FROM "game_log" WHERE "high_rebounds"='Zaza Pachulia (8)';
1-17311759-4
Name the gs for points being 12.1
CREATE TABLE "external_links" ( "season" text, "games" real, "gs" real, "points" text, "rebounds" text, "assists" text, "blocks" text, "steals" text, "turnovers" text );
SELECT "gs" FROM "external_links" WHERE "points"='12.1';
1-17309500-1
Name the assists for 157 games
CREATE TABLE "external_links" ( "season" text, "games" real, "gs" real, "points" text, "rebounds" text, "assists" text, "blocks" text, "steals" text, "turnovers" text );
SELECT "assists" FROM "external_links" WHERE "games"=157;
1-17309500-1
Name the steals for season 2007/2008
CREATE TABLE "external_links" ( "season" text, "games" real, "gs" real, "points" text, "rebounds" text, "assists" text, "blocks" text, "steals" text, "turnovers" text );
SELECT "steals" FROM "external_links" WHERE "season"='2007/2008';
1-17309500-1
Name the total number of assists for 77 blocks
CREATE TABLE "external_links" ( "season" text, "games" real, "gs" real, "points" text, "rebounds" text, "assists" text, "blocks" text, "steals" text, "turnovers" text );
SELECT COUNT("assists") FROM "external_links" WHERE "blocks"='77';
1-17309500-1
When mike bibby (8) had the highest amount of assists what is the record?
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"='Mike Bibby (8)';
1-17311759-9
When mike bibby (9) has the highest amount of assists what is the location and 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 "high_assists"='Mike Bibby (9)';
1-17311759-9
Who was the team played on January 23?
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 23';
1-17311759-6
Where was the game held and what was the attendance when they played 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 "location_attendance" FROM "game_log" WHERE "team"='Orlando';
1-17311759-6
In what game did Miami 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 MAX("game") FROM "game_log" WHERE "team"='Charlotte';
1-17311783-8
Who had the high points on February 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 "high_points" FROM "game_log" WHERE "date"='February 6';
1-17311797-8
What is the highest number of laps led with 16 points?
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 MAX("laps_led") FROM "classification" WHERE "points"='16';
1-17319931-1
How many drivers were there for Samax Motorsport?
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("driver") FROM "classification" WHERE "team"='SAMAX Motorsport';
1-17319931-1
What is the team whose driver Jeff Simmons?
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 "team" FROM "classification" WHERE "driver"='Jeff Simmons';
1-17319931-1
How many drivers where there when the time/retired +3 laps and points were 24?
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("driver") FROM "classification" WHERE "time_retired"='+3 Laps' AND "points"='24';
1-17319931-1
What is the highest number of laps for Darren Manning?
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 MAX("laps") FROM "classification" WHERE "driver"='Darren Manning';
1-17319931-1
How many car numbers were recorded when the time/retired is +4.0019?
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("car_no") FROM "classification" WHERE "time_retired"='+4.0019';
1-17319931-1
What game number was played on January 28?
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"='January 28';
1-17311812-7
What is the high amount of points on February 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_points" FROM "game_log" WHERE "date"='February 11';
1-17311812-8
Who has the most assists on Denver?
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"='Denver';
1-17311812-8
Name the location attendance for april 13
CREATE TABLE "table1_17322817_10" ( "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 "table1_17322817_10" WHERE "date"='April 13';
1-17322817-10
Name the location attendance for april 5
CREATE TABLE "table1_17322817_10" ( "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 "table1_17322817_10" WHERE "date"='April 5';
1-17322817-10
Who had the high points on December 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 "high_points" FROM "game_log" WHERE "date"='December 17';
1-17323042-6
How many scores are listed for the game against Houston
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("score") FROM "game_log" WHERE "team"='Houston';
1-17323042-7
What was the location and attendance of the game when High Assists were Andre Miller (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 "location_attendance" FROM "game_log" WHERE "high_assists"='Andre Miller (7)';
1-17323042-11
Who was the High Assist in game 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_assists" FROM "game_log" WHERE "game"=1;
1-17323042-11
Who was the High Assist when the High Rebounds was andre iguodala (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 "high_rebounds"='Andre Iguodala (8)';
1-17323042-11
What was the W-L record when HIgh Points was andre miller (30)?
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"='Andre Miller (30)';
1-17323042-11
What was the score and game outcome when High Points was andre miller (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 "score" FROM "game_log" WHERE "high_points"='Andre Miller (17)';
1-17323042-11
How many games was High Points andre iguodala (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("game") FROM "game_log" WHERE "high_points"='Andre Iguodala (29)';
1-17323042-11