instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: What is the losing bonus for the team with a point difference of -99?
The relevant table was constructed using the following SQL : CREATE TABLE table_15467476_3 (losing_bonus VARCHAR, points_difference VARCHAR)
SELECT losing_bonus FROM table_15467476_3 WHERE points_difference = "-99"
Write a SQL query that answers the following question: How many games played for teams with 277 points?
The relevant table was constructed using the following SQL : CREATE TABLE table_15467476_3 (played VARCHAR, points_for VARCHAR)
SELECT played FROM table_15467476_3 WHERE points_for = "277"
Write a SQL query that answers the following question: How many games won for teams with 49 tries against?
The relevant table was constructed using the following SQL : CREATE TABLE table_15467476_3 (won VARCHAR, tries_against VARCHAR)
SELECT won FROM table_15467476_3 WHERE tries_against = "49"
Write a SQL query that answers the following question: How many teams have 62 tries against?
The relevant table was constructed using the following SQL : CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_against VARCHAR)
SELECT COUNT(points_difference) FROM table_15467476_3 WHERE tries_against = "62"
Write a SQL query that answers the following question: How many tries for, for club cambrian welfare rfc?
The relevant table was constructed using the following SQL : CREATE TABLE table_15467476_3 (tries_for VARCHAR, club VARCHAR)
SELECT tries_for FROM table_15467476_3 WHERE club = "Cambrian Welfare RFC"
Write a SQL query that answers the following question: How many teams have 21 tries for?
The relevant table was constructed using the following SQL : CREATE TABLE table_15467476_3 (points_difference VARCHAR, tries_for VARCHAR)
SELECT COUNT(points_difference) FROM table_15467476_3 WHERE tries_for = "21"
Write a SQL query that answers the following question: How many chassis used number 34?
The relevant table was constructed using the following SQL : CREATE TABLE table_15491596_1 (chassis VARCHAR, no VARCHAR)
SELECT COUNT(chassis) FROM table_15491596_1 WHERE no = 34
Write a SQL query that answers the following question: Who was the constructor of car 22?
The relevant table was constructed using the following SQL : CREATE TABLE table_15491596_1 (constructor VARCHAR, no VARCHAR)
SELECT constructor FROM table_15491596_1 WHERE no = 22
Write a SQL query that answers the following question: How many cars used number 48?
The relevant table was constructed using the following SQL : CREATE TABLE table_15491596_1 (engine VARCHAR, no VARCHAR)
SELECT COUNT(engine) FROM table_15491596_1 WHERE no = 48
Write a SQL query that answers the following question: Who drove car 44?
The relevant table was constructed using the following SQL : CREATE TABLE table_15491596_1 (driver VARCHAR, no VARCHAR)
SELECT driver FROM table_15491596_1 WHERE no = 44
Write a SQL query that answers the following question: Name the total number of years where runner-up and championship is us open
The relevant table was constructed using the following SQL : CREATE TABLE table_1547951_3 (year VARCHAR, outcome VARCHAR, championship VARCHAR)
SELECT COUNT(year) FROM table_1547951_3 WHERE outcome = "Runner-up" AND championship = "US Open"
Write a SQL query that answers the following question: Name the surfaace where outcome is runner-up and championship is us open
The relevant table was constructed using the following SQL : CREATE TABLE table_1547951_3 (surface VARCHAR, outcome VARCHAR, championship VARCHAR)
SELECT surface FROM table_1547951_3 WHERE outcome = "Runner-up" AND championship = "US Open"
Write a SQL query that answers the following question: Name the partner for mark woodforde martina navratilova
The relevant table was constructed using the following SQL : CREATE TABLE table_1547951_3 (partner VARCHAR, opponents VARCHAR)
SELECT partner FROM table_1547951_3 WHERE opponents = "Mark Woodforde Martina Navratilova"
Write a SQL query that answers the following question: Name the score for rick leach zina garrison
The relevant table was constructed using the following SQL : CREATE TABLE table_1547951_3 (score VARCHAR, opponents VARCHAR)
SELECT score FROM table_1547951_3 WHERE opponents = "Rick Leach Zina Garrison"
Write a SQL query that answers the following question: Name the swimsuit for arizona
The relevant table was constructed using the following SQL : CREATE TABLE table_15532342_2 (swimsuit VARCHAR, state VARCHAR)
SELECT swimsuit FROM table_15532342_2 WHERE state = "Arizona"
Write a SQL query that answers the following question: Name the driver for race 2 7
The relevant table was constructed using the following SQL : CREATE TABLE table_15530244_5 (driver VARCHAR, race_2 VARCHAR)
SELECT driver FROM table_15530244_5 WHERE race_2 = "7"
Write a SQL query that answers the following question: Name the total number of qualifiying for race 3 being 3
The relevant table was constructed using the following SQL : CREATE TABLE table_15530244_5 (qualifying VARCHAR, race_3 VARCHAR)
SELECT COUNT(qualifying) FROM table_15530244_5 WHERE race_3 = "3"
Write a SQL query that answers the following question: Name the driver for race 2 2
The relevant table was constructed using the following SQL : CREATE TABLE table_15530244_5 (driver VARCHAR, race_2 VARCHAR)
SELECT driver FROM table_15530244_5 WHERE race_2 = "2"
Write a SQL query that answers the following question: Name the race 1 when race 3 is 8
The relevant table was constructed using the following SQL : CREATE TABLE table_15530244_5 (race_1 VARCHAR, race_3 VARCHAR)
SELECT race_1 FROM table_15530244_5 WHERE race_3 = "8"
Write a SQL query that answers the following question: Name the race 2 for james winslow
The relevant table was constructed using the following SQL : CREATE TABLE table_15530244_5 (race_2 VARCHAR, driver VARCHAR)
SELECT race_2 FROM table_15530244_5 WHERE driver = "James Winslow"
Write a SQL query that answers the following question: Name the total number of positions for race 1 being 2
The relevant table was constructed using the following SQL : CREATE TABLE table_15530244_5 (pos VARCHAR, race_1 VARCHAR)
SELECT COUNT(pos) FROM table_15530244_5 WHERE race_1 = "2"
Write a SQL query that answers the following question: Did the race get reported where the winning team was Newman Wachs racing and the pole belonged to Carl Skerlong
The relevant table was constructed using the following SQL : CREATE TABLE table_15511178_3 (report VARCHAR, pole_position VARCHAR, winning_team VARCHAR)
SELECT report FROM table_15511178_3 WHERE pole_position = "Carl Skerlong" AND winning_team = "Newman Wachs Racing"
Write a SQL query that answers the following question: Did the round 8 race get reported
The relevant table was constructed using the following SQL : CREATE TABLE table_15511178_3 (report VARCHAR, rd VARCHAR)
SELECT report FROM table_15511178_3 WHERE rd = 8
Write a SQL query that answers the following question: Which race was the winning team mathiasen motorsports and the pole belonged to jonathan bomarito
The relevant table was constructed using the following SQL : CREATE TABLE table_15511178_3 (race VARCHAR, winning_team VARCHAR, pole_position VARCHAR)
SELECT race FROM table_15511178_3 WHERE winning_team = "Mathiasen Motorsports" AND pole_position = "Jonathan Bomarito"
Write a SQL query that answers the following question: how many winners were in round 8
The relevant table was constructed using the following SQL : CREATE TABLE table_15511178_3 (winning_driver VARCHAR, rd VARCHAR)
SELECT COUNT(winning_driver) FROM table_15511178_3 WHERE rd = 8
Write a SQL query that answers the following question: What channel tv (dt) plays the KPIX station?
The relevant table was constructed using the following SQL : CREATE TABLE table_1553485_1 (channel_tv___dt__ VARCHAR, station VARCHAR)
SELECT channel_tv___dt__ FROM table_1553485_1 WHERE station = "KPIX"
Write a SQL query that answers the following question: Which city of license/market has 3 (26) as their channel tv (dt)?
The relevant table was constructed using the following SQL : CREATE TABLE table_1553485_1 (city_of_license__market VARCHAR, channel_tv___dt__ VARCHAR)
SELECT city_of_license__market FROM table_1553485_1 WHERE channel_tv___dt__ = "3 (26)"
Write a SQL query that answers the following question: Which channel tv (dt) plays in San Francisco - Oakland - San Jose?
The relevant table was constructed using the following SQL : CREATE TABLE table_1553485_1 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR)
SELECT channel_tv___dt__ FROM table_1553485_1 WHERE city_of_license__market = "San Francisco - Oakland - San Jose"
Write a SQL query that answers the following question: How many years has station KPIX been owned?
The relevant table was constructed using the following SQL : CREATE TABLE table_1553485_1 (years_owned VARCHAR, station VARCHAR)
SELECT COUNT(years_owned) FROM table_1553485_1 WHERE station = "KPIX"
Write a SQL query that answers the following question: Who currently affiliates in San Francisco - Oakland - San Jose?
The relevant table was constructed using the following SQL : CREATE TABLE table_1553485_1 (current_affiliation VARCHAR, city_of_license__market VARCHAR)
SELECT current_affiliation FROM table_1553485_1 WHERE city_of_license__market = "San Francisco - Oakland - San Jose"
Write a SQL query that answers the following question: In which condition(s) is bleeding time prolonged and prothrombin time unaffected?
The relevant table was constructed using the following SQL : CREATE TABLE table_1555308_1 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
SELECT condition FROM table_1555308_1 WHERE bleeding_time = "Prolonged" AND prothrombin_time = "Unaffected"
Write a SQL query that answers the following question: How many entries for prothrombin time are there where platelet count is "decreased or unaffected"?
The relevant table was constructed using the following SQL : CREATE TABLE table_1555308_1 (prothrombin_time VARCHAR, platelet_count VARCHAR)
SELECT COUNT(prothrombin_time) FROM table_1555308_1 WHERE platelet_count = "Decreased or unaffected"
Write a SQL query that answers the following question: How is the bleeding time wherein platelet count is decreased and prothrombin time is unaffected?
The relevant table was constructed using the following SQL : CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, platelet_count VARCHAR, prothrombin_time VARCHAR)
SELECT bleeding_time FROM table_1555308_1 WHERE platelet_count = "Decreased" AND prothrombin_time = "Unaffected"
Write a SQL query that answers the following question: What are all the possible bleeding time results where prothrombin time and platelet count are both unaffected?
The relevant table was constructed using the following SQL : CREATE TABLE table_1555308_1 (bleeding_time VARCHAR, prothrombin_time VARCHAR, platelet_count VARCHAR)
SELECT bleeding_time FROM table_1555308_1 WHERE prothrombin_time = "Unaffected" AND platelet_count = "Unaffected"
Write a SQL query that answers the following question: What is the percentage of land area in the ecozone that the percentage protected is 7.96?
The relevant table was constructed using the following SQL : CREATE TABLE table_15555661_2 (percentage_of_land_area VARCHAR, percentage_protected VARCHAR)
SELECT percentage_of_land_area FROM table_15555661_2 WHERE percentage_protected = "7.96"
Write a SQL query that answers the following question: What is the percentage of total area in the ecozone that the percentage of land area is 2.2?
The relevant table was constructed using the following SQL : CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_of_land_area VARCHAR)
SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_of_land_area = "2.2"
Write a SQL query that answers the following question: What is the percentage of total area in the ecozone that the percentage protected is 8.06?
The relevant table was constructed using the following SQL : CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, percentage_protected VARCHAR)
SELECT percentage_of_total_area FROM table_15555661_2 WHERE percentage_protected = "8.06"
Write a SQL query that answers the following question: What is the percentage of land area in the ecozone that the percentage protected is 15.28?
The relevant table was constructed using the following SQL : CREATE TABLE table_15555661_2 (percentage_of_land_area VARCHAR, percentage_protected VARCHAR)
SELECT percentage_of_land_area FROM table_15555661_2 WHERE percentage_protected = "15.28"
Write a SQL query that answers the following question: How large is the Boreal Shield in km2?
The relevant table was constructed using the following SQL : CREATE TABLE table_15555661_2 (area__km²_ VARCHAR, ecozone VARCHAR)
SELECT COUNT(area__km²_) FROM table_15555661_2 WHERE ecozone = "Boreal Shield"
Write a SQL query that answers the following question: What is the percentage of total area in the ecozone that the area is 1782252 km2?
The relevant table was constructed using the following SQL : CREATE TABLE table_15555661_2 (percentage_of_total_area VARCHAR, area__km²_ VARCHAR)
SELECT percentage_of_total_area FROM table_15555661_2 WHERE area__km²_ = 1782252
Write a SQL query that answers the following question: What is the condition of the platelet counts in hemophilia?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557752_1 (platelet_count VARCHAR, condition VARCHAR)
SELECT platelet_count FROM table_1557752_1 WHERE condition = "Hemophilia"
Write a SQL query that answers the following question: What is the prothrombin time in Von willebrand disease?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, condition VARCHAR)
SELECT prothrombin_time FROM table_1557752_1 WHERE condition = "Von Willebrand disease"
Write a SQL query that answers the following question: If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
SELECT prothrombin_time FROM table_1557752_1 WHERE partial_thromboplastin_time = "Prolonged" AND bleeding_time = "Prolonged"
Write a SQL query that answers the following question: What is the bleeding time in Bernard-soulier syndrome?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557752_1 (bleeding_time VARCHAR, condition VARCHAR)
SELECT bleeding_time FROM table_1557752_1 WHERE condition = "Bernard-Soulier syndrome"
Write a SQL query that answers the following question: Which ring names are currently ranked f0 jūryō 3 west?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557974_1 (ring_name VARCHAR, current_rank VARCHAR)
SELECT ring_name FROM table_1557974_1 WHERE current_rank = "f0 Jūryō 3 West"
Write a SQL query that answers the following question: How many wrestlers were born in nara, and have a completed 'career and other notes' section?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, birthplace VARCHAR)
SELECT COUNT(career_and_other_notes) FROM table_1557974_1 WHERE birthplace = "Nara"
Write a SQL query that answers the following question: What are the debut year for wrestlers born in Nara?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557974_1 (debut VARCHAR, birthplace VARCHAR)
SELECT debut FROM table_1557974_1 WHERE birthplace = "Nara"
Write a SQL query that answers the following question: Where were the wrestlers born who debuted in 2002-7?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557974_1 (birthplace VARCHAR, debut VARCHAR)
SELECT birthplace FROM table_1557974_1 WHERE debut = "2002-7"
Write a SQL query that answers the following question: What are the career and other notes for wrestlers whose stable is oguruma?
The relevant table was constructed using the following SQL : CREATE TABLE table_1557974_1 (career_and_other_notes VARCHAR, stable VARCHAR)
SELECT career_and_other_notes FROM table_1557974_1 WHERE stable = "Oguruma"
Write a SQL query that answers the following question: Name the kinship for *t-ina
The relevant table was constructed using the following SQL : CREATE TABLE table_15568886_14 (kinship VARCHAR, proto_malayo_polynesian VARCHAR)
SELECT kinship FROM table_15568886_14 WHERE proto_malayo_polynesian = "*t-ina"
Write a SQL query that answers the following question: Name the number of proto austronesian for *natu
The relevant table was constructed using the following SQL : CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)
SELECT COUNT(proto_austronesian) FROM table_15568886_14 WHERE proto_oceanic = "*natu"
Write a SQL query that answers the following question: Name the ptor-austronesian for father
The relevant table was constructed using the following SQL : CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, kinship VARCHAR)
SELECT proto_austronesian FROM table_15568886_14 WHERE kinship = "father"
Write a SQL query that answers the following question: Name the proto oceanic for *fafine
The relevant table was constructed using the following SQL : CREATE TABLE table_15568886_14 (proto_oceanic VARCHAR, proto_polynesian VARCHAR)
SELECT proto_oceanic FROM table_15568886_14 WHERE proto_polynesian = "*fafine"
Write a SQL query that answers the following question: Name the proto-austrronesian for *pine, *papine
The relevant table was constructed using the following SQL : CREATE TABLE table_15568886_14 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)
SELECT proto_austronesian FROM table_15568886_14 WHERE proto_oceanic = "*pine, *papine"
Write a SQL query that answers the following question: Name who wrote number 47
The relevant table was constructed using the following SQL : CREATE TABLE table_15584067_4 (written_by VARCHAR, no_in_series VARCHAR)
SELECT written_by FROM table_15584067_4 WHERE no_in_series = 47
Write a SQL query that answers the following question: What is the largest mass(kg)?
The relevant table was constructed using the following SQL : CREATE TABLE table_1558077_2 (mass__kg_ INTEGER)
SELECT MAX(mass__kg_) FROM table_1558077_2
Write a SQL query that answers the following question: Which college did draft pick #143 attend?
The relevant table was constructed using the following SQL : CREATE TABLE table_15582870_1 (college VARCHAR, choice VARCHAR)
SELECT college FROM table_15582870_1 WHERE choice = 143
Write a SQL query that answers the following question: How heavy were the players who attended Arkansas?
The relevant table was constructed using the following SQL : CREATE TABLE table_15582870_1 (weight VARCHAR, college VARCHAR)
SELECT weight FROM table_15582870_1 WHERE college = "Arkansas"
Write a SQL query that answers the following question: Which college did the player weighing 207 pounds attend?
The relevant table was constructed using the following SQL : CREATE TABLE table_15582870_1 (college VARCHAR, weight VARCHAR)
SELECT college FROM table_15582870_1 WHERE weight = 207
Write a SQL query that answers the following question: Name who wrote the episode when the viewers was 1.81
The relevant table was constructed using the following SQL : CREATE TABLE table_15584067_7 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_15584067_7 WHERE us_viewers__million_ = "1.81"
Write a SQL query that answers the following question: Name who directed the 114 episode in the series
The relevant table was constructed using the following SQL : CREATE TABLE table_15584067_7 (directed_by VARCHAR, no_in_series VARCHAR)
SELECT directed_by FROM table_15584067_7 WHERE no_in_series = "114"
Write a SQL query that answers the following question: Name the total number of air dates for 102 episode
The relevant table was constructed using the following SQL : CREATE TABLE table_15584067_7 (original_air_date VARCHAR, no_in_series VARCHAR)
SELECT COUNT(original_air_date) FROM table_15584067_7 WHERE no_in_series = "102"
Write a SQL query that answers the following question: Name who wrote the 11 number in the season
The relevant table was constructed using the following SQL : CREATE TABLE table_15584067_7 (written_by VARCHAR, no_in_season VARCHAR)
SELECT written_by FROM table_15584067_7 WHERE no_in_season = "11"
Write a SQL query that answers the following question: Name the award name for black ocean current
The relevant table was constructed using the following SQL : CREATE TABLE table_15584199_3 (award_name VARCHAR, team_name VARCHAR)
SELECT award_name FROM table_15584199_3 WHERE team_name = "BLACK OCEAN CURRENT"
Write a SQL query that answers the following question: What position(s) do players from florida state play?
The relevant table was constructed using the following SQL : CREATE TABLE table_15592941_1 (position VARCHAR, college VARCHAR)
SELECT position FROM table_15592941_1 WHERE college = "Florida State"
Write a SQL query that answers the following question: How much does geno hayes weigh?
The relevant table was constructed using the following SQL : CREATE TABLE table_15592941_1 (weight VARCHAR, player_name VARCHAR)
SELECT weight FROM table_15592941_1 WHERE player_name = "Geno Hayes"
Write a SQL query that answers the following question: What college did jeremy zuttah attend?
The relevant table was constructed using the following SQL : CREATE TABLE table_15592941_1 (college VARCHAR, player_name VARCHAR)
SELECT college FROM table_15592941_1 WHERE player_name = "Jeremy Zuttah"
Write a SQL query that answers the following question: When the stolen ends equal 5 whats the amount of pa?
The relevant table was constructed using the following SQL : CREATE TABLE table_15597975_2 (pa INTEGER, stolen_ends VARCHAR)
SELECT MAX(pa) FROM table_15597975_2 WHERE stolen_ends = 5
Write a SQL query that answers the following question: What position is the player whose first year is 2014
The relevant table was constructed using the following SQL : CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, first_season VARCHAR)
SELECT position_in_2013 FROM table_1560673_1 WHERE first_season = 2014
Write a SQL query that answers the following question: What was the players position in 2013 who had 29 seasons in the second tier
The relevant table was constructed using the following SQL : CREATE TABLE table_1560673_1 (position_in_2013 VARCHAR, number_of_seasons_in_second_tier VARCHAR)
SELECT position_in_2013 FROM table_1560673_1 WHERE number_of_seasons_in_second_tier = "29"
Write a SQL query that answers the following question: What was the first season for Syrianska FC
The relevant table was constructed using the following SQL : CREATE TABLE table_1560673_1 (first_season VARCHAR, club VARCHAR)
SELECT first_season FROM table_1560673_1 WHERE club = "Syrianska FC"
Write a SQL query that answers the following question: What was the earliest season recorded for any team
The relevant table was constructed using the following SQL : CREATE TABLE table_1560673_1 (first_season INTEGER)
SELECT MIN(first_season) FROM table_1560673_1
Write a SQL query that answers the following question: Name the number of points for october 11
The relevant table was constructed using the following SQL : CREATE TABLE table_15607589_2 (points_for INTEGER, date VARCHAR)
SELECT MAX(points_for) FROM table_15607589_2 WHERE date = "October 11"
Write a SQL query that answers the following question: Name the date for week 9
The relevant table was constructed using the following SQL : CREATE TABLE table_15607589_2 (date VARCHAR, week VARCHAR)
SELECT date FROM table_15607589_2 WHERE week = 9
Write a SQL query that answers the following question: Name the points against for november 7
The relevant table was constructed using the following SQL : CREATE TABLE table_15607589_2 (points_against VARCHAR, date VARCHAR)
SELECT points_against FROM table_15607589_2 WHERE date = "November 7"
Write a SQL query that answers the following question: Name the points against for november 14
The relevant table was constructed using the following SQL : CREATE TABLE table_15607589_2 (points_against VARCHAR, date VARCHAR)
SELECT points_against FROM table_15607589_2 WHERE date = "November 14"
Write a SQL query that answers the following question: Name the first downs for points against being 0
The relevant table was constructed using the following SQL : CREATE TABLE table_15607589_2 (first_downs VARCHAR, points_against VARCHAR)
SELECT first_downs FROM table_15607589_2 WHERE points_against = 0
Write a SQL query that answers the following question: Name the record for new york giants
The relevant table was constructed using the following SQL : CREATE TABLE table_15607589_2 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_15607589_2 WHERE opponent = "New York Giants"
Write a SQL query that answers the following question: Name the least purse for 2011
The relevant table was constructed using the following SQL : CREATE TABLE table_15618241_1 (purse___us INTEGER, year VARCHAR)
SELECT MIN(purse___us) AS $__ FROM table_15618241_1 WHERE year = 2011
Write a SQL query that answers the following question: Name the number of wheel arrangement when class is d14
The relevant table was constructed using the following SQL : CREATE TABLE table_15608800_2 (wheel_arrangement VARCHAR, class VARCHAR)
SELECT COUNT(wheel_arrangement) FROM table_15608800_2 WHERE class = "D14"
Write a SQL query that answers the following question: Name the most number of pyewipe
The relevant table was constructed using the following SQL : CREATE TABLE table_15608800_2 (number_at_pyewipe INTEGER)
SELECT MAX(number_at_pyewipe) FROM table_15608800_2
Write a SQL query that answers the following question: Name the number at march when class is j66
The relevant table was constructed using the following SQL : CREATE TABLE table_15608800_2 (number_at_march VARCHAR, class VARCHAR)
SELECT number_at_march FROM table_15608800_2 WHERE class = "J66"
Write a SQL query that answers the following question: Name the railway when class is j19
The relevant table was constructed using the following SQL : CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR)
SELECT railway FROM table_15608800_2 WHERE class = "J19"
Write a SQL query that answers the following question: Name the railway when class is j15
The relevant table was constructed using the following SQL : CREATE TABLE table_15608800_2 (railway VARCHAR, class VARCHAR)
SELECT railway FROM table_15608800_2 WHERE class = "J15"
Write a SQL query that answers the following question: Name the years in orlando for penn state
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_1 (years_in_orlando VARCHAR, school_club_team VARCHAR)
SELECT years_in_orlando FROM table_15621965_1 WHERE school_club_team = "Penn State"
Write a SQL query that answers the following question: Name the nationality of number 9
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_1 (nationality VARCHAR, no VARCHAR)
SELECT nationality FROM table_15621965_1 WHERE no = 9
Write a SQL query that answers the following question: Name the years in orlando for forward
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, position VARCHAR)
SELECT years_in_orlando FROM table_15621965_10 WHERE position = "Forward"
Write a SQL query that answers the following question: Name the number of players from arizona
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_10 (player VARCHAR, school_club_team VARCHAR)
SELECT COUNT(player) FROM table_15621965_10 WHERE school_club_team = "Arizona"
Write a SQL query that answers the following question: Name the years in orlando that the player from concord hs was in
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_10 (years_in_orlando VARCHAR, school_club_team VARCHAR)
SELECT years_in_orlando FROM table_15621965_10 WHERE school_club_team = "Concord HS"
Write a SQL query that answers the following question: Name the number of players for louisiana state
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_14 (player VARCHAR, school_club_team VARCHAR)
SELECT COUNT(player) FROM table_15621965_14 WHERE school_club_team = "Louisiana State"
Write a SQL query that answers the following question: Name the school/club team for kevin ollie
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_15621965_14 WHERE player = "Kevin Ollie"
Write a SQL query that answers the following question: Name the school/club team for jawann oldham
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_14 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_15621965_14 WHERE player = "Jawann Oldham"
Write a SQL query that answers the following question: Name the player for seattle
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_14 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_15621965_14 WHERE school_club_team = "Seattle"
Write a SQL query that answers the following question: What is the nationality of th player who's school is Clemson?
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_16 (nationality VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_15621965_16 WHERE school_club_team = "Clemson"
Write a SQL query that answers the following question: What years did the player who's school is Clemson spend in Orlando?
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_16 (years_in_orlando VARCHAR, school_club_team VARCHAR)
SELECT years_in_orlando FROM table_15621965_16 WHERE school_club_team = "Clemson"
Write a SQL query that answers the following question: What is the number of the player who attended Delta State?
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_16 (no INTEGER, school_club_team VARCHAR)
SELECT MAX(no) FROM table_15621965_16 WHERE school_club_team = "Delta State"
Write a SQL query that answers the following question: Who plays the position of forward-center?
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_2 (player VARCHAR, position VARCHAR)
SELECT player FROM table_15621965_2 WHERE position = "Forward-Center"
Write a SQL query that answers the following question: During what years did Chris Corchiani play in Orlando?
The relevant table was constructed using the following SQL : CREATE TABLE table_15621965_3 (years_in_orlando VARCHAR, player VARCHAR)
SELECT years_in_orlando FROM table_15621965_3 WHERE player = "Chris Corchiani"
Write a SQL query that answers the following question: When the face value is 42¢, what was the issue's date?
The relevant table was constructed using the following SQL : CREATE TABLE table_15635768_1 (date_of_issue VARCHAR, face_value VARCHAR)
SELECT date_of_issue FROM table_15635768_1 WHERE face_value = "42¢"
Write a SQL query that answers the following question: Which location has the ecosystem of kelp forest?
The relevant table was constructed using the following SQL : CREATE TABLE table_15635768_1 (place_of_issue VARCHAR, ecosystem VARCHAR)
SELECT place_of_issue FROM table_15635768_1 WHERE ecosystem = "Kelp Forest"