question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Who was the opponent before week 8 when the result was l 28-17?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "week"<8 AND "result"='l 28-17';
2-17407021-2
In which week was the game played on October 12, 1975 and the crowd was larger than 44,043?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT COUNT("week") FROM "schedule" WHERE "date"='october 12, 1975' AND "attendance">'44,043';
2-17407021-2
What was Berlin when fk pirmasens was Südwest and westfalia herne was west?
CREATE TABLE "champions_of_pre_bundesliga_oberligen" ( "year" real, "nord" text, "west" text, "s_dwest" text, "berlin" text );
SELECT "berlin" FROM "champions_of_pre_bundesliga_oberligen" WHERE "s_dwest"='fk pirmasens' AND "west"='westfalia herne';
2-1706208-1
What is the earliest year borussia dortmund was west and bfc viktoria 1889 was Berlin?
CREATE TABLE "champions_of_pre_bundesliga_oberligen" ( "year" real, "nord" text, "west" text, "s_dwest" text, "berlin" text );
SELECT MIN("year") FROM "champions_of_pre_bundesliga_oberligen" WHERE "west"='borussia dortmund' AND "berlin"='bfc viktoria 1889';
2-1706208-1
What is the Nord in 1952, when tennis borussia berlin was Berlin?
CREATE TABLE "champions_of_pre_bundesliga_oberligen" ( "year" real, "nord" text, "west" text, "s_dwest" text, "berlin" text );
SELECT "nord" FROM "champions_of_pre_bundesliga_oberligen" WHERE "berlin"='tennis borussia berlin' AND "year"=1952;
2-1706208-1
Where did Japan place?
CREATE TABLE "final_leaderboard" ( "place" text, "player" text, "country" text, "score" text, "to_par" text, "money" real );
SELECT "place" FROM "final_leaderboard" WHERE "country"='japan';
2-16456816-1
Who was the away team when the attendance was 206?
CREATE TABLE "second_round" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "away_team" FROM "second_round" WHERE "attendance"='206';
2-17494040-6
Who was the away team when the Tie no was 34?
CREATE TABLE "second_round" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "away_team" FROM "second_round" WHERE "tie_no"='34';
2-17494040-6
Who was the away team when the attendance was 76?
CREATE TABLE "second_round" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "away_team" FROM "second_round" WHERE "attendance"='76';
2-17494040-6
Who was the home team when the Tie no was 7?
CREATE TABLE "second_round" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "home_team" FROM "second_round" WHERE "tie_no"='7';
2-17494040-6
What was the Tie no when the away team was east thurrock united?
CREATE TABLE "second_round" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "tie_no" FROM "second_round" WHERE "away_team"='east thurrock united';
2-17494040-6
WHAT IS THE LOWEST TURNOUT FOR AN ELECTORATE LARGER THAN 47,822 AND SPOILT OF 2,333?
CREATE TABLE "plebiscite" ( "constituency" text, "electorate" real, "votes" real, "turnout" real, "spoilt" real, "percent_yes" real );
SELECT MIN("turnout") FROM "plebiscite" WHERE "electorate">'47,822' AND "spoilt"='2,333';
2-1705429-1
WHAT IS THE AVERAGE VOTE FOR DUBLIN SOUTH, AND SPOILT SMALLER THAN 3,387?
CREATE TABLE "plebiscite" ( "constituency" text, "electorate" real, "votes" real, "turnout" real, "spoilt" real, "percent_yes" real );
SELECT AVG("votes") FROM "plebiscite" WHERE "constituency"='dublin south' AND "spoilt"<'3,387';
2-1705429-1
WHAT IS AN AVERAGE ELECTORATE WITH VOTES OF 28,475 AND SPOILT SMALLER THAN 5,779?
CREATE TABLE "plebiscite" ( "constituency" text, "electorate" real, "votes" real, "turnout" real, "spoilt" real, "percent_yes" real );
SELECT AVG("electorate") FROM "plebiscite" WHERE "votes"='28,475' AND "spoilt"<'5,779';
2-1705429-1
WHAT IS THE LOWEST ELECTORATE WITH 31,511 VOTES, AND PERCENT YES SMALLER THAN 57.2?
CREATE TABLE "plebiscite" ( "constituency" text, "electorate" real, "votes" real, "turnout" real, "spoilt" real, "percent_yes" real );
SELECT MIN("electorate") FROM "plebiscite" WHERE "votes"='31,511' AND "percent_yes"<57.2;
2-1705429-1
Where was the game played on January 23, 2008?
CREATE TABLE "pre_season_friendlies" ( "match" real, "date" text, "tournament" text, "location" text, "opponent_team" text, "score" text );
SELECT "location" FROM "pre_season_friendlies" WHERE "date"='january 23, 2008';
2-17540458-2
Where was the Singapore Charity Shield tournament played?
CREATE TABLE "pre_season_friendlies" ( "match" real, "date" text, "tournament" text, "location" text, "opponent_team" text, "score" text );
SELECT "location" FROM "pre_season_friendlies" WHERE "tournament"='singapore charity shield';
2-17540458-2
Where was the game located on January 23, 2008?
CREATE TABLE "pre_season_friendlies" ( "match" real, "date" text, "tournament" text, "location" text, "opponent_team" text, "score" text );
SELECT "location" FROM "pre_season_friendlies" WHERE "date"='january 23, 2008';
2-17540458-2
Where is the location of the friendly match larger than 1 where the Super Reds were the opponent?
CREATE TABLE "pre_season_friendlies" ( "match" real, "date" text, "tournament" text, "location" text, "opponent_team" text, "score" text );
SELECT "location" FROM "pre_season_friendlies" WHERE "match">1 AND "tournament"='friendly' AND "opponent_team"='super reds';
2-17540458-2
When the team is @ Milwaukee, what is the name of the location where the game is played?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "location_attendance" text, "record" text );
SELECT "location_attendance" FROM "game_log" WHERE "team"='@ milwaukee';
2-17342278-4
For the game with team of @ Chicago, what was the final score?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "location_attendance" text, "record" text );
SELECT "score" FROM "game_log" WHERE "team"='@ chicago';
2-17342278-4
How long was Volume:Issue 12:4-6 at the top?
CREATE TABLE "see_also" ( "volume_issue" text, "issue_date_s" text, "weeks_on_top" real, "song" text, "artist" text );
SELECT COUNT("weeks_on_top") FROM "see_also" WHERE "volume_issue"='12:4-6';
2-16606771-1
What rank did Best Friends receive?
CREATE TABLE "highest_grossing_films_u_s" ( "rank" real, "title" text, "studio" text, "director" text, "gross" text );
SELECT "rank" FROM "highest_grossing_films_u_s" WHERE "title"='best friends';
2-171649-1
How many points are for the Fall Bay RFC club?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "points_for" FROM "league_table" WHERE "club"='fall bay rfc';
2-17510803-2
What was drawn for 6 bonus points and is against 410 points?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "drawn" FROM "league_table" WHERE "bonus_points"='6' AND "points_against"='410';
2-17510803-2
What is the club had 431 points against them?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "club" FROM "league_table" WHERE "points_against"='431';
2-17510803-2
What are the points against with a points difference?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "points_against" FROM "league_table" WHERE "points_difference"='points difference';
2-17510803-2
What are the played points difference?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "points_difference" text, "bonus_points" text, "points" text );
SELECT "played" FROM "league_table" WHERE "points_difference"='points difference';
2-17510803-2
When the Home Team was Sydney, what did the Away team score?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "away_team_score" FROM "round_of_16" WHERE "home_team"='sydney';
2-16388091-1
What was the Home team Carlton's Ground?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "ground" FROM "round_of_16" WHERE "home_team"='carlton';
2-16388091-1
When Essendon scored 8.14 (62), what was the Home team score?
CREATE TABLE "round_of_16" ( "home_team" text, "home_team_score" text, "away_team" text, "away_team_score" text, "ground" text, "crowd" real, "date" text, "time" text );
SELECT "home_team_score" FROM "round_of_16" WHERE "away_team_score"='8.14 (62)' AND "away_team"='essendon';
2-16388091-1
Which player scored 71?
CREATE TABLE "first_round" ( "place" text, "player" text, "country" text, "score" real, "to_par" text );
SELECT "player" FROM "first_round" WHERE "score"=71;
2-16456989-2
What is the circuit on 19 Apr with Craig Lowndes as the winner?
CREATE TABLE "race_calendar" ( "date" text, "series" text, "circuit" text, "city_state" text, "winner" text, "team" text );
SELECT "circuit" FROM "race_calendar" WHERE "winner"='craig lowndes' AND "date"='19 apr';
2-17001452-1
What circuit has volvo cars australia as the team?
CREATE TABLE "race_calendar" ( "date" text, "series" text, "circuit" text, "city_state" text, "winner" text, "team" text );
SELECT "circuit" FROM "race_calendar" WHERE "team"='volvo cars australia';
2-17001452-1
What series was Dick Johnson Racing the team?
CREATE TABLE "race_calendar" ( "date" text, "series" text, "circuit" text, "city_state" text, "winner" text, "team" text );
SELECT "series" FROM "race_calendar" WHERE "team"='dick johnson racing';
2-17001452-1
What is the city/state of the circuit where Russell Ingall Larry Perkins was the winner?
CREATE TABLE "race_calendar" ( "date" text, "series" text, "circuit" text, "city_state" text, "winner" text, "team" text );
SELECT "city_state" FROM "race_calendar" WHERE "winner"='russell ingall larry perkins';
2-17001452-1
What date was the away team, team Gillingham?
CREATE TABLE "first_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "first_round_proper" WHERE "away_team"='gillingham';
2-17520911-2
What was the score for a no. 21 tie?
CREATE TABLE "first_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "score" FROM "first_round_proper" WHERE "tie_no"='21';
2-17520911-2
What was the date for the away team, team Southport?
CREATE TABLE "first_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "first_round_proper" WHERE "away_team"='southport';
2-17520911-2
What was the score for the away team, southport?
CREATE TABLE "first_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "score" FROM "first_round_proper" WHERE "away_team"='southport';
2-17520911-2
What was the result when the attendance was 47,971?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "tv_time" text, "attendance" text );
SELECT "result" FROM "schedule" WHERE "attendance"='47,971';
2-16323350-2
What was the result when the attendance was 46,456?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "tv_time" text, "attendance" text );
SELECT "result" FROM "schedule" WHERE "attendance"='46,456';
2-16323350-2
Who was the opponent on september 27, 1998?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "game_site" text, "tv_time" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "date"='september 27, 1998';
2-16323350-2
Which Venue has a Score of 0:0, a Season larger than 2010, and a Team 1 of t&t hanoi?
CREATE TABLE "results" ( "season" real, "team_1" text, "score" text, "team_2" text, "venue" text );
SELECT "venue" FROM "results" WHERE "score"='0:0' AND "season">2010 AND "team_1"='t&t hanoi';
2-16707879-4
What's the highest league of the Nova Scotia Clippers with a total season of less than 4?
CREATE TABLE "list_of_csl_teams" ( "team" text, "city" text, "total_seasons" real, "seasons" text, "highest_league" text );
SELECT "highest_league" FROM "list_of_csl_teams" WHERE "total_seasons"<4 AND "team"='nova scotia clippers';
2-17601374-3
What is the season that has fewer than 5 total seasons and is in Ottawa, Ontario?
CREATE TABLE "list_of_csl_teams" ( "team" text, "city" text, "total_seasons" real, "seasons" text, "highest_league" text );
SELECT "seasons" FROM "list_of_csl_teams" WHERE "total_seasons"<5 AND "city"='ottawa, ontario';
2-17601374-3
What is the least total seasons of the Vancouver 86ers?
CREATE TABLE "list_of_csl_teams" ( "team" text, "city" text, "total_seasons" real, "seasons" text, "highest_league" text );
SELECT MIN("total_seasons") FROM "list_of_csl_teams" WHERE "team"='vancouver 86ers';
2-17601374-3
Who was the opponent in week 14?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "opponent" FROM "schedule" WHERE "week"=14;
2-16729083-1
What is Date, when City is "Punta Del Este"?
CREATE TABLE "season_4" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "date" FROM "season_4" WHERE "city"='punta del este';
2-17282079-4
What is City, when Prize is "$146,000"?
CREATE TABLE "season_4" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "city" FROM "season_4" WHERE "prize"='$146,000';
2-17282079-4
What is Date, when Winner is "Murilo Figueiredo"?
CREATE TABLE "season_4" ( "date" text, "city" text, "event" text, "winner" text, "prize" text );
SELECT "date" FROM "season_4" WHERE "winner"='murilo figueiredo';
2-17282079-4
What Aspect has a Programming of Saigon Network Television?
CREATE TABLE "digital_channels" ( "channel" real, "video" text, "aspect" text, "psip_short_name" text, "programming" text );
SELECT "aspect" FROM "digital_channels" WHERE "programming"='saigon network television';
2-1755656-1
Which Aspect has a Programming of latv?
CREATE TABLE "digital_channels" ( "channel" real, "video" text, "aspect" text, "psip_short_name" text, "programming" text );
SELECT "aspect" FROM "digital_channels" WHERE "programming"='latv';
2-1755656-1
Which Programming has a Channel greater than 51.2 and a PSIP Short Name of kyaz-5?
CREATE TABLE "digital_channels" ( "channel" real, "video" text, "aspect" text, "psip_short_name" text, "programming" text );
SELECT "programming" FROM "digital_channels" WHERE "channel">51.2 AND "psip_short_name"='kyaz-5';
2-1755656-1
What is the PSIP Short name for the Channel that is less than 51.6?
CREATE TABLE "digital_channels" ( "channel" real, "video" text, "aspect" text, "psip_short_name" text, "programming" text );
SELECT "psip_short_name" FROM "digital_channels" WHERE "channel"<51.6;
2-1755656-1
What year did maggs magnificent mild bear win overall at the camra reading branch beer festival?
CREATE TABLE "awards" ( "year" real, "beer_name" text, "prize" text, "category" text, "competition" text );
SELECT MAX("year") FROM "awards" WHERE "beer_name"='maggs magnificent mild' AND "competition"='camra reading branch beer festival' AND "category"='overall';
2-17514817-1
What prize did good old boy win in 2002 at the camra london and south east regional competition?
CREATE TABLE "awards" ( "year" real, "beer_name" text, "prize" text, "category" text, "competition" text );
SELECT "prize" FROM "awards" WHERE "year">2002 AND "competition"='camra london and south east regional competition' AND "beer_name"='good old boy';
2-17514817-1
What year did maggs magnificent mild win a gold medal in the mild and porter category at the siba south east region beer competition?
CREATE TABLE "awards" ( "year" real, "beer_name" text, "prize" text, "category" text, "competition" text );
SELECT AVG("year") FROM "awards" WHERE "beer_name"='maggs magnificent mild' AND "prize"='gold medal' AND "category"='mild and porter' AND "competition"='siba south east region beer competition';
2-17514817-1
What beer won a silver medal at the camra reading branch beer festival in 2008?
CREATE TABLE "awards" ( "year" real, "beer_name" text, "prize" text, "category" text, "competition" text );
SELECT "beer_name" FROM "awards" WHERE "prize"='silver medal' AND "competition"='camra reading branch beer festival' AND "year"=2008;
2-17514817-1
What is Model Number, when Part Number(s) is AY80609003987AB?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "gpu_frequency" text, "l2_cache" text, "i_o_bus" text, "memory" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "model_number" FROM "45_nm" WHERE "part_number_s"='ay80609003987ab';
2-16729930-12
What is Frequency, when Part Number(s) is AY80609004002AC?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "gpu_frequency" text, "l2_cache" text, "i_o_bus" text, "memory" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "frequency" FROM "45_nm" WHERE "part_number_s"='ay80609004002ac';
2-16729930-12
What is sSpec Number, when Frequency is 1 GHZ?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "gpu_frequency" text, "l2_cache" text, "i_o_bus" text, "memory" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "s_spec_number" FROM "45_nm" WHERE "frequency"='1 ghz';
2-16729930-12
What is Release Date, when sSpec Number is SLBZE(C0)SLBR8?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "gpu_frequency" text, "l2_cache" text, "i_o_bus" text, "memory" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "release_date" FROM "45_nm" WHERE "s_spec_number"='slbze(c0)slbr8';
2-16729930-12
What is L2 Cache, when Model Number is Atom Z625?
CREATE TABLE "45_nm" ( "model_number" text, "s_spec_number" text, "frequency" text, "gpu_frequency" text, "l2_cache" text, "i_o_bus" text, "memory" text, "socket" text, "release_date" text, "part_number_s" text );
SELECT "l2_cache" FROM "45_nm" WHERE "model_number"='atom z625';
2-16729930-12
Which Pick has a Player of renaldo wynn, and a Round smaller than 1?
CREATE TABLE "nfl_draft" ( "round" real, "pick" real, "player" text, "position" text, "college" text );
SELECT COUNT("pick") FROM "nfl_draft" WHERE "player"='renaldo wynn' AND "round"<1;
2-16780011-1
Which Round has a Player of damon jones?
CREATE TABLE "nfl_draft" ( "round" real, "pick" real, "player" text, "position" text, "college" text );
SELECT SUM("round") FROM "nfl_draft" WHERE "player"='damon jones';
2-16780011-1
Which College has a Round smaller than 2?
CREATE TABLE "nfl_draft" ( "round" real, "pick" real, "player" text, "position" text, "college" text );
SELECT "college" FROM "nfl_draft" WHERE "round"<2;
2-16780011-1
What was the lead margin when Nixon had 48% and reporting was done by Rasmussen Reports?
CREATE TABLE "opinion_polling_for_the_united_states_gu" ( "poll_source" text, "dates_administered" text, "democrat_jay_nixon" text, "republican_kenny_hulshof" text, "lead_margin" real );
SELECT COUNT("lead_margin") FROM "opinion_polling_for_the_united_states_gu" WHERE "democrat_jay_nixon"='48%' AND "poll_source"='rasmussen reports';
2-17538810-10
What are the dates where Hulshof had 37% and Nixon had 48%?
CREATE TABLE "opinion_polling_for_the_united_states_gu" ( "poll_source" text, "dates_administered" text, "democrat_jay_nixon" text, "republican_kenny_hulshof" text, "lead_margin" real );
SELECT "dates_administered" FROM "opinion_polling_for_the_united_states_gu" WHERE "republican_kenny_hulshof"='37%' AND "democrat_jay_nixon"='48%';
2-17538810-10
Which event is located in Northfield, Mn?
CREATE TABLE "records" ( "date" text, "distance" text, "handler" text, "event" text, "location" text );
SELECT "event" FROM "records" WHERE "location"='northfield, mn';
2-17371890-2
Which event has a distance of ft10in (m)?
CREATE TABLE "records" ( "date" text, "distance" text, "handler" text, "event" text, "location" text );
SELECT "event" FROM "records" WHERE "distance"='ft10in (m)';
2-17371890-2
What distance does the Bass Pro Shops event have?
CREATE TABLE "records" ( "date" text, "distance" text, "handler" text, "event" text, "location" text );
SELECT "distance" FROM "records" WHERE "event"='bass pro shops';
2-17371890-2
On what date was Mike Jackson a handler at the Indianapolis Boat, Sport & Travel Show?
CREATE TABLE "records" ( "date" text, "distance" text, "handler" text, "event" text, "location" text );
SELECT "date" FROM "records" WHERE "handler"='mike jackson' AND "event"='indianapolis boat, sport & travel show';
2-17371890-2
Who did they play when there were only 751 in attendance?
CREATE TABLE "january" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real, "competition" text, "man_of_the_match" text );
SELECT "opponent" FROM "january" WHERE "attendance"<751;
2-17120964-8
When did they play the swindon wildcats away?
CREATE TABLE "january" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real, "competition" text, "man_of_the_match" text );
SELECT "date" FROM "january" WHERE "venue"='away' AND "opponent"='swindon wildcats';
2-17120964-8
Who was the Man of the Match when they played the Romford Raiders at home?
CREATE TABLE "january" ( "date" text, "opponent" text, "venue" text, "result" text, "attendance" real, "competition" text, "man_of_the_match" text );
SELECT "man_of_the_match" FROM "january" WHERE "venue"='home' AND "opponent"='romford raiders';
2-17120964-8
What is the Nationality of the player named Yahaya, who has as App(L/C/E) of 0 (0/0/0)?
CREATE TABLE "players_out_on_loan" ( "nat" text, "name" text, "since" text, "app_l_c_e" text, "goals_l_c_e" text, "ends" real, "transfer_fee" text, "notes" text );
SELECT "nat" FROM "players_out_on_loan" WHERE "app_l_c_e"='0 (0/0/0)' AND "name"='yahaya';
2-17426846-2
What was the transfer fee for the player who had an App(L/C/E) of 0 (0/0/0) and notes of to anagennisi karditsa?
CREATE TABLE "players_out_on_loan" ( "nat" text, "name" text, "since" text, "app_l_c_e" text, "goals_l_c_e" text, "ends" real, "transfer_fee" text, "notes" text );
SELECT "transfer_fee" FROM "players_out_on_loan" WHERE "app_l_c_e"='0 (0/0/0)' AND "notes"='to anagennisi karditsa';
2-17426846-2
what is the american name when the triple dotted value is 15/2 or 7 1/2?
CREATE TABLE "variations" ( "american_name" text, "british_name" text, "value" text, "dotted_value" text, "double_dotted_value" text, "triple_dotted_value" text );
SELECT "american_name" FROM "variations" WHERE "triple_dotted_value"='15/2 or 7 1/2';
2-1636323-1
what is the british name when the american name is sixteenth note?
CREATE TABLE "variations" ( "american_name" text, "british_name" text, "value" text, "dotted_value" text, "double_dotted_value" text, "triple_dotted_value" text );
SELECT "british_name" FROM "variations" WHERE "american_name"='sixteenth note';
2-1636323-1
what is the value when the british name is quaver?
CREATE TABLE "variations" ( "american_name" text, "british_name" text, "value" text, "dotted_value" text, "double_dotted_value" text, "triple_dotted_value" text );
SELECT "value" FROM "variations" WHERE "british_name"='quaver';
2-1636323-1
what is the british name when the double dotted value is 7/32?
CREATE TABLE "variations" ( "american_name" text, "british_name" text, "value" text, "dotted_value" text, "double_dotted_value" text, "triple_dotted_value" text );
SELECT "british_name" FROM "variations" WHERE "double_dotted_value"='7/32';
2-1636323-1
what is the double dotted value when the triple dotted value is 15/128?
CREATE TABLE "variations" ( "american_name" text, "british_name" text, "value" text, "dotted_value" text, "double_dotted_value" text, "triple_dotted_value" text );
SELECT "double_dotted_value" FROM "variations" WHERE "triple_dotted_value"='15/128';
2-1636323-1
what is the value when the british name is maxima?
CREATE TABLE "variations" ( "american_name" text, "british_name" text, "value" text, "dotted_value" text, "double_dotted_value" text, "triple_dotted_value" text );
SELECT "value" FROM "variations" WHERE "british_name"='maxima';
2-1636323-1
What is Home Team, when Date is "28 January 1984", and when Tie No is "4"?
CREATE TABLE "fourth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "home_team" FROM "fourth_round_proper" WHERE "date"='28 january 1984' AND "tie_no"='4';
2-17437287-4
What is Date, when Away Team is "Gillingham"?
CREATE TABLE "fourth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "fourth_round_proper" WHERE "away_team"='gillingham';
2-17437287-4
What is Home Team, when Date is "1 February 1984", and when Tie No is "5"?
CREATE TABLE "fourth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "home_team" FROM "fourth_round_proper" WHERE "date"='1 february 1984' AND "tie_no"='5';
2-17437287-4
What is Away Team, when Home Team is "Sheffield Wednesday"?
CREATE TABLE "fourth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "away_team" FROM "fourth_round_proper" WHERE "home_team"='sheffield wednesday';
2-17437287-4
What is Date, when Tie No is "Replay", and when Away Team is "Crystal Palace"?
CREATE TABLE "fourth_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "fourth_round_proper" WHERE "tie_no"='replay' AND "away_team"='crystal palace';
2-17437287-4
What to par has tom kite as the player?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "to_par" FROM "made_the_cut" WHERE "player"='tom kite';
2-17162128-2
What player has a t57 as the finish?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "player" FROM "made_the_cut" WHERE "finish"='t57';
2-17162128-2
What is the lowest total that has 1992 as the year (s) won?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT MIN("total") FROM "made_the_cut" WHERE "year_s_won"='1992';
2-17162128-2
What player has +21 as the to par?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "player" FROM "made_the_cut" WHERE "to_par"='+21';
2-17162128-2
Which to par has a total less than 296?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "to_par" FROM "made_the_cut" WHERE "total"<296;
2-17162128-2
What finish has +21 as the to par?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "finish" FROM "made_the_cut" WHERE "to_par"='+21';
2-17162128-2
What is the total number of events that had 34 cuts and 3 in the top 10?
CREATE TABLE "summary" ( "tournament" text, "wins" real, "top_5" real, "top_10" real, "top_25" real, "events" real, "cuts_made" real );
SELECT COUNT("events") FROM "summary" WHERE "cuts_made"<34 AND "top_10">3;
2-1646050-6
Who played with more than 51,901 attendance and resulted in t 13-13?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "opponent" FROM "schedule" WHERE "attendance">'51,901' AND "result"='t 13-13';
2-16983245-2
Who had the most rebounds on January 3?
CREATE TABLE "game_log" ( "game" real, "date" text, "team" text, "score" text, "high_points" text, "high_rebounds" text, "high_assists" text, "location_attendance" text, "record" text );
SELECT "high_rebounds" FROM "game_log" WHERE "date"='january 3';
2-17288861-7
Which surface had a date after 1982 and partner of Guy Forget?
CREATE TABLE "doubles_finals_53_26_27" ( "outcome" text, "date" real, "tournament" text, "surface" text, "partner" text, "opponents" text, "score" text );
SELECT "surface" FROM "doubles_finals_53_26_27" WHERE "date">1982 AND "partner"='guy forget';
2-1717013-5
What was the result of the week 9 game?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" real );
SELECT "result" FROM "schedule" WHERE "week"=9;
2-16767061-2