question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What is the lowest Round, when Position is Linebacker, and when Player is Thomas Henderson?
CREATE TABLE "nfl_draft" ( "round" real, "pick_num" real, "player" text, "position" text, "college" text );
SELECT MIN("round") FROM "nfl_draft" WHERE "position"='linebacker' AND "player"='thomas henderson';
2-16767061-1
What is the total number of Pick #, when College is Oklahoma, and when Round is less than 4?
CREATE TABLE "nfl_draft" ( "round" real, "pick_num" real, "player" text, "position" text, "college" text );
SELECT COUNT("pick_num") FROM "nfl_draft" WHERE "college"='oklahoma' AND "round"<4;
2-16767061-1
Which Team has a Head Coach of michalis pamboris?
CREATE TABLE "overview" ( "team" text, "head_coach" text, "team_captain" text, "venue" text, "capacity" real, "kitmaker" text, "shirt_sponsor" text, "club_chairman" text );
SELECT "team" FROM "overview" WHERE "head_coach"='michalis pamboris';
2-17054062-1
What is umbro's highest capacity?
CREATE TABLE "overview" ( "team" text, "head_coach" text, "team_captain" text, "venue" text, "capacity" real, "kitmaker" text, "shirt_sponsor" text, "club_chairman" text );
SELECT MAX("capacity") FROM "overview" WHERE "kitmaker"='umbro';
2-17054062-1
Which Venue has a Kitmaker of lotto, and a Team of apoel?
CREATE TABLE "overview" ( "team" text, "head_coach" text, "team_captain" text, "venue" text, "capacity" real, "kitmaker" text, "shirt_sponsor" text, "club_chairman" text );
SELECT "venue" FROM "overview" WHERE "kitmaker"='lotto' AND "team"='apoel';
2-17054062-1
What is the drawn number when there are 58 tries?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text );
SELECT "drawn" FROM "league_table" WHERE "tries_for"='58';
2-17625749-3
What is the played number when the tries against shows correct as of 18:13 26 May 2008?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text );
SELECT "played" FROM "league_table" WHERE "tries_against"='correct as of 18:13 26 may 2008';
2-17625749-3
What is the drawn when there are 402 points?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text );
SELECT "drawn" FROM "league_table" WHERE "points_for"='402';
2-17625749-3
What is the try bonus when there are 492 points?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text );
SELECT "try_bonus" FROM "league_table" WHERE "points_against"='492';
2-17625749-3
What is the number of points against when the tries against was 53?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text );
SELECT "points_against" FROM "league_table" WHERE "tries_against"='53';
2-17625749-3
What is the played number when the points against is 179?
CREATE TABLE "league_table" ( "club" text, "played" text, "drawn" text, "lost" text, "points_for" text, "points_against" text, "tries_for" text, "tries_against" text, "try_bonus" text );
SELECT "played" FROM "league_table" WHERE "points_against"='179';
2-17625749-3
what total made has a percent made greater than 0.166 and a 3pm-a of 3-5
CREATE TABLE "setting_the_nba_finals_3pt_record" ( "game" real, "3_pm_a" text, "percent_made" real, "total_made" real, "total_attempted" real, "series_percent" real );
SELECT MAX("total_made") FROM "setting_the_nba_finals_3pt_record" WHERE "percent_made">0.166 AND "3_pm_a"='3-5';
2-17107550-1
what is the total made with a 3pm-a of 5-5 and a total attempted less than 14
CREATE TABLE "setting_the_nba_finals_3pt_record" ( "game" real, "3_pm_a" text, "percent_made" real, "total_made" real, "total_attempted" real, "series_percent" real );
SELECT SUM("total_made") FROM "setting_the_nba_finals_3pt_record" WHERE "3_pm_a"='5-5' AND "total_attempted"<14;
2-17107550-1
what is the total series percent that has total attempted less than 49, and a percent made of 0.777
CREATE TABLE "setting_the_nba_finals_3pt_record" ( "game" real, "3_pm_a" text, "percent_made" real, "total_made" real, "total_attempted" real, "series_percent" real );
SELECT COUNT("series_percent") FROM "setting_the_nba_finals_3pt_record" WHERE "total_attempted"<49 AND "percent_made"=0.777;
2-17107550-1
what is the total attempted with a total made 16
CREATE TABLE "setting_the_nba_finals_3pt_record" ( "game" real, "3_pm_a" text, "percent_made" real, "total_made" real, "total_attempted" real, "series_percent" real );
SELECT COUNT("total_attempted") FROM "setting_the_nba_finals_3pt_record" WHERE "total_made"=16;
2-17107550-1
What is the sum of District, when Took Office is greater than 1981, and when Senator is Cyndi Taylor Krier?
CREATE TABLE "senate" ( "senator" text, "party" text, "district" real, "home_town" text, "took_office" real );
SELECT SUM("district") FROM "senate" WHERE "took_office">1981 AND "senator"='cyndi taylor krier';
2-17042813-3
What is Party, when District is less than 10, when Took Office is less than 1991, and when Home Town is Mount Pleasant?
CREATE TABLE "senate" ( "senator" text, "party" text, "district" real, "home_town" text, "took_office" real );
SELECT "party" FROM "senate" WHERE "district"<10 AND "took_office"<1991 AND "home_town"='mount pleasant';
2-17042813-3
What is the lowest Took Office, when Senator is Eddie Bernice Johnson, and when District is greater than 23?
CREATE TABLE "senate" ( "senator" text, "party" text, "district" real, "home_town" text, "took_office" real );
SELECT MIN("took_office") FROM "senate" WHERE "senator"='eddie bernice johnson' AND "district">23;
2-17042813-3
In which period did Stanislav Chistov get a penalty?
CREATE TABLE "penalty_summary" ( "period" text, "team" text, "player" text, "penalty" text, "time" text );
SELECT "period" FROM "penalty_summary" WHERE "player"='stanislav chistov';
2-17058856-2
What was a penalty given for at time 29:17?
CREATE TABLE "penalty_summary" ( "period" text, "team" text, "player" text, "penalty" text, "time" text );
SELECT "penalty" FROM "penalty_summary" WHERE "time"='29:17';
2-17058856-2
What team was the player that received a penalty at time 32:17 playing for?
CREATE TABLE "penalty_summary" ( "period" text, "team" text, "player" text, "penalty" text, "time" text );
SELECT "team" FROM "penalty_summary" WHERE "time"='32:17';
2-17058856-2
What team was Ryan Callahan, who received a penalty for roughing, playing for?
CREATE TABLE "penalty_summary" ( "period" text, "team" text, "player" text, "penalty" text, "time" text );
SELECT "team" FROM "penalty_summary" WHERE "penalty"='roughing' AND "player"='ryan callahan';
2-17058856-2
Who was the head coach when the opponent was Arsenal?
CREATE TABLE "malaysia_xi" ( "date" text, "location" text, "head_coach" text, "opponent" text, "result" text );
SELECT "head_coach" FROM "malaysia_xi" WHERE "opponent"='arsenal';
2-16972055-1
Who was the opponent when the head coach was B. Sathianathan?
CREATE TABLE "malaysia_xi" ( "date" text, "location" text, "head_coach" text, "opponent" text, "result" text );
SELECT "opponent" FROM "malaysia_xi" WHERE "head_coach"='b. sathianathan';
2-16972055-1
When was the opponent Arsenal?
CREATE TABLE "malaysia_xi" ( "date" text, "location" text, "head_coach" text, "opponent" text, "result" text );
SELECT "date" FROM "malaysia_xi" WHERE "opponent"='arsenal';
2-16972055-1
What was the result when the opponent was Arsenal?
CREATE TABLE "malaysia_xi" ( "date" text, "location" text, "head_coach" text, "opponent" text, "result" text );
SELECT "result" FROM "malaysia_xi" WHERE "opponent"='arsenal';
2-16972055-1
What is the highest neutral losses of the institution with 0 neutral wins, 0 home losses, and less than 0 away losses?
CREATE TABLE "atlantic_coast_conference_10_3_1" ( "institution" text, "wins" real, "loss" real, "home_wins" real, "home_losses" real, "away_wins" real, "away_losses" real, "neutral_wins" real, "neutral_losses" real );
SELECT MAX("neutral_losses") FROM "atlantic_coast_conference_10_3_1" WHERE "neutral_wins"=0 AND "home_losses"=0 AND "away_losses"<0;
2-1672976-1
What is the sum of the home wins of the Boston College Eagles, which has more than 6 wins?
CREATE TABLE "atlantic_coast_conference_10_3_1" ( "institution" text, "wins" real, "loss" real, "home_wins" real, "home_losses" real, "away_wins" real, "away_losses" real, "neutral_wins" real, "neutral_losses" real );
SELECT SUM("home_wins") FROM "atlantic_coast_conference_10_3_1" WHERE "institution"='boston college eagles' AND "wins">6;
2-1672976-1
What is the highest number of home wins of the institution with 0 away losses and more than 6 wins?
CREATE TABLE "atlantic_coast_conference_10_3_1" ( "institution" text, "wins" real, "loss" real, "home_wins" real, "home_losses" real, "away_wins" real, "away_losses" real, "neutral_wins" real, "neutral_losses" real );
SELECT MAX("home_wins") FROM "atlantic_coast_conference_10_3_1" WHERE "away_losses"=0 AND "wins">6;
2-1672976-1
What is the highest number of neutral losses of the Florida State Seminoles, which has less than 5 away losses?
CREATE TABLE "atlantic_coast_conference_10_3_1" ( "institution" text, "wins" real, "loss" real, "home_wins" real, "home_losses" real, "away_wins" real, "away_losses" real, "neutral_wins" real, "neutral_losses" real );
SELECT MAX("neutral_losses") FROM "atlantic_coast_conference_10_3_1" WHERE "institution"='florida state seminoles' AND "away_losses"<5;
2-1672976-1
What is the highest number of wins of the institution with more than 0 neutral wins and less than 2 away wins?
CREATE TABLE "atlantic_coast_conference_10_3_1" ( "institution" text, "wins" real, "loss" real, "home_wins" real, "home_losses" real, "away_wins" real, "away_losses" real, "neutral_wins" real, "neutral_losses" real );
SELECT MAX("wins") FROM "atlantic_coast_conference_10_3_1" WHERE "neutral_wins">0 AND "away_wins"<2;
2-1672976-1
What is the Record when Evangelista Cyborg was the opponent?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "round" real, "time" text, "location" text );
SELECT "record" FROM "mixed_martial_arts_record" WHERE "opponent"='evangelista cyborg';
2-17624945-2
What is the Method for Brazil?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "round" real, "time" text, "location" text );
SELECT "method" FROM "mixed_martial_arts_record" WHERE "location"='brazil';
2-17624945-2
What round was the method submission (punches)?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "round" real, "time" text, "location" text );
SELECT COUNT("round") FROM "mixed_martial_arts_record" WHERE "method"='submission (punches)';
2-17624945-2
What is the method when the record was 3-2?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "round" real, "time" text, "location" text );
SELECT "method" FROM "mixed_martial_arts_record" WHERE "record"='3-2';
2-17624945-2
What is the method when the round shows 3?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "round" real, "time" text, "location" text );
SELECT "method" FROM "mixed_martial_arts_record" WHERE "round"=3;
2-17624945-2
What was the run 3 for the team in rank 12?
CREATE TABLE "results" ( "rank" text, "team" text, "run_1" text, "run_2" text, "run_3" text, "run_4" text, "final" text );
SELECT "run_3" FROM "results" WHERE "rank"='12';
2-16945039-2
What was the run 3 for the team with a run 1 of 1:17.6?
CREATE TABLE "results" ( "rank" text, "team" text, "run_1" text, "run_2" text, "run_3" text, "run_4" text, "final" text );
SELECT "run_3" FROM "results" WHERE "run_1"='1:17.6';
2-16945039-2
What was the rank of the team with a run 2 of 1:20.8 and a run 4 of 1:23.0?
CREATE TABLE "results" ( "rank" text, "team" text, "run_1" text, "run_2" text, "run_3" text, "run_4" text, "final" text );
SELECT "rank" FROM "results" WHERE "run_2"='1:20.8' AND "run_4"='1:23.0';
2-16945039-2
What was the run 1 for the team with a run 3 of 1:21.4 and a run 4 of 1:23.0?
CREATE TABLE "results" ( "rank" text, "team" text, "run_1" text, "run_2" text, "run_3" text, "run_4" text, "final" text );
SELECT "run_1" FROM "results" WHERE "run_3"='1:21.4' AND "run_4"='1:23.0';
2-16945039-2
Which team had a run 4 of 1:24.4?
CREATE TABLE "results" ( "rank" text, "team" text, "run_1" text, "run_2" text, "run_3" text, "run_4" text, "final" text );
SELECT "team" FROM "results" WHERE "run_4"='1:24.4';
2-16945039-2
What is the Attendance at the game against the Oakland Raiders?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "opponent"='oakland raiders';
2-16729040-1
What was the Attendance in Week 10?
CREATE TABLE "schedule" ( "week" real, "date" text, "opponent" text, "result" text, "attendance" text );
SELECT "attendance" FROM "schedule" WHERE "week"=10;
2-16729040-1
Which Principal activities have an Incorporated in of france?
CREATE TABLE "subsidiaries" ( "company" text, "type" text, "principal_activities" text, "incorporated_in" text, "group_s_equity_shareholding" text );
SELECT "principal_activities" FROM "subsidiaries" WHERE "incorporated_in"='france';
2-16882-1
Which Type has an Incorporated in of netherlands, a Principal activities of airline, and a Company of transavia.com?
CREATE TABLE "subsidiaries" ( "company" text, "type" text, "principal_activities" text, "incorporated_in" text, "group_s_equity_shareholding" text );
SELECT "type" FROM "subsidiaries" WHERE "incorporated_in"='netherlands' AND "principal_activities"='airline' AND "company"='transavia.com';
2-16882-1
Which Group's Equity Shareholding has a Company of epcor?
CREATE TABLE "subsidiaries" ( "company" text, "type" text, "principal_activities" text, "incorporated_in" text, "group_s_equity_shareholding" text );
SELECT "group_s_equity_shareholding" FROM "subsidiaries" WHERE "company"='epcor';
2-16882-1
Which Incorporated in has a Group's Equity Shareholding of 100%, and a Principal activities of flight academy?
CREATE TABLE "subsidiaries" ( "company" text, "type" text, "principal_activities" text, "incorporated_in" text, "group_s_equity_shareholding" text );
SELECT "incorporated_in" FROM "subsidiaries" WHERE "group_s_equity_shareholding"='100%' AND "principal_activities"='flight academy';
2-16882-1
Which Type has a Company of epcor?
CREATE TABLE "subsidiaries" ( "company" text, "type" text, "principal_activities" text, "incorporated_in" text, "group_s_equity_shareholding" text );
SELECT "type" FROM "subsidiaries" WHERE "company"='epcor';
2-16882-1
Which Type has a Principal activities of health services?
CREATE TABLE "subsidiaries" ( "company" text, "type" text, "principal_activities" text, "incorporated_in" text, "group_s_equity_shareholding" text );
SELECT "type" FROM "subsidiaries" WHERE "principal_activities"='health services';
2-16882-1
What is the 2F of she khae?
CREATE TABLE "simple_present_tense" ( "verb" text, "2_vf" text, "2_f" text, "3_f" text, "2_3_p" text );
SELECT "2_f" FROM "simple_present_tense" WHERE "3_f"='she khae';
2-1625862-7
If 2F is tumi khao, what is 3F?
CREATE TABLE "simple_present_tense" ( "verb" text, "2_vf" text, "2_f" text, "3_f" text, "2_3_p" text );
SELECT "3_f" FROM "simple_present_tense" WHERE "2_f"='tumi khao';
2-1625862-7
For the verb dhoa, what is the 2VF?
CREATE TABLE "simple_present_tense" ( "verb" text, "2_vf" text, "2_f" text, "3_f" text, "2_3_p" text );
SELECT "2_vf" FROM "simple_present_tense" WHERE "verb"='dhoa';
2-1625862-7
What is the name of the subject who ran in the general election for Queen Anne's County State's Attorney?
CREATE TABLE "electoral_history" ( "year" real, "office" text, "election" text, "subject" text, "party" text, "votes" real );
SELECT "subject" FROM "electoral_history" WHERE "election"='general' AND "office"='queen anne''s county state''s attorney';
2-16353840-1
Who was the writer of The Year of the Cat from the BBV?
CREATE TABLE "list_of_doctor_who_audio_releases" ( "title" text, "writer" text, "format" text, "company" text, "release_date" text );
SELECT "writer" FROM "list_of_doctor_who_audio_releases" WHERE "company"='bbv' AND "title"='the year of the cat';
2-1681535-5
How many Goals For have Drawn of 10?
CREATE TABLE "final_table" ( "position" real, "team" text, "played" real, "drawn" real, "lost" real, "goals_for" real, "goals_against" real, "goal_difference" text, "points_1" real );
SELECT COUNT("goals_for") FROM "final_table" WHERE "drawn"=10;
2-17367132-1
Which Lost has Drawn larger than 12, and Goals Against of 54?
CREATE TABLE "final_table" ( "position" real, "team" text, "played" real, "drawn" real, "lost" real, "goals_for" real, "goals_against" real, "goal_difference" text, "points_1" real );
SELECT MAX("lost") FROM "final_table" WHERE "drawn">12 AND "goals_against"=54;
2-17367132-1
What is the record for the Superbrawl 21?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "location" text );
SELECT "record" FROM "mixed_martial_arts_record" WHERE "event"='superbrawl 21';
2-17442887-2
What location shows round was 1, and against Ricky Shivers?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "location" text );
SELECT "location" FROM "mixed_martial_arts_record" WHERE "round"=1 AND "opponent"='ricky shivers';
2-17442887-2
What is the method for a match with a Round larger than 2, he took a loss, and 15–3 was the record?
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 "round">2 AND "res"='loss' AND "record"='15–3';
2-17442887-2
Which Position has a Pick of 11 (via calgary)?
CREATE TABLE "cfl_draft" ( "round" real, "pick" text, "player" text, "position" text, "school_club_team" text );
SELECT "position" FROM "cfl_draft" WHERE "pick"='11 (via calgary)';
2-16912000-1
Which Round has a Pick of 25 (via hamilton)?
CREATE TABLE "cfl_draft" ( "round" real, "pick" text, "player" text, "position" text, "school_club_team" text );
SELECT SUM("round") FROM "cfl_draft" WHERE "pick"='25 (via hamilton)';
2-16912000-1
Which School/Club Team has a Round larger than 3, and a Player of sammy okpro?
CREATE TABLE "cfl_draft" ( "round" real, "pick" text, "player" text, "position" text, "school_club_team" text );
SELECT "school_club_team" FROM "cfl_draft" WHERE "round">3 AND "player"='sammy okpro';
2-16912000-1
Which Round has a Player of sammy okpro?
CREATE TABLE "cfl_draft" ( "round" real, "pick" text, "player" text, "position" text, "school_club_team" text );
SELECT AVG("round") FROM "cfl_draft" WHERE "player"='sammy okpro';
2-16912000-1
Which Position has a Round of 4, and a School/Club Team of concordia?
CREATE TABLE "cfl_draft" ( "round" real, "pick" text, "player" text, "position" text, "school_club_team" text );
SELECT "position" FROM "cfl_draft" WHERE "round"=4 AND "school_club_team"='concordia';
2-16912000-1
What is the Score of the game with a Record of 29–23–13?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "score" FROM "regular_season" WHERE "record"='29–23–13';
2-17294541-2
What is the Visitor of the game with a Record of 21–17–13?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "visitor" FROM "regular_season" WHERE "record"='21–17–13';
2-17294541-2
What is the Visitor of the game on December 25?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "visitor" FROM "regular_season" WHERE "date"='december 25';
2-17294541-2
What is the Date of the game with a Record of 8–10–6?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "record"='8–10–6';
2-17294541-2
What is the Date of the game with a Record of 1–2–4?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "record"='1–2–4';
2-17294541-2
What is the Date of the game with a Record of 27–21–13?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "date" FROM "regular_season" WHERE "record"='27–21–13';
2-17294541-2
Which Year(s) won has a Total smaller than 292, and a Player of hale irwin?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "year_s_won" FROM "made_the_cut" WHERE "total"<292 AND "player"='hale irwin';
2-17162228-2
What is fuzzy zoeller's to par?
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"='fuzzy zoeller';
2-17162228-2
What To par was won in 1982?
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 "year_s_won"='1982';
2-17162228-2
What is curtis strange's to par?
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"='curtis strange';
2-17162228-2
WHAT IS THE SCORE WITH A DATE OF NOVEMBER 18?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "score" FROM "regular_season" WHERE "date"='november 18';
2-17152877-2
WHAT IS THE VISITOR FOR FEBRUARY 9?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "visitor" FROM "regular_season" WHERE "date"='february 9';
2-17152877-2
What is the place of the player who scored less than 70?
CREATE TABLE "first_round" ( "place" text, "player" text, "country" text, "score" real, "to_par" text );
SELECT "place" FROM "first_round" WHERE "score"<70;
2-17245471-3
Which player was chosen by Saskatchewan in a pick larger than 38?
CREATE TABLE "round_six" ( "pick_num" real, "cfl_team" text, "player" text, "position" text, "college" text );
SELECT "player" FROM "round_six" WHERE "pick_num">38 AND "cfl_team"='saskatchewan';
2-16441561-6
If the goals scored were below 6, 11 games were played, and there were 7 assists, what's the sum of points with games meeting these criteria?
CREATE TABLE "play_offs" ( "player" text, "club" text, "games" real, "goals" real, "assists" real, "points" real );
SELECT SUM("points") FROM "play_offs" WHERE "assists"=7 AND "games"=11 AND "goals"<6;
2-16910280-7
What's the highest amount of Games recorded that have more than 10 assists?
CREATE TABLE "play_offs" ( "player" text, "club" text, "games" real, "goals" real, "assists" real, "points" real );
SELECT MAX("games") FROM "play_offs" WHERE "assists">10;
2-16910280-7
What is Updated In Past 30 Days, when Registration is "Open to people 13 and over"?
CREATE TABLE "general_information_feature_comparison" ( "name" text, "year_began" text, "s_registered_user" text, "updated_in_past_30_days" text, "registration" text, "ability_to_syndicate_off_site_feeds" text, "userpics_free" text, "userpics_paid" text, "monthly_cost_for_paid_account" text, "yearly_cost_for_paid_account" text, "permanent_account" text );
SELECT "updated_in_past_30_days" FROM "general_information_feature_comparison" WHERE "registration"='open to people 13 and over';
2-16533529-1
What is Permanent Account, when Updated In Past 30 Days is 10324?
CREATE TABLE "general_information_feature_comparison" ( "name" text, "year_began" text, "s_registered_user" text, "updated_in_past_30_days" text, "registration" text, "ability_to_syndicate_off_site_feeds" text, "userpics_free" text, "userpics_paid" text, "monthly_cost_for_paid_account" text, "yearly_cost_for_paid_account" text, "permanent_account" text );
SELECT "permanent_account" FROM "general_information_feature_comparison" WHERE "updated_in_past_30_days"='10324';
2-16533529-1
What is Userpics Free, when Registration is Open, when Yearly Cost For Paid Account is "unknown", and when Name is Kraslan?
CREATE TABLE "general_information_feature_comparison" ( "name" text, "year_began" text, "s_registered_user" text, "updated_in_past_30_days" text, "registration" text, "ability_to_syndicate_off_site_feeds" text, "userpics_free" text, "userpics_paid" text, "monthly_cost_for_paid_account" text, "yearly_cost_for_paid_account" text, "permanent_account" text );
SELECT "userpics_free" FROM "general_information_feature_comparison" WHERE "registration"='open' AND "yearly_cost_for_paid_account"='unknown' AND "name"='kraslan';
2-16533529-1
What is Userpics Free, when Monthly Cost For Paid Account is "unknown", and when S Registered User is 2340?
CREATE TABLE "general_information_feature_comparison" ( "name" text, "year_began" text, "s_registered_user" text, "updated_in_past_30_days" text, "registration" text, "ability_to_syndicate_off_site_feeds" text, "userpics_free" text, "userpics_paid" text, "monthly_cost_for_paid_account" text, "yearly_cost_for_paid_account" text, "permanent_account" text );
SELECT "userpics_free" FROM "general_information_feature_comparison" WHERE "monthly_cost_for_paid_account"='unknown' AND "s_registered_user"='2340';
2-16533529-1
What is Yearly Cost For Paid Account, when Montly Cost For Paid Account is 5 USD, and when Userpics Paid is 50?
CREATE TABLE "general_information_feature_comparison" ( "name" text, "year_began" text, "s_registered_user" text, "updated_in_past_30_days" text, "registration" text, "ability_to_syndicate_off_site_feeds" text, "userpics_free" text, "userpics_paid" text, "monthly_cost_for_paid_account" text, "yearly_cost_for_paid_account" text, "permanent_account" text );
SELECT "yearly_cost_for_paid_account" FROM "general_information_feature_comparison" WHERE "monthly_cost_for_paid_account"='5 usd' AND "userpics_paid"='50';
2-16533529-1
What is the S Registered User, when Userpics Free is 6 [free] or 15 [plus]?
CREATE TABLE "general_information_feature_comparison" ( "name" text, "year_began" text, "s_registered_user" text, "updated_in_past_30_days" text, "registration" text, "ability_to_syndicate_off_site_feeds" text, "userpics_free" text, "userpics_paid" text, "monthly_cost_for_paid_account" text, "yearly_cost_for_paid_account" text, "permanent_account" text );
SELECT "s_registered_user" FROM "general_information_feature_comparison" WHERE "userpics_free"='6 [free] or 15 [plus]';
2-16533529-1
What is Venue, when Date is "2003-08-13"?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "venue" FROM "international_goals" WHERE "date"='2003-08-13';
2-17235639-1
What is Score, when Date is "2000-05-23"?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "score" FROM "international_goals" WHERE "date"='2000-05-23';
2-17235639-1
What is Result, when Date is "2000-05-23"?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "result" FROM "international_goals" WHERE "date"='2000-05-23';
2-17235639-1
What is Competition, when Date is "1999-08-07"?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "competition" FROM "international_goals" WHERE "date"='1999-08-07';
2-17235639-1
In what Week was Serena Williams 6–1, 6–7(7), 6–3 the Winner?
CREATE TABLE "singles" ( "tournament" text, "surface" text, "week" text, "winners" text, "finalists" text, "semifinalists" text );
SELECT "week" FROM "singles" WHERE "winners"='serena williams 6–1, 6–7(7), 6–3';
2-16851172-1
Who was the Finalist on a Hard Surface with Winner Serena Williams 6–1, 6–7(7), 6–3?
CREATE TABLE "singles" ( "tournament" text, "surface" text, "week" text, "winners" text, "finalists" text, "semifinalists" text );
SELECT "finalists" FROM "singles" WHERE "surface"='hard' AND "winners"='serena williams 6–1, 6–7(7), 6–3';
2-16851172-1
In what Week is the Rome Tournament?
CREATE TABLE "singles" ( "tournament" text, "surface" text, "week" text, "winners" text, "finalists" text, "semifinalists" text );
SELECT "week" FROM "singles" WHERE "tournament"='rome';
2-16851172-1
Which regio has a label of zzt and a date of 27 september 2004?
CREATE TABLE "release_history" ( "region" text, "date" text, "label" text, "format" text, "catalog" text );
SELECT "region" FROM "release_history" WHERE "label"='zzt' AND "date"='27 september 2004';
2-17099276-5
Which catalog has a date of 24 march 2006?
CREATE TABLE "release_history" ( "region" text, "date" text, "label" text, "format" text, "catalog" text );
SELECT "catalog" FROM "release_history" WHERE "date"='24 march 2006';
2-17099276-5
Which format has a region of united kingdom?
CREATE TABLE "release_history" ( "region" text, "date" text, "label" text, "format" text, "catalog" text );
SELECT "format" FROM "release_history" WHERE "region"='united kingdom';
2-17099276-5
Which date has a region of united kingdom?
CREATE TABLE "release_history" ( "region" text, "date" text, "label" text, "format" text, "catalog" text );
SELECT "date" FROM "release_history" WHERE "region"='united kingdom';
2-17099276-5
Which regio has a date of 24 march 2006?
CREATE TABLE "release_history" ( "region" text, "date" text, "label" text, "format" text, "catalog" text );
SELECT "region" FROM "release_history" WHERE "date"='24 march 2006';
2-17099276-5
What is the A330 for A310 B10?
CREATE TABLE "airbus_jetliners_1972_1994" ( "model" text, "a300" text, "a310" text, "a320" text, "a330" text, "a340" text );
SELECT "a330" FROM "airbus_jetliners_1972_1994" WHERE "a310"='b10';
2-164939-1
What is the A330 and the A310 wide?
CREATE TABLE "airbus_jetliners_1972_1994" ( "model" text, "a300" text, "a310" text, "a320" text, "a330" text, "a340" text );
SELECT "a330" FROM "airbus_jetliners_1972_1994" WHERE "a310"='wide';
2-164939-1