answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT AVG(against) FROM table_name_66 WHERE drawn < 7 AND points > 22 AND played = 19
CREATE TABLE table_name_66 (against INTEGER, played VARCHAR, drawn VARCHAR, points VARCHAR)
What is the average against that has a drawn less than 7, points greater than 22, and 19 for the played?
SELECT date FROM table_name_75 WHERE tv_time = "fox 12:00 pm cdt"
CREATE TABLE table_name_75 (date VARCHAR, tv_time VARCHAR)
When has a TV Time of fox 12:00 pm cdt?
SELECT date FROM table_name_73 WHERE week = 8
CREATE TABLE table_name_73 (date VARCHAR, week VARCHAR)
When has a Week of 8?
SELECT AVG(week) FROM table_name_27 WHERE result = "l 13-16" AND opponent = "at buffalo bills"
CREATE TABLE table_name_27 (week INTEGER, result VARCHAR, opponent VARCHAR)
Which Week has a Result of l 13-16 and an Opponent of at buffalo bills?
SELECT tv_time FROM table_name_72 WHERE result = "w 24–10"
CREATE TABLE table_name_72 (tv_time VARCHAR, result VARCHAR)
What kind of TV Time that has a Result of w 24–10?
SELECT conf FROM table_name_78 WHERE head_coach = "k. c. jones"
CREATE TABLE table_name_78 (conf VARCHAR, head_coach VARCHAR)
What is the name of the conference that K. C. Jones was a head coach in?
SELECT high_assists FROM table_name_50 WHERE date = "march 5"
CREATE TABLE table_name_50 (high_assists VARCHAR, date VARCHAR)
Who had the highest assists of the game on March 5?
SELECT MIN(appearances) FROM table_name_85 WHERE goals = 4 AND nationality = "new zealand"
CREATE TABLE table_name_85 (appearances INTEGER, goals VARCHAR, nationality VARCHAR)
What is the least amount of appearances by new zealand when they scored 4 goals?
SELECT COUNT(appearances) FROM table_name_41 WHERE name = "batram suri category:articles with hcards" AND goals < 2
CREATE TABLE table_name_41 (appearances VARCHAR, name VARCHAR, goals VARCHAR)
how many appearances did batram suri category:articles with hcards have scoring less than 2 goals?
SELECT province FROM table_name_31 WHERE region = "v valparaíso" AND area = 927.2
CREATE TABLE table_name_31 (province VARCHAR, region VARCHAR, area VARCHAR)
What province has a v valparaíso region and an area of 927.2?
SELECT AVG(area) FROM table_name_34 WHERE capital = "valparaíso"
CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR)
What is the average area with valparaíso as the capital?
SELECT white FROM table_name_96 WHERE amerindian = "4,87%"
CREATE TABLE table_name_96 (white VARCHAR, amerindian VARCHAR)
WHich Category in White has a Amerindian of 4,87%?
SELECT white FROM table_name_35 WHERE black = "38,05%"
CREATE TABLE table_name_35 (white VARCHAR, black VARCHAR)
WHich Category in White has a Black of 38,05%?
SELECT brown FROM table_name_84 WHERE frequency = "0.08%"
CREATE TABLE table_name_84 (brown VARCHAR, frequency VARCHAR)
Which Category in Brown has a Frequency of 0.08%?
SELECT black FROM table_name_61 WHERE brown = "6,54%"
CREATE TABLE table_name_61 (black VARCHAR, brown VARCHAR)
Which Category in Black has a Brown of 6,54%?
SELECT capacity_in_use FROM table_name_31 WHERE annual_change = "21.8%"
CREATE TABLE table_name_31 (capacity_in_use VARCHAR, annual_change VARCHAR)
What is the Capacity in use with an Annual change that is 21.8%?
SELECT COUNT(tries_for) FROM table_name_81 WHERE points_for < 137 AND tries_against > 12
CREATE TABLE table_name_81 (tries_for VARCHAR, points_for VARCHAR, tries_against VARCHAR)
How many Tries has Points for smaller than 137, and Tries against larger than 12?
SELECT team FROM table_name_17 WHERE points_against = 43
CREATE TABLE table_name_17 (team VARCHAR, points_against VARCHAR)
WHich Team that has Points against of 43?
SELECT MIN(tries_for) FROM table_name_48 WHERE team = "pau" AND points_against > 103
CREATE TABLE table_name_48 (tries_for INTEGER, team VARCHAR, points_against VARCHAR)
WHich Tries has a Team of pau and Points against larger than 103?
SELECT AVG(points_against) FROM table_name_13 WHERE tries_for < 14 AND team = "llanelli"
CREATE TABLE table_name_13 (points_against INTEGER, tries_for VARCHAR, team VARCHAR)
How many Points against has Tries for smaller than 14, and a Team of llanelli?
SELECT COUNT(tries_against) FROM table_name_30 WHERE try_diff = "–17" AND points_for < 80
CREATE TABLE table_name_30 (tries_against VARCHAR, try_diff VARCHAR, points_for VARCHAR)
How many Tries against has a Try diff of –17 and Points for smaller than 80?
SELECT player FROM table_name_7 WHERE position = "forward"
CREATE TABLE table_name_7 (player VARCHAR, position VARCHAR)
Which player was the forward?
SELECT years_in_orlando FROM table_name_11 WHERE position = "center"
CREATE TABLE table_name_11 (years_in_orlando VARCHAR, position VARCHAR)
Which years in Orlando are featured with the center position?
SELECT position FROM table_name_15 WHERE years_in_orlando = "2000"
CREATE TABLE table_name_15 (position VARCHAR, years_in_orlando VARCHAR)
Which position was in Orlando in 2000?
SELECT name FROM table_name_61 WHERE goals = 135
CREATE TABLE table_name_61 (name VARCHAR, goals VARCHAR)
What is the Name with Goals that are 135?
SELECT american_labor_ticket FROM table_name_51 WHERE democratic_ticket = "robert f. wagner"
CREATE TABLE table_name_51 (american_labor_ticket VARCHAR, democratic_ticket VARCHAR)
Which American Labor candidate ran against Democratic candidate Robert F. Wagner?
SELECT socialist_ticket FROM table_name_65 WHERE american_labor_ticket = "caroline o'day"
CREATE TABLE table_name_65 (socialist_ticket VARCHAR, american_labor_ticket VARCHAR)
Which Socialist candidate ran against American Labor candidate Caroline O'Day?
SELECT democratic_ticket FROM table_name_71 WHERE socialist_ticket = "edna mitchell blue"
CREATE TABLE table_name_71 (democratic_ticket VARCHAR, socialist_ticket VARCHAR)
Which Democrtic candidate ran against the Socialist candidate Edna Mitchell Blue?
SELECT american_labor_ticket FROM table_name_55 WHERE socialist_ticket = "herman j. hahn"
CREATE TABLE table_name_55 (american_labor_ticket VARCHAR, socialist_ticket VARCHAR)
Which American Labor candidate is running against the Socialist candidate Herman J. Hahn?
SELECT republican_ticket FROM table_name_5 WHERE american_labor_ticket = "matthew j. merritt"
CREATE TABLE table_name_5 (republican_ticket VARCHAR, american_labor_ticket VARCHAR)
Which Republican ran against the American Labor candidate Matthew J. Merritt?
SELECT american_labor_ticket FROM table_name_91 WHERE republican_ticket = "thomas e. dewey"
CREATE TABLE table_name_91 (american_labor_ticket VARCHAR, republican_ticket VARCHAR)
Which American Labor candidate ran against Republican Thomas E. Dewey?
SELECT opponent_in_the_final FROM table_name_48 WHERE outcome = "runner-up" AND date > 1983
CREATE TABLE table_name_48 (opponent_in_the_final VARCHAR, outcome VARCHAR, date VARCHAR)
Who is the Opponent in the final after 1983 with an Outcome of runner-up?
SELECT opponent_in_the_final FROM table_name_31 WHERE score_in_the_final = "7–5, 6–2"
CREATE TABLE table_name_31 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
What Opponent in the final had a match with a Score in the final of 7–5, 6–2?
SELECT championship FROM table_name_3 WHERE surface = "clay" AND opponent_in_the_final = "vitas gerulaitis"
CREATE TABLE table_name_3 (championship VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
What is the Championship with Vitas Gerulaitis as Opponent in the final in a match on Clay Surface?
SELECT MIN(percentage_of_marine_area__foreez_) FROM table_name_50 WHERE ecozone = "pacific marine" AND percentage_of_total_area__foreez_ > 3.1
CREATE TABLE table_name_50 (percentage_of_marine_area__foreez_ INTEGER, ecozone VARCHAR, percentage_of_total_area__foreez_ VARCHAR)
What is the smallest percentage of marine area for Pacific Marine ecozone and percentage of total area greater than 3.1?
SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = "atlantic marine" AND area__km²__exclusive_economic_zone < 996 OFFSET 439
CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR)
How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439?
SELECT team FROM table_name_29 WHERE high_assists = "alvin williams (6)"
CREATE TABLE table_name_29 (team VARCHAR, high_assists VARCHAR)
What is the team when alvin williams (6) has the high assists?
SELECT record FROM table_name_19 WHERE game < 3 AND score = "l 91–96 (ot)"
CREATE TABLE table_name_19 (record VARCHAR, game VARCHAR, score VARCHAR)
What is the Record for a game less than 3 and the score was l 91–96 (ot)?
SELECT date FROM table_name_84 WHERE high_points = "dell curry (17)"
CREATE TABLE table_name_84 (date VARCHAR, high_points VARCHAR)
What is the Date when the high points went to Dell Curry (17)?
SELECT team FROM table_name_53 WHERE high_rebounds = "antonio davis (8)"
CREATE TABLE table_name_53 (team VARCHAR, high_rebounds VARCHAR)
What is the Team when antonio davis (8) had the high rebounds?
SELECT tournament FROM table_name_56 WHERE date = "apr 16, 1967"
CREATE TABLE table_name_56 (tournament VARCHAR, date VARCHAR)
What is the Tournament with a Date that is apr 16, 1967?
SELECT date FROM table_name_69 WHERE runner_s__up = "jerry steelsmith"
CREATE TABLE table_name_69 (date VARCHAR, runner_s__up VARCHAR)
What is the Date with a Runner(s)-up that is jerry steelsmith?
SELECT obama FROM table_name_28 WHERE source = "rasmussen reports"
CREATE TABLE table_name_28 (obama VARCHAR, source VARCHAR)
What kind of Obama that has a Source of rasmussen reports?
SELECT source FROM table_name_46 WHERE undecided = "2%"
CREATE TABLE table_name_46 (source VARCHAR, undecided VARCHAR)
Which Source has a Undecided of 2%?
SELECT obama FROM table_name_87 WHERE undecided = "1%"
CREATE TABLE table_name_87 (obama VARCHAR, undecided VARCHAR)
What kind of Obama has a Undecided of 1%?
SELECT date FROM table_name_8 WHERE source = "surveyusa" AND obama = "54%"
CREATE TABLE table_name_8 (date VARCHAR, source VARCHAR, obama VARCHAR)
When has a Source of surveyusa and a Obama of 54%?
SELECT date FROM table_name_39 WHERE source = "rasmussen reports"
CREATE TABLE table_name_39 (date VARCHAR, source VARCHAR)
When has a Source of rasmussen reports?
SELECT source FROM table_name_94 WHERE clinton = "39%" AND undecided = "7%"
CREATE TABLE table_name_94 (source VARCHAR, clinton VARCHAR, undecided VARCHAR)
Which Source has a Clinton of 39% and a Undecided of 7%?
SELECT date_of_birth FROM table_name_18 WHERE block > 342
CREATE TABLE table_name_18 (date_of_birth VARCHAR, block INTEGER)
What is the Date of Birth with a Block that is larger than 342?
SELECT COUNT(position) FROM table_name_21 WHERE 2012 = "0.92"
CREATE TABLE table_name_21 (position VARCHAR)
What is the number of positions that have 2012 ratings of 0.92?
SELECT owner FROM table_name_96 WHERE 2012 = "5.42"
CREATE TABLE table_name_96 (owner VARCHAR)
What is the owner of the channel that has a 2012 rating of 5.42?
SELECT 2007 FROM table_name_28 WHERE position = 6
CREATE TABLE table_name_28 (position VARCHAR)
What is the 2007 rating of the channel with a position of 6?
SELECT channel FROM table_name_64 WHERE 2011 = "8.5"
CREATE TABLE table_name_64 (channel VARCHAR)
What is the channel with a 2011 rating of 8.5?
SELECT astc_member FROM table_name_39 WHERE state = "arkansas" AND aam_member = "no" AND aam_accredited = "yes"
CREATE TABLE table_name_39 (astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR)
What is ASTC Member, when State is Arkansas, when AAM Member is No, and when AAM Accredited is Yes?
SELECT city FROM table_name_61 WHERE state = "florida" AND aam_member = "no" AND aam_accredited = "no"
CREATE TABLE table_name_61 (city VARCHAR, aam_accredited VARCHAR, state VARCHAR, aam_member VARCHAR)
What is City, when State is Florida, when AAM Member is No, and when AAM Accredited is No?
SELECT city FROM table_name_62 WHERE astc_member = "no" AND state = "california" AND aam_member = "yes"
CREATE TABLE table_name_62 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR)
What is City, when ASTC Member is No, when State is California, and when AAM Member is Yes?
SELECT state FROM table_name_49 WHERE aam_accredited = "no" AND astc_member = "no" AND city = "tulsa"
CREATE TABLE table_name_49 (state VARCHAR, city VARCHAR, aam_accredited VARCHAR, astc_member VARCHAR)
What is State, when AAM Accredited is No, when ASTC Member is No, and when City is Tulsa?
SELECT city FROM table_name_30 WHERE state = "california" AND aam_accredited = "no" AND astc_member = "yes" AND aam_member = "no"
CREATE TABLE table_name_30 (city VARCHAR, aam_member VARCHAR, astc_member VARCHAR, state VARCHAR, aam_accredited VARCHAR)
What is City, when State is California, when AAM Accredited is No, when ASTC Member is Yes, and when AAM Member is No?
SELECT aam_member FROM table_name_21 WHERE aam_accredited = "no" AND state = "california" AND astc_member = "yes" AND city = "sacramento"
CREATE TABLE table_name_21 (aam_member VARCHAR, city VARCHAR, astc_member VARCHAR, aam_accredited VARCHAR, state VARCHAR)
What is AAM Member, when AAM Accredited is No, when State is California, when ASTC Member is Yes, and when City is Sacramento?
SELECT runners_up FROM table_name_17 WHERE individual = "tiger woods"
CREATE TABLE table_name_17 (runners_up VARCHAR, individual VARCHAR)
Who were the runners-up when the individual winner was Tiger Woods?
SELECT COUNT(year) FROM table_name_75 WHERE country = "united states" AND individual = "tiger woods"
CREATE TABLE table_name_75 (year VARCHAR, country VARCHAR, individual VARCHAR)
How many years was the individual winner from the United States was Tiger Woods?
SELECT MIN(year) FROM table_name_71 WHERE location = "cape town, south africa"
CREATE TABLE table_name_71 (year INTEGER, location VARCHAR)
What is the earliest year that the tournament was played in Cape Town, South Africa?
SELECT driver FROM table_name_98 WHERE date = "october 6"
CREATE TABLE table_name_98 (driver VARCHAR, date VARCHAR)
Who is the Driver, when the Date is October 6?
SELECT COUNT(season) FROM table_name_85 WHERE engine = "cosworth" AND team = "kraco racing"
CREATE TABLE table_name_85 (season VARCHAR, engine VARCHAR, team VARCHAR)
What is the total number of Seasons, when the Engine is Cosworth, and when the Team is Kraco Racing?
SELECT driver FROM table_name_90 WHERE engine = "chevrolet" AND date = "october 3"
CREATE TABLE table_name_90 (driver VARCHAR, engine VARCHAR, date VARCHAR)
Who is the Driver, when the Engine is Chevrolet, and when the Date is October 3?
SELECT SUM(season) FROM table_name_10 WHERE team = "penske racing" AND date = "october 3"
CREATE TABLE table_name_10 (season INTEGER, team VARCHAR, date VARCHAR)
What is the sum of Seasons, when the Team is Penske Racing, and when the Date is October 3?
SELECT COUNT(year_to_open) FROM table_name_51 WHERE name = "dandeung bridge"
CREATE TABLE table_name_51 (year_to_open VARCHAR, name VARCHAR)
What was the Year to Open for the Dandeung Bridge?
SELECT main_span_feet FROM table_name_64 WHERE name = "qincaobei bridge"
CREATE TABLE table_name_64 (main_span_feet VARCHAR, name VARCHAR)
What is the Main span of the Qincaobei Bridge
SELECT main_span_metres FROM table_name_23 WHERE year_to_open = 2013 AND country = "china" AND main_span_feet = "2,585"
CREATE TABLE table_name_23 (main_span_metres VARCHAR, main_span_feet VARCHAR, year_to_open VARCHAR, country VARCHAR)
What is the Main span of the bridge from China with a Year to open of 2013 and Main span feet of 2,585?
SELECT republican_ticket FROM table_name_25 WHERE democratic_ticket = "stanley h. fuld"
CREATE TABLE table_name_25 (republican_ticket VARCHAR, democratic_ticket VARCHAR)
Which republican ticket has stanley h. fuld as the Democratic ticket?
SELECT liberal_ticket FROM table_name_73 WHERE socialist_workers_ticket = "judith white"
CREATE TABLE table_name_73 (liberal_ticket VARCHAR, socialist_workers_ticket VARCHAR)
What is the liberal ticket that has judith white as the socialist workers?
SELECT socialist_workers_ticket FROM table_name_71 WHERE republican_ticket = "malcolm wilson"
CREATE TABLE table_name_71 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR)
What socialist workers ticket has malcolm wilson as the Republican ticket?
SELECT office FROM table_name_28 WHERE conservative_ticket = "kieran o'doherty"
CREATE TABLE table_name_28 (office VARCHAR, conservative_ticket VARCHAR)
Which office has kieran o'doherty as the conservative ticket?
SELECT office FROM table_name_8 WHERE socialist_labor_ticket = "(none)" AND liberal_ticket = "stanley h. fuld"
CREATE TABLE table_name_8 (office VARCHAR, socialist_labor_ticket VARCHAR, liberal_ticket VARCHAR)
What office has (none) as the socialist labor ticket, and stanley h. fuld as the liberal ticket?
SELECT erp_w FROM table_name_38 WHERE call_sign = "w291ch"
CREATE TABLE table_name_38 (erp_w VARCHAR, call_sign VARCHAR)
If the call sign is w291ch what's the ERP W corresponding to that sign?
SELECT city_of_license FROM table_name_78 WHERE call_sign = "w242at"
CREATE TABLE table_name_78 (city_of_license VARCHAR, call_sign VARCHAR)
For the call sign w242at what's the city the license plate is registered to?
SELECT class FROM table_name_16 WHERE city_of_license = "great barrington, massachusetts"
CREATE TABLE table_name_16 (class VARCHAR, city_of_license VARCHAR)
What's the Class for the city the license plate was issued in great barrington, massachusetts?
SELECT SUM(gold) FROM table_name_81 WHERE bronze = 1 AND rank < 6 AND total < 3
CREATE TABLE table_name_81 (gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR)
How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3?
SELECT SUM(bronze) FROM table_name_79 WHERE gold > 1 AND nation = "france" AND rank < 1
CREATE TABLE table_name_79 (bronze INTEGER, rank VARCHAR, gold VARCHAR, nation VARCHAR)
How many France bronze have a gold of more than 1 and a rank of 0?
SELECT SUM(gold) FROM table_name_12 WHERE silver = 1 AND bronze < 1
CREATE TABLE table_name_12 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
How many gold have a silver of 1 and a bronze of 0?
SELECT aircraft FROM table_name_3 WHERE location = "kabul" AND fatalities = "unknown" AND tail_number = "ya-ban"
CREATE TABLE table_name_3 (aircraft VARCHAR, tail_number VARCHAR, location VARCHAR, fatalities VARCHAR)
What is the Aircraft when Kabul was the location, unknown fatalities, and the tail number was ya-ban?
SELECT fatalities FROM table_name_53 WHERE tail_number = "unknown" AND location = "kabul"
CREATE TABLE table_name_53 (fatalities VARCHAR, tail_number VARCHAR, location VARCHAR)
What is the Fatalities when the tail number was unknown and in Kabul>
SELECT location FROM table_name_50 WHERE aircraft = "an-12b"
CREATE TABLE table_name_50 (location VARCHAR, aircraft VARCHAR)
What is the location for the an-12b aircraft?
SELECT location FROM table_name_15 WHERE fatalities = "25/25"
CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR)
What location had 25/25 fatalities?
SELECT tail_number FROM table_name_82 WHERE aircraft = "an-26" AND fatalities = "25/25"
CREATE TABLE table_name_82 (tail_number VARCHAR, aircraft VARCHAR, fatalities VARCHAR)
What tail number was on the an-26, with 25/25 fatalities?
SELECT aircraft FROM table_name_75 WHERE tail_number = "ya-bao"
CREATE TABLE table_name_75 (aircraft VARCHAR, tail_number VARCHAR)
What type of aircraft was the plane with a tail number of ya-bao?
SELECT COUNT(points) FROM table_name_38 WHERE match > 18
CREATE TABLE table_name_38 (points VARCHAR, match INTEGER)
What is the total number of Points from a Match that is larger than 18?
SELECT SUM(season) FROM table_name_74 WHERE series = "formula renault 3.5 series" AND races < 7
CREATE TABLE table_name_74 (season INTEGER, series VARCHAR, races VARCHAR)
In what Season was the Series Formula Renault 3.5 series with less than 7 Races?
SELECT series FROM table_name_67 WHERE season = 2009
CREATE TABLE table_name_67 (series VARCHAR, season VARCHAR)
What was the Series in 2009?
SELECT wins FROM table_name_7 WHERE races > 16
CREATE TABLE table_name_7 (wins VARCHAR, races INTEGER)
How many Wins in the Year with more than 16 Races?
SELECT AVG(season) FROM table_name_51 WHERE races < 3 AND wins < 1
CREATE TABLE table_name_51 (season INTEGER, races VARCHAR, wins VARCHAR)
In what Season were then less than 3 Races with less than 1 Win?
SELECT 1 AS st_leg FROM table_name_33 WHERE team__number1 = "ummc ekaterinburg"
CREATE TABLE table_name_33 (team__number1 VARCHAR)
Which 1st leg has a Team #1 of ummc ekaterinburg?
SELECT team__number2 FROM table_name_70 WHERE team__number1 = "gambrinus sika brno"
CREATE TABLE table_name_70 (team__number2 VARCHAR, team__number1 VARCHAR)
Which Team #2 has a Team #1 of gambrinus sika brno?
SELECT AVG(goal) FROM table_name_80 WHERE result = "2–2" AND venue = "råsunda, stockholm"
CREATE TABLE table_name_80 (goal INTEGER, result VARCHAR, venue VARCHAR)
What is the Goal number in Råsunda, Stockholm with a Result of 2–2?
SELECT result FROM table_name_21 WHERE goal = 3
CREATE TABLE table_name_21 (result VARCHAR, goal VARCHAR)
What is the Result of Goal number 3?
SELECT date FROM table_name_14 WHERE score = "4-3" AND site_stadium = "reese smith field"
CREATE TABLE table_name_14 (date VARCHAR, score VARCHAR, site_stadium VARCHAR)
On what day was a game played at Reese Smith Field, with a score of 4-3?
SELECT score FROM table_name_65 WHERE site_stadium = "alex box stadium" AND date = "may 10"
CREATE TABLE table_name_65 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)
What was the score for the game played on May 10 at Alex Box Stadium?
SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field"
CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR)
What was the score for the game played at Sarge Frye Field?
SELECT date FROM table_name_16 WHERE record = "5-7"
CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR)
On what date was a game played, which left the team with a record of 5-7?
SELECT score FROM table_name_38 WHERE site_stadium = "harmon stadium" AND date = "february 24"
CREATE TABLE table_name_38 (score VARCHAR, site_stadium VARCHAR, date VARCHAR)
What was the score of the game played at Harmon Stadium on February 24?