question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What was the college team of the player whose former WNBA team was the Cleveland Rockers?
CREATE TABLE "expansion_draft_selections" ( "pick" real, "player" text, "nationality" text, "new_wnba_team" text, "former_wnba_team" text, "college_country_team" text );
SELECT "college_country_team" FROM "expansion_draft_selections" WHERE "former_wnba_team"='cleveland rockers';
2-17308269-2
What nationality was the player whose college team was Georgia Tech?
CREATE TABLE "expansion_draft_selections" ( "pick" real, "player" text, "nationality" text, "new_wnba_team" text, "former_wnba_team" text, "college_country_team" text );
SELECT "nationality" FROM "expansion_draft_selections" WHERE "college_country_team"='georgia tech';
2-17308269-2
What was the new WNBA team of the player selected with a pick over 7?
CREATE TABLE "expansion_draft_selections" ( "pick" real, "player" text, "nationality" text, "new_wnba_team" text, "former_wnba_team" text, "college_country_team" text );
SELECT "new_wnba_team" FROM "expansion_draft_selections" WHERE "pick">7;
2-17308269-2
Which player had a pick under 6 and a new WNBA team of the Minnesota Lynx?
CREATE TABLE "expansion_draft_selections" ( "pick" real, "player" text, "nationality" text, "new_wnba_team" text, "former_wnba_team" text, "college_country_team" text );
SELECT "player" FROM "expansion_draft_selections" WHERE "pick"<6 AND "new_wnba_team"='minnesota lynx';
2-17308269-2
Billy Ray Brown plays for what country?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "country" FROM "third_round" WHERE "player"='billy ray brown';
2-17129548-5
The country of Spain has what score?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "score" FROM "third_round" WHERE "country"='spain';
2-17129548-5
The golfer from the United states with a score of 72-70-69=211 is in what place?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "place" FROM "third_round" WHERE "country"='united states' AND "score"='72-70-69=211';
2-17129548-5
The golfer Jeff Sluman golfs for what country?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "country" FROM "third_round" WHERE "player"='jeff sluman';
2-17129548-5
Mike Reid from the United States has what score?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "score" FROM "third_round" WHERE "country"='united states' AND "player"='mike reid';
2-17129548-5
What player has 71-72-66=209 as the score?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "player" FROM "third_round" WHERE "score"='71-72-66=209';
2-17231125-6
What to par has 7 as the place?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "to_par" FROM "third_round" WHERE "place"='7';
2-17231125-6
What player has 72-67-71=210 as the score?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "player" FROM "third_round" WHERE "score"='72-67-71=210';
2-17231125-6
What to par has t5 as the place, with larry mize as the player?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "to_par" FROM "third_round" WHERE "place"='t5' AND "player"='larry mize';
2-17231125-6
What player has t5 as the place?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "player" FROM "third_round" WHERE "place"='t5';
2-17231125-6
What score has fred couples as the player?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "score" FROM "third_round" WHERE "player"='fred couples';
2-17231125-6
On what Date in Stade Leopold Senghor, Dakar was the Score 4–0?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "date" FROM "international_goals" WHERE "score"='4–0' AND "venue"='stade leopold senghor, dakar';
2-1692005-3
Who has the highest assists on april 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 "high_assists" FROM "game_log" WHERE "date"='april 28';
2-17140608-11
What was the name of the player from Olympiacos in 2008?
CREATE TABLE "men_s_indoor_tournament" ( "name" text, "height" text, "weight" text, "spike" text, "2008_club" text );
SELECT "name" FROM "men_s_indoor_tournament" WHERE "2008_club"='olympiacos';
2-16574235-23
Who played for Olympiacos in 2008?
CREATE TABLE "men_s_indoor_tournament" ( "name" text, "height" text, "weight" text, "spike" text, "2008_club" text );
SELECT "name" FROM "men_s_indoor_tournament" WHERE "2008_club"='olympiacos';
2-16574235-23
What is Points, when Series is Queensland Formula Ford Championship, and when Position is 1st?
CREATE TABLE "formula_3_results_summary" ( "season" real, "series" text, "points" text, "position" text, "driver" text );
SELECT "points" FROM "formula_3_results_summary" WHERE "series"='queensland formula ford championship' AND "position"='1st';
2-16351380-1
What is Driver, when Position is 2nd, and when Season is 2001?
CREATE TABLE "formula_3_results_summary" ( "season" real, "series" text, "points" text, "position" text, "driver" text );
SELECT "driver" FROM "formula_3_results_summary" WHERE "position"='2nd' AND "season"=2001;
2-16351380-1
What is Position, when Series is Queensland Formula Ford Championship, when Season is after 2001, and when Points is 234?
CREATE TABLE "formula_3_results_summary" ( "season" real, "series" text, "points" text, "position" text, "driver" text );
SELECT "position" FROM "formula_3_results_summary" WHERE "series"='queensland formula ford championship' AND "season">2001 AND "points"='234';
2-16351380-1
What is Series, when Season is 2007?
CREATE TABLE "formula_3_results_summary" ( "season" real, "series" text, "points" text, "position" text, "driver" text );
SELECT "series" FROM "formula_3_results_summary" WHERE "season"=2007;
2-16351380-1
What was the Attendance on September 26, 1971?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT AVG("attendance") FROM "schedule" WHERE "date"='september 26, 1971';
2-16710925-2
Who was the opponent before week 12, on November 11, 1990?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "week"<12 AND "date"='november 11, 1990';
2-16710987-2
Which date had an attendance of 76,518?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "date" FROM "schedule" WHERE "attendance"='76,518';
2-16710987-2
What was the attendance of the game that ended with L 31-0
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "result"='l 31-0';
2-16710987-2
What is the year for the country of Morocco?
CREATE TABLE "current" ( "continent" text, "structure" text, "height" text, "year" real, "country" text );
SELECT MAX("year") FROM "current" WHERE "country"='morocco';
2-166570-5
What is the year for the United Arab Emirates?
CREATE TABLE "current" ( "continent" text, "structure" text, "height" text, "year" real, "country" text );
SELECT COUNT("year") FROM "current" WHERE "country"='united arab emirates';
2-166570-5
What year was the Mercury City Tower?
CREATE TABLE "current" ( "continent" text, "structure" text, "height" text, "year" real, "country" text );
SELECT MIN("year") FROM "current" WHERE "structure"='mercury city tower';
2-166570-5
What structure is in Chile?
CREATE TABLE "current" ( "continent" text, "structure" text, "height" text, "year" real, "country" text );
SELECT "structure" FROM "current" WHERE "country"='chile';
2-166570-5
What 2007-08 season has marcianise as the city?
CREATE TABLE "girone_b" ( "club" text, "city" text, "stadium" text, "capacity" real, "2007_08_season" text );
SELECT "2007_08_season" FROM "girone_b" WHERE "city"='marcianise';
2-17605092-2
What is the highest capacity that has serie c2/c champions for the 2007-08 season?
CREATE TABLE "girone_b" ( "club" text, "city" text, "stadium" text, "capacity" real, "2007_08_season" text );
SELECT MAX("capacity") FROM "girone_b" WHERE "2007_08_season"='serie c2/c champions';
2-17605092-2
What is the average capacity that has foligno as the city?
CREATE TABLE "girone_b" ( "club" text, "city" text, "stadium" text, "capacity" real, "2007_08_season" text );
SELECT AVG("capacity") FROM "girone_b" WHERE "city"='foligno';
2-17605092-2
What is the highest capacity that has stadio marcello torre as the stadium?
CREATE TABLE "girone_b" ( "club" text, "city" text, "stadium" text, "capacity" real, "2007_08_season" text );
SELECT MAX("capacity") FROM "girone_b" WHERE "stadium"='stadio marcello torre';
2-17605092-2
What is the score for the game where Birmingham City was the home team on 10 March 1984?
CREATE TABLE "sixth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "score" FROM "sixth_round_proper" WHERE "date"='10 march 1984' AND "home_team"='birmingham city';
2-17437287-6
Who played the away team Derby County?
CREATE TABLE "sixth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "home_team" FROM "sixth_round_proper" WHERE "away_team"='derby county';
2-17437287-6
Who is the home team that tied no 2?
CREATE TABLE "sixth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "home_team" FROM "sixth_round_proper" WHERE "tie_no"='2';
2-17437287-6
What was the score of the game when Sheffield Wednesday was the home team?
CREATE TABLE "sixth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "score" FROM "sixth_round_proper" WHERE "home_team"='sheffield wednesday';
2-17437287-6
Which years did the player from Providence play for the Grizzlies as small forward?
CREATE TABLE "s" ( "player" text, "nationality" text, "position" text, "years_for_grizzlies" text, "school_club_team" text );
SELECT "years_for_grizzlies" FROM "s" WHERE "position"='small forward' AND "school_club_team"='providence';
2-16494599-18
What is the nationality of Stromile Swift?
CREATE TABLE "s" ( "player" text, "nationality" text, "position" text, "years_for_grizzlies" text, "school_club_team" text );
SELECT "nationality" FROM "s" WHERE "player"='stromile swift';
2-16494599-18
Which years did the player from Providence play for Memphis?
CREATE TABLE "s" ( "player" text, "nationality" text, "position" text, "years_for_grizzlies" text, "school_club_team" text );
SELECT "years_for_grizzlies" FROM "s" WHERE "school_club_team"='providence';
2-16494599-18
Which team has a record of 7-1?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "opponent" FROM "game_log" WHERE "record"='7-1';
2-17344651-4
What game number was the first game played at the Summit this season?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT MIN("game") FROM "game_log" WHERE "location"='the summit';
2-17344651-4
What was the final score for the game played against the New York Knicks?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "score" FROM "game_log" WHERE "opponent"='new york knicks';
2-17344651-4
For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "record" FROM "game_log" WHERE "location"='boston garden' AND "score"='118-110';
2-17344651-4
What is Finish, when Year(s) Won is "1962 , 1967"?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real, "finish" text );
SELECT "finish" FROM "made_the_cut" WHERE "year_s_won"='1962 , 1967';
2-17245578-1
What is Player, when To Par is greater than 6, and when Year(s) Won is "1962 , 1967"?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real, "finish" text );
SELECT "player" FROM "made_the_cut" WHERE "to_par">6 AND "year_s_won"='1962 , 1967';
2-17245578-1
What is Finish, when To Par is less than 14, and when Year(s) Won is "1952 , 1963"?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real, "finish" text );
SELECT "finish" FROM "made_the_cut" WHERE "to_par"<14 AND "year_s_won"='1952 , 1963';
2-17245578-1
What is the highest To Par, when Year(s) Won is "1962 , 1967"?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real, "finish" text );
SELECT MAX("to_par") FROM "made_the_cut" WHERE "year_s_won"='1962 , 1967';
2-17245578-1
What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real, "finish" text );
SELECT "total" FROM "made_the_cut" WHERE "to_par"<14 AND "finish"='t12' AND "player"='julius boros';
2-17245578-1
What is the highest number of artists on Scarface?
CREATE TABLE "list_of_hip_hop_albums_which_received_un" ( "number" real, "artist" text, "album" text, "average_score" real, "number_of_reviews" text );
SELECT MAX("number") FROM "list_of_hip_hop_albums_which_received_un" WHERE "artist"='scarface';
2-16444986-3
What is the average number for Black Milk?
CREATE TABLE "list_of_hip_hop_albums_which_received_un" ( "number" real, "artist" text, "album" text, "average_score" real, "number_of_reviews" text );
SELECT AVG("number") FROM "list_of_hip_hop_albums_which_received_un" WHERE "artist"='black milk';
2-16444986-3
What is the lowest average for number 2?
CREATE TABLE "list_of_hip_hop_albums_which_received_un" ( "number" real, "artist" text, "album" text, "average_score" real, "number_of_reviews" text );
SELECT MIN("average_score") FROM "list_of_hip_hop_albums_which_received_un" WHERE "number"=2;
2-16444986-3
What is the highest score for Black Milk?
CREATE TABLE "list_of_hip_hop_albums_which_received_un" ( "number" real, "artist" text, "album" text, "average_score" real, "number_of_reviews" text );
SELECT MAX("average_score") FROM "list_of_hip_hop_albums_which_received_un" WHERE "artist"='black milk';
2-16444986-3
What surface was played on when Piet Norval was a partner?
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 "surface" FROM "mixed_doubles_11_5_6" WHERE "partner"='piet norval';
2-1729366-2
What was the surface played on when they were a runner-up in 2007?
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 "surface" FROM "mixed_doubles_11_5_6" WHERE "outcome"='runner-up' AND "year"=2007;
2-1729366-2
What is Goals, when Assists is greater than 28, and when Player is Steve Walker?
CREATE TABLE "regular_season" ( "player" text, "club" text, "games" real, "goals" real, "assists" real, "points" real );
SELECT "goals" FROM "regular_season" WHERE "assists">28 AND "player"='steve walker';
2-16706701-6
What is the average Games, when Player is Robert Hock, and when Goals is less than 24?
CREATE TABLE "regular_season" ( "player" text, "club" text, "games" real, "goals" real, "assists" real, "points" real );
SELECT AVG("games") FROM "regular_season" WHERE "player"='robert hock' AND "goals"<24;
2-16706701-6
What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44?
CREATE TABLE "regular_season" ( "player" text, "club" text, "games" real, "goals" real, "assists" real, "points" real );
SELECT AVG("assists") FROM "regular_season" WHERE "club"='iserlohn roosters' AND "points"=71 AND "goals">44;
2-16706701-6
What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56?
CREATE TABLE "regular_season" ( "player" text, "club" text, "games" real, "goals" real, "assists" real, "points" real );
SELECT AVG("goals") FROM "regular_season" WHERE "club"='iserlohn roosters' AND "games"<56;
2-16706701-6
What is the location of the game with a 115-105 score?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "location" FROM "game_log" WHERE "score"='115-105';
2-17344651-7
What is the record of the game with a 110-106 score?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "record" FROM "game_log" WHERE "score"='110-106';
2-17344651-7
What is the record of game 48?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "record" FROM "game_log" WHERE "game"=48;
2-17344651-7
What is the record of the game with a 110-106 score?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "record" FROM "game_log" WHERE "score"='110-106';
2-17344651-7
What is the score at the forum location?
CREATE TABLE "game_log" ( "game" real, "date" text, "opponent" text, "score" text, "location" text, "record" text );
SELECT "score" FROM "game_log" WHERE "location"='the forum';
2-17344651-7
What is Method, when Location is "Tokyo , Japan", and when Event is "Rings: Millennium Combine 2"?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "location" text );
SELECT "method" FROM "mixed_martial_arts_record" WHERE "location"='tokyo , japan' AND "event"='rings: millennium combine 2';
2-17430269-2
What is Method, when Opponent is "Chalid Arrab"?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "location" text );
SELECT "method" FROM "mixed_martial_arts_record" WHERE "opponent"='chalid arrab';
2-17430269-2
What is the sum of Round, when Record is "19-25-5"?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "location" text );
SELECT SUM("round") FROM "mixed_martial_arts_record" WHERE "record"='19-25-5';
2-17430269-2
Which region has Stanford University as host?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "region" FROM "first_and_second_rounds" WHERE "host"='stanford university';
2-16679797-4
Which state contains the University of Iowa in the mideast region?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "state" FROM "first_and_second_rounds" WHERE "region"='mideast' AND "host"='university of iowa';
2-16679797-4
Which state includes the city of Storrs?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "state" FROM "first_and_second_rounds" WHERE "city"='storrs';
2-16679797-4
Which state includes the Harry A. Gampel Pavilion venue?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "state" FROM "first_and_second_rounds" WHERE "venue"='harry a. gampel pavilion';
2-16679797-4
Which city is in Georgia?
CREATE TABLE "first_and_second_rounds" ( "region" text, "host" text, "venue" text, "city" text, "state" text );
SELECT "city" FROM "first_and_second_rounds" WHERE "state"='georgia';
2-16679797-4
What is the total number of rounds that had Jason Missiaen?
CREATE TABLE "draft_picks" ( "round" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT COUNT("round") FROM "draft_picks" WHERE "player"='jason missiaen';
2-17206737-28
What player is from Russia?
CREATE TABLE "draft_picks" ( "round" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "player" FROM "draft_picks" WHERE "nationality"='russia';
2-17206737-28
What nationality is the pick from round 7?
CREATE TABLE "draft_picks" ( "round" real, "player" text, "position" text, "nationality" text, "college_junior_club_team_league" text );
SELECT "nationality" FROM "draft_picks" WHERE "round"=7;
2-17206737-28
what is the album when the year is later than 2008?
CREATE TABLE "official_versions" ( "version" text, "length" text, "album" text, "remixed_by" text, "year" real );
SELECT "album" FROM "official_versions" WHERE "year">2008;
2-17540670-2
What is the Championship Game that has 4 Bids and a .600 Win %?
CREATE TABLE "record_by_conference" ( "conference" text, "num_of_bids" real, "record" text, "win_pct" text, "round_of_32" text, "sweet_sixteen" text, "elite_eight" text, "final_four" text, "championship_game" text );
SELECT "championship_game" FROM "record_by_conference" WHERE "num_of_bids"=4 AND "win_pct"='.600';
2-16679797-6
What is the team 2 with cobreloa as team 1?
CREATE TABLE "round_of_16" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_2" FROM "round_of_16" WHERE "team_1"='cobreloa';
2-17397131-6
What is the team 1 with a 3-0 2nd leg?
CREATE TABLE "round_of_16" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_1" FROM "round_of_16" WHERE "2nd_leg"='3-0';
2-17397131-6
What is the team 1 with a 2-1 2nd leg?
CREATE TABLE "round_of_16" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_1" FROM "round_of_16" WHERE "2nd_leg"='2-1';
2-17397131-6
How many picks had a round smaller than 6 and an overall bigger than 153?
CREATE TABLE "washington_redskins_draft_history" ( "round" real, "pick" real, "overall" real, "name" text, "position" text, "college" text );
SELECT SUM("pick") FROM "washington_redskins_draft_history" WHERE "round"<6 AND "overall">153;
2-17100961-77
What was the attendance on 31 January 2009 when the opponent was Airdrie United?
CREATE TABLE "2008_09_partick_thistle_f_c_season" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real );
SELECT AVG("attendance") FROM "2008_09_partick_thistle_f_c_season" WHERE "opponent"='airdrie united' AND "date"='31 january 2009';
2-17598822-2
In what venue was the event held on 14 February 2009?
CREATE TABLE "2008_09_partick_thistle_f_c_season" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real );
SELECT "venue" FROM "2008_09_partick_thistle_f_c_season" WHERE "date"='14 february 2009';
2-17598822-2
What was the result of the event on 20 September 2008, held at the Firhill venue, at which more than 3,303 were in attendance?
CREATE TABLE "2008_09_partick_thistle_f_c_season" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real );
SELECT "result" FROM "2008_09_partick_thistle_f_c_season" WHERE "attendance">'3,303' AND "venue"='firhill' AND "date"='20 september 2008';
2-17598822-2
What is the average attendance for all events held at Palmerston Park venue?
CREATE TABLE "2008_09_partick_thistle_f_c_season" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real );
SELECT AVG("attendance") FROM "2008_09_partick_thistle_f_c_season" WHERE "venue"='palmerston park';
2-17598822-2
What is the total number of t (µm), when Technology is u c-si?
CREATE TABLE "comparison_with_other_technologies" ( "technology" text, "pct" real, "v_oc_v" text, "i_sc_a" text, "w_m" text, "t_m" real );
SELECT COUNT("t_m") FROM "comparison_with_other_technologies" WHERE "technology"='u c-si';
2-16531764-2
What is the V OC (V), when t (µm) is greater than 5, and when I SC (A) is 0.8?
CREATE TABLE "comparison_with_other_technologies" ( "technology" text, "pct" real, "v_oc_v" text, "i_sc_a" text, "w_m" text, "t_m" real );
SELECT "v_oc_v" FROM "comparison_with_other_technologies" WHERE "t_m">5 AND "i_sc_a"='0.8';
2-16531764-2
What is the sum of t (µm), when Technology is MJ?
CREATE TABLE "comparison_with_other_technologies" ( "technology" text, "pct" real, "v_oc_v" text, "i_sc_a" text, "w_m" text, "t_m" real );
SELECT SUM("t_m") FROM "comparison_with_other_technologies" WHERE "technology"='mj';
2-16531764-2
What is W/m², when η (%) is greater than 16.5, and when Technology is MJ?
CREATE TABLE "comparison_with_other_technologies" ( "technology" text, "pct" real, "v_oc_v" text, "i_sc_a" text, "w_m" text, "t_m" real );
SELECT "w_m" FROM "comparison_with_other_technologies" WHERE "pct">16.5 AND "technology"='mj';
2-16531764-2
What type of Bridge is in Stanley?
CREATE TABLE "references" ( "name" text, "listed" text, "location" text, "county" text, "type" text );
SELECT "type" FROM "references" WHERE "location"='stanley';
2-17286852-1
What type of bridge is Colton's Crossing Bridge?
CREATE TABLE "references" ( "name" text, "listed" text, "location" text, "county" text, "type" text );
SELECT "type" FROM "references" WHERE "name"='colton''s crossing bridge';
2-17286852-1
What bridge is a pratt pony through truss tyoe bridge?
CREATE TABLE "references" ( "name" text, "listed" text, "location" text, "county" text, "type" text );
SELECT "name" FROM "references" WHERE "type"='pratt pony through truss';
2-17286852-1
What type of bridge is in Cooperstown?
CREATE TABLE "references" ( "name" text, "listed" text, "location" text, "county" text, "type" text );
SELECT "type" FROM "references" WHERE "location"='cooperstown';
2-17286852-1
What bridge is in Mcville?
CREATE TABLE "references" ( "name" text, "listed" text, "location" text, "county" text, "type" text );
SELECT "name" FROM "references" WHERE "location"='mcville';
2-17286852-1
Which tracking method supports MySQL databases and is named Open Web Analytics?
CREATE TABLE "free_open_source_floss" ( "name" text, "platform" text, "supported_databases" text, "tracking_method" text, "latest_stable_release" text, "license" text );
SELECT "tracking_method" FROM "free_open_source_floss" WHERE "supported_databases"='mysql' AND "name"='open web analytics';
2-16651861-1
Which tracking method has a latest stable release of 2.23-05?
CREATE TABLE "free_open_source_floss" ( "name" text, "platform" text, "supported_databases" text, "tracking_method" text, "latest_stable_release" text, "license" text );
SELECT "tracking_method" FROM "free_open_source_floss" WHERE "latest_stable_release"='2.23-05';
2-16651861-1
What is the latest stable release date for Crawltrack?
CREATE TABLE "free_open_source_floss" ( "name" text, "platform" text, "supported_databases" text, "tracking_method" text, "latest_stable_release" text, "license" text );
SELECT "latest_stable_release" FROM "free_open_source_floss" WHERE "name"='crawltrack';
2-16651861-1
Which tracking method has a latest stable release of 6.0?
CREATE TABLE "free_open_source_floss" ( "name" text, "platform" text, "supported_databases" text, "tracking_method" text, "latest_stable_release" text, "license" text );
SELECT "tracking_method" FROM "free_open_source_floss" WHERE "latest_stable_release"='6.0';
2-16651861-1