question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What's the animals name when the genus/species is rattus norvegicus? | CREATE TABLE table_15417439_1 (common_name VARCHAR, genus_species VARCHAR) | {
"SQL_Query": "SELECT common_name FROM table_15417439_1 WHERE genus_species = \"Rattus norvegicus\""
} |
For the genus/species arabidopsis thaliana, what are the lengths? | CREATE TABLE table_15417439_1 (length VARCHAR, genus_species VARCHAR) | {
"SQL_Query": "SELECT length FROM table_15417439_1 WHERE genus_species = \"Arabidopsis thaliana\""
} |
How many original air dates were there for episode 17? | CREATE TABLE table_15430813_1 (original_air_date VARCHAR, no_in_season VARCHAR) | {
"SQL_Query": "SELECT COUNT(original_air_date) FROM table_15430813_1 WHERE no_in_season = 17"
} |
Which company was based in London, United Kingdom? | CREATE TABLE table_15438337_1 (institution VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_15438337_1 WHERE country = \"London, United Kingdom\""
} |
What was the original air date of Stargate SG-1 written by Peter Deluise? | CREATE TABLE table_15431959_1 (original_air_date VARCHAR, written_by VARCHAR) | {
"SQL_Query": "SELECT original_air_date FROM table_15431959_1 WHERE written_by = \"Peter DeLuise\""
} |
How many seasons did Peter Deluise direct Stargate SG-1? | CREATE TABLE table_15431959_1 (no_in_season INTEGER, directed_by VARCHAR) | {
"SQL_Query": "SELECT MAX(no_in_season) FROM table_15431959_1 WHERE directed_by = \"Peter DeLuise\""
} |
Name the fifth district for william womer | CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR) | {
"SQL_Query": "SELECT fifth_district FROM table_15442974_1 WHERE third_district = \"William Womer\""
} |
Name the third district for christine young | CREATE TABLE table_15442974_1 (third_district VARCHAR, fifth_district VARCHAR) | {
"SQL_Query": "SELECT third_district FROM table_15442974_1 WHERE fifth_district = \"Christine Young\""
} |
Name the fourth district for joan runnels | CREATE TABLE table_15442974_1 (fourth_district VARCHAR, second_district VARCHAR) | {
"SQL_Query": "SELECT fourth_district FROM table_15442974_1 WHERE second_district = \"Joan Runnels\""
} |
Name the fourth district for beverly bodem | CREATE TABLE table_15442974_1 (fourth_district VARCHAR, first_district VARCHAR) | {
"SQL_Query": "SELECT fourth_district FROM table_15442974_1 WHERE first_district = \"Beverly Bodem\""
} |
Name the number for fifth district for richard houskamp | CREATE TABLE table_15442974_1 (fifth_district VARCHAR, third_district VARCHAR) | {
"SQL_Query": "SELECT COUNT(fifth_district) FROM table_15442974_1 WHERE third_district = \"Richard Houskamp\""
} |
Name the fifth district for steve rudoni | CREATE TABLE table_15442974_1 (fifth_district VARCHAR, fourth_district VARCHAR) | {
"SQL_Query": "SELECT fifth_district FROM table_15442974_1 WHERE fourth_district = \"Steve Rudoni\""
} |
What was the location when the stolen ends is 12 and shot pct is 77%? | CREATE TABLE table_1543845_63 (locale VARCHAR, stolen_ends VARCHAR, shot_pct VARCHAR) | {
"SQL_Query": "SELECT locale FROM table_1543845_63 WHERE stolen_ends = 12 AND shot_pct = \"77%\""
} |
How many stolen ends were there when the locale was Sweden? | CREATE TABLE table_1543845_63 (stolen_ends VARCHAR, locale VARCHAR, Sweden VARCHAR) | {
"SQL_Query": "SELECT stolen_ends FROM table_1543845_63 WHERE locale = Sweden"
} |
What was the school/club team whose season was in 2012 and were acquired via trade? | CREATE TABLE table_15463188_17 (school_club_team VARCHAR, season VARCHAR, acquisition_via VARCHAR) | {
"SQL_Query": "SELECT school_club_team FROM table_15463188_17 WHERE season = \"2012\" AND acquisition_via = \"Trade\""
} |
Which school/club team has a player named Mark Sanford? | CREATE TABLE table_15463188_17 (school_club_team VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT school_club_team FROM table_15463188_17 WHERE name = \"Mark Sanford\""
} |
How many school/club teams have a player named Manuel Luis Quezon? | CREATE TABLE table_15463188_17 (number VARCHAR, school_club_team VARCHAR) | {
"SQL_Query": "SELECT COUNT(number) FROM table_15463188_17 WHERE school_club_team = \"Manuel Luis Quezon\""
} |
How many players are listed for the school/club team Washington? | CREATE TABLE table_15463188_17 (name VARCHAR, school_club_team VARCHAR) | {
"SQL_Query": "SELECT COUNT(name) FROM table_15463188_17 WHERE school_club_team = \"Washington\""
} |
How many players with a position are listed for the 2009 season? | CREATE TABLE table_15463188_17 (position VARCHAR, season VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_15463188_17 WHERE season = \"2009\""
} |
Name the school/club for guard | CREATE TABLE table_15463188_1 (school_club_team VARCHAR, position VARCHAR) | {
"SQL_Query": "SELECT school_club_team FROM table_15463188_1 WHERE position = \"Guard\""
} |
Name the position for judy-ann ramirez | CREATE TABLE table_15463188_1 (position VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT position FROM table_15463188_1 WHERE name = \"judy-ann ramirez\""
} |
What is the losing bonus for the team with a point difference of -99? | CREATE TABLE table_15467476_3 (losing_bonus VARCHAR, points_difference VARCHAR) | {
"SQL_Query": "SELECT losing_bonus FROM table_15467476_3 WHERE points_difference = \"-99\""
} |
How many games played for teams with 277 points? | CREATE TABLE table_15467476_3 (played VARCHAR, points_for VARCHAR) | {
"SQL_Query": "SELECT played FROM table_15467476_3 WHERE points_for = \"277\""
} |
How many games won for teams with 49 tries against? | CREATE TABLE table_15467476_3 (won VARCHAR, tries_against VARCHAR) | {
"SQL_Query": "SELECT won FROM table_15467476_3 WHERE tries_against = \"49\""
} |
How many teams have 62 tries against? | CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_against VARCHAR) | {
"SQL_Query": "SELECT COUNT(points_difference) FROM table_15467476_3 WHERE tries_against = \"62\""
} |
How many tries for, for club cambrian welfare rfc? | CREATE TABLE table_15467476_3 (tries_for VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT tries_for FROM table_15467476_3 WHERE club = \"Cambrian Welfare RFC\""
} |
How many teams have 21 tries for? | CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_for VARCHAR) | {
"SQL_Query": "SELECT COUNT(points_difference) FROM table_15467476_3 WHERE tries_for = \"21\""
} |
How many chassis used number 34? | CREATE TABLE table_15491596_1 (chassis VARCHAR, no VARCHAR) | {
"SQL_Query": "SELECT COUNT(chassis) FROM table_15491596_1 WHERE no = 34"
} |
Who was the constructor of car 22? | CREATE TABLE table_15491596_1 (constructor VARCHAR, no VARCHAR) | {
"SQL_Query": "SELECT constructor FROM table_15491596_1 WHERE no = 22"
} |
How many cars used number 48? | CREATE TABLE table_15491596_1 (engine VARCHAR, no VARCHAR) | {
"SQL_Query": "SELECT COUNT(engine) FROM table_15491596_1 WHERE no = 48"
} |
Who drove car 44? | CREATE TABLE table_15491596_1 (driver VARCHAR, no VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_15491596_1 WHERE no = 44"
} |
Name the total number of years where runner-up and championship is us open | CREATE TABLE table_1547951_3 (year VARCHAR, outcome VARCHAR, championship VARCHAR) | {
"SQL_Query": "SELECT COUNT(year) FROM table_1547951_3 WHERE outcome = \"Runner-up\" AND championship = \"US Open\""
} |
Name the surfaace where outcome is runner-up and championship is us open | CREATE TABLE table_1547951_3 (surface VARCHAR, outcome VARCHAR, championship VARCHAR) | {
"SQL_Query": "SELECT surface FROM table_1547951_3 WHERE outcome = \"Runner-up\" AND championship = \"US Open\""
} |
Name the partner for mark woodforde martina navratilova | CREATE TABLE table_1547951_3 (partner VARCHAR, opponents VARCHAR) | {
"SQL_Query": "SELECT partner FROM table_1547951_3 WHERE opponents = \"Mark Woodforde Martina Navratilova\""
} |
Name the score for rick leach zina garrison | CREATE TABLE table_1547951_3 (score VARCHAR, opponents VARCHAR) | {
"SQL_Query": "SELECT score FROM table_1547951_3 WHERE opponents = \"Rick Leach Zina Garrison\""
} |
Name the swimsuit for arizona | CREATE TABLE table_15532342_2 (swimsuit VARCHAR, state VARCHAR) | {
"SQL_Query": "SELECT swimsuit FROM table_15532342_2 WHERE state = \"Arizona\""
} |
Name the driver for race 2 7 | CREATE TABLE table_15530244_5 (driver VARCHAR, race_2 VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_15530244_5 WHERE race_2 = \"7\""
} |
Name the total number of qualifiying for race 3 being 3 | CREATE TABLE table_15530244_5 (qualifying VARCHAR, race_3 VARCHAR) | {
"SQL_Query": "SELECT COUNT(qualifying) FROM table_15530244_5 WHERE race_3 = \"3\""
} |
Name the driver for race 2 2 | CREATE TABLE table_15530244_5 (driver VARCHAR, race_2 VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_15530244_5 WHERE race_2 = \"2\""
} |
Name the race 1 when race 3 is 8 | CREATE TABLE table_15530244_5 (race_1 VARCHAR, race_3 VARCHAR) | {
"SQL_Query": "SELECT race_1 FROM table_15530244_5 WHERE race_3 = \"8\""
} |
Name the race 2 for james winslow | CREATE TABLE table_15530244_5 (race_2 VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT race_2 FROM table_15530244_5 WHERE driver = \"James Winslow\""
} |
Name the total number of positions for race 1 being 2 | CREATE TABLE table_15530244_5 (pos VARCHAR, race_1 VARCHAR) | {
"SQL_Query": "SELECT COUNT(pos) FROM table_15530244_5 WHERE race_1 = \"2\""
} |
Did the race get reported where the winning team was Newman Wachs racing and the pole belonged to Carl Skerlong | CREATE TABLE table_15511178_3 (report VARCHAR, pole_position VARCHAR, winning_team VARCHAR) | {
"SQL_Query": "SELECT report FROM table_15511178_3 WHERE pole_position = \"Carl Skerlong\" AND winning_team = \"Newman Wachs Racing\""
} |
Did the round 8 race get reported | CREATE TABLE table_15511178_3 (report VARCHAR, rd VARCHAR) | {
"SQL_Query": "SELECT report FROM table_15511178_3 WHERE rd = 8"
} |
Which race was the winning team mathiasen motorsports and the pole belonged to jonathan bomarito | CREATE TABLE table_15511178_3 (race VARCHAR, winning_team VARCHAR, pole_position VARCHAR) | {
"SQL_Query": "SELECT race FROM table_15511178_3 WHERE winning_team = \"Mathiasen Motorsports\" AND pole_position = \"Jonathan Bomarito\""
} |
how many winners were in round 8 | CREATE TABLE table_15511178_3 (winning_driver VARCHAR, rd VARCHAR) | {
"SQL_Query": "SELECT COUNT(winning_driver) FROM table_15511178_3 WHERE rd = 8"
} |
What channel tv (dt) plays the KPIX station? | CREATE TABLE table_1553485_1 (channel_tv___dt__ VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT channel_tv___dt__ FROM table_1553485_1 WHERE station = \"KPIX\""
} |
Which city of license/market has 3 (26) as their channel tv (dt)? | CREATE TABLE table_1553485_1 (city_of_license__market VARCHAR, channel_tv___dt__ VARCHAR) | {
"SQL_Query": "SELECT city_of_license__market FROM table_1553485_1 WHERE channel_tv___dt__ = \"3 (26)\""
} |
Which channel tv (dt) plays in San Francisco - Oakland - San Jose? | CREATE TABLE table_1553485_1 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR) | {
"SQL_Query": "SELECT channel_tv___dt__ FROM table_1553485_1 WHERE city_of_license__market = \"San Francisco - Oakland - San Jose\""
} |
How many years has station KPIX been owned? | CREATE TABLE table_1553485_1 (years_owned VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT COUNT(years_owned) FROM table_1553485_1 WHERE station = \"KPIX\""
} |
Who currently affiliates in San Francisco - Oakland - San Jose? | CREATE TABLE table_1553485_1 (current_affiliation VARCHAR, city_of_license__market VARCHAR) | {
"SQL_Query": "SELECT current_affiliation FROM table_1553485_1 WHERE city_of_license__market = \"San Francisco - Oakland - San Jose\""
} |
In which condition(s) is bleeding time prolonged and prothrombin time unaffected? | CREATE TABLE table_1555308_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR) | {
"SQL_Query": "SELECT condition FROM table_1555308_1 WHERE bleeding_time = \"Prolonged\" AND prothrombin_time = \"Unaffected\""
} |
How many entries for prothrombin time are there where platelet count is "decreased or unaffected"? | CREATE TABLE table_1555308_1 (prothrombin_time VARCHAR, platelet_count VARCHAR) | {
"SQL_Query": "SELECT COUNT(prothrombin_time) FROM table_1555308_1 WHERE platelet_count = \"Decreased or unaffected\""
} |
How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected? | CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR) | {
"SQL_Query": "SELECT bleeding_time FROM table_1555308_1 WHERE platelet_count = \"Decreased\" AND prothrombin_time = \"Unaffected\""
} |
What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected? | CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR) | {
"SQL_Query": "SELECT bleeding_time FROM table_1555308_1 WHERE prothrombin_time = \"Unaffected\" AND platelet_count = \"Unaffected\""
} |
What is the percentage of land area in the ecozone that the percentage protected is 7.96? | CREATE TABLE table_15555661_2 (percentage_of_land_area VARCHAR, percentage_protected VARCHAR) | {
"SQL_Query": "SELECT percentage_of_land_area FROM table_15555661_2 WHERE percentage_protected = \"7.96\""
} |
What is the percentage of total area in the ecozone that the percentage of land area is 2.2? | CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_of_land_area VARCHAR) | {
"SQL_Query": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_of_land_area = \"2.2\""
} |
What is the percentage of total area in the ecozone that the percentage protected is 8.06? | CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_protected VARCHAR) | {
"SQL_Query": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_protected = \"8.06\""
} |
What is the percentage of land area in the ecozone that the percentage protected is 15.28? | CREATE TABLE table_15555661_2 (percentage_of_land_area VARCHAR, percentage_protected VARCHAR) | {
"SQL_Query": "SELECT percentage_of_land_area FROM table_15555661_2 WHERE percentage_protected = \"15.28\""
} |
How large is the Boreal Shield in km2? | CREATE TABLE table_15555661_2 (area__km²_ VARCHAR, ecozone VARCHAR) | {
"SQL_Query": "SELECT COUNT(area__km²_) FROM table_15555661_2 WHERE ecozone = \"Boreal Shield\""
} |
What is the percentage of total area in the ecozone that the area is 1782252 km2? | CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, area__km²_ VARCHAR) | {
"SQL_Query": "SELECT percentage_of_total_area FROM table_15555661_2 WHERE area__km²_ = 1782252"
} |
What is the condition of the platelet counts in hemophilia? | CREATE TABLE table_1557752_1 (platelet_count VARCHAR, condition VARCHAR) | {
"SQL_Query": "SELECT platelet_count FROM table_1557752_1 WHERE condition = \"Hemophilia\""
} |
What is the prothrombin time in Von willebrand disease? | CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, condition VARCHAR) | {
"SQL_Query": "SELECT prothrombin_time FROM table_1557752_1 WHERE condition = \"Von Willebrand disease\""
} |
If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time? | CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR) | {
"SQL_Query": "SELECT prothrombin_time FROM table_1557752_1 WHERE partial_thromboplastin_time = \"Prolonged\" AND bleeding_time = \"Prolonged\""
} |
What is the bleeding time in Bernard-soulier syndrome? | CREATE TABLE table_1557752_1 (bleeding_time VARCHAR, condition VARCHAR) | {
"SQL_Query": "SELECT bleeding_time FROM table_1557752_1 WHERE condition = \"Bernard-Soulier syndrome\""
} |
Which ring names are currently ranked f0 jūryō 3 west? | CREATE TABLE table_1557974_1 (ring_name VARCHAR, current_rank VARCHAR) | {
"SQL_Query": "SELECT ring_name FROM table_1557974_1 WHERE current_rank = \"f0 Jūryō 3 West\""
} |
How many wrestlers were born in nara, and have a completed 'career and other notes' section? | CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, birthplace VARCHAR) | {
"SQL_Query": "SELECT COUNT(career_and_other_notes) FROM table_1557974_1 WHERE birthplace = \"Nara\""
} |
What are the debut year for wrestlers born in Nara? | CREATE TABLE table_1557974_1 (debut VARCHAR, birthplace VARCHAR) | {
"SQL_Query": "SELECT debut FROM table_1557974_1 WHERE birthplace = \"Nara\""
} |
Where were the wrestlers born who debuted in 2002-7? | CREATE TABLE table_1557974_1 (birthplace VARCHAR, debut VARCHAR) | {
"SQL_Query": "SELECT birthplace FROM table_1557974_1 WHERE debut = \"2002-7\""
} |
What are the career and other notes for wrestlers whose stable is oguruma? | CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, stable VARCHAR) | {
"SQL_Query": "SELECT career_and_other_notes FROM table_1557974_1 WHERE stable = \"Oguruma\""
} |
Name the kinship for *t-ina | CREATE TABLE table_15568886_14 (kinship VARCHAR, proto_malayo_polynesian VARCHAR) | {
"SQL_Query": "SELECT kinship FROM table_15568886_14 WHERE proto_malayo_polynesian = \"*t-ina\""
} |
Name the number of proto austronesian for *natu | CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR) | {
"SQL_Query": "SELECT COUNT(proto_austronesian) FROM table_15568886_14 WHERE proto_oceanic = \"*natu\""
} |
Name the ptor-austronesian for father | CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, kinship VARCHAR) | {
"SQL_Query": "SELECT proto_austronesian FROM table_15568886_14 WHERE kinship = \"father\""
} |
Name the proto oceanic for *fafine | CREATE TABLE table_15568886_14 (proto_oceanic VARCHAR, proto_polynesian VARCHAR) | {
"SQL_Query": "SELECT proto_oceanic FROM table_15568886_14 WHERE proto_polynesian = \"*fafine\""
} |
Name the proto-austrronesian for *pine, *papine | CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR) | {
"SQL_Query": "SELECT proto_austronesian FROM table_15568886_14 WHERE proto_oceanic = \"*pine, *papine\""
} |
Name who wrote number 47 | CREATE TABLE table_15584067_4 (written_by VARCHAR, no_in_series VARCHAR) | {
"SQL_Query": "SELECT written_by FROM table_15584067_4 WHERE no_in_series = 47"
} |
What is the largest mass(kg)? | CREATE TABLE table_1558077_2 (mass__kg_ INTEGER) | {
"SQL_Query": "SELECT MAX(mass__kg_) FROM table_1558077_2"
} |
Which college did draft pick #143 attend? | CREATE TABLE table_15582870_1 (college VARCHAR, choice VARCHAR) | {
"SQL_Query": "SELECT college FROM table_15582870_1 WHERE choice = 143"
} |
How heavy were the players who attended Arkansas? | CREATE TABLE table_15582870_1 (weight VARCHAR, college VARCHAR) | {
"SQL_Query": "SELECT weight FROM table_15582870_1 WHERE college = \"Arkansas\""
} |
Which college did the player weighing 207 pounds attend? | CREATE TABLE table_15582870_1 (college VARCHAR, weight VARCHAR) | {
"SQL_Query": "SELECT college FROM table_15582870_1 WHERE weight = 207"
} |
Name who wrote the episode when the viewers was 1.81 | CREATE TABLE table_15584067_7 (written_by VARCHAR, us_viewers__million_ VARCHAR) | {
"SQL_Query": "SELECT written_by FROM table_15584067_7 WHERE us_viewers__million_ = \"1.81\""
} |
Name who directed the 114 episode in the series | CREATE TABLE table_15584067_7 (directed_by VARCHAR, no_in_series VARCHAR) | {
"SQL_Query": "SELECT directed_by FROM table_15584067_7 WHERE no_in_series = \"114\""
} |
Name the total number of air dates for 102 episode | CREATE TABLE table_15584067_7 (original_air_date VARCHAR, no_in_series VARCHAR) | {
"SQL_Query": "SELECT COUNT(original_air_date) FROM table_15584067_7 WHERE no_in_series = \"102\""
} |
Name who wrote the 11 number in the season | CREATE TABLE table_15584067_7 (written_by VARCHAR, no_in_season VARCHAR) | {
"SQL_Query": "SELECT written_by FROM table_15584067_7 WHERE no_in_season = \"11\""
} |
Name the award name for black ocean current | CREATE TABLE table_15584199_3 (award_name VARCHAR, team_name VARCHAR) | {
"SQL_Query": "SELECT award_name FROM table_15584199_3 WHERE team_name = \"BLACK OCEAN CURRENT\""
} |
What position(s) do players from florida state play? | CREATE TABLE table_15592941_1 (position VARCHAR, college VARCHAR) | {
"SQL_Query": "SELECT position FROM table_15592941_1 WHERE college = \"Florida State\""
} |
How much does geno hayes weigh? | CREATE TABLE table_15592941_1 (weight VARCHAR, player_name VARCHAR) | {
"SQL_Query": "SELECT weight FROM table_15592941_1 WHERE player_name = \"Geno Hayes\""
} |
What college did jeremy zuttah attend? | CREATE TABLE table_15592941_1 (college VARCHAR, player_name VARCHAR) | {
"SQL_Query": "SELECT college FROM table_15592941_1 WHERE player_name = \"Jeremy Zuttah\""
} |
When the stolen ends equal 5 whats the amount of pa? | CREATE TABLE table_15597975_2 (pa INTEGER, stolen_ends VARCHAR) | {
"SQL_Query": "SELECT MAX(pa) FROM table_15597975_2 WHERE stolen_ends = 5"
} |
What position is the player whose first year is 2014 | CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, first_season VARCHAR) | {
"SQL_Query": "SELECT position_in_2013 FROM table_1560673_1 WHERE first_season = 2014"
} |
What was the players position in 2013 who had 29 seasons in the second tier | CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, number_of_seasons_in_second_tier VARCHAR) | {
"SQL_Query": "SELECT position_in_2013 FROM table_1560673_1 WHERE number_of_seasons_in_second_tier = \"29\""
} |
What was the first season for Syrianska FC | CREATE TABLE table_1560673_1 (first_season VARCHAR, club VARCHAR) | {
"SQL_Query": "SELECT first_season FROM table_1560673_1 WHERE club = \"Syrianska FC\""
} |
What was the earliest season recorded for any team | CREATE TABLE table_1560673_1 (first_season INTEGER) | {
"SQL_Query": "SELECT MIN(first_season) FROM table_1560673_1"
} |
Name the number of points for october 11 | CREATE TABLE table_15607589_2 (points_for INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT MAX(points_for) FROM table_15607589_2 WHERE date = \"October 11\""
} |
Name the date for week 9 | CREATE TABLE table_15607589_2 (date VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT date FROM table_15607589_2 WHERE week = 9"
} |
Name the points against for november 7 | CREATE TABLE table_15607589_2 (points_against VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT points_against FROM table_15607589_2 WHERE date = \"November 7\""
} |
Name the points against for november 14 | CREATE TABLE table_15607589_2 (points_against VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT points_against FROM table_15607589_2 WHERE date = \"November 14\""
} |
Name the first downs for points against being 0 | CREATE TABLE table_15607589_2 (first_downs VARCHAR, points_against VARCHAR) | {
"SQL_Query": "SELECT first_downs FROM table_15607589_2 WHERE points_against = 0"
} |
Name the record for new york giants | CREATE TABLE table_15607589_2 (record VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT record FROM table_15607589_2 WHERE opponent = \"New York Giants\""
} |
Name the least purse for 2011 | CREATE TABLE table_15618241_1 (purse___us INTEGER, year VARCHAR) | {
"SQL_Query": "SELECT MIN(purse___us) AS $__ FROM table_15618241_1 WHERE year = 2011"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.