answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT crowd FROM table_name_76 WHERE away_team = "north melbourne"
How big was the crowd in game that featured the visiting team of north melbourne?
CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(total) FROM table_name_82 WHERE nation = "costa rica" AND rank > 8
Tell me the total number for costa rica and rank more than 8
CREATE TABLE table_name_82 (total VARCHAR, nation VARCHAR, rank VARCHAR)
SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Paper' INTERSECT SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Patent'
List the project details of the project both producing patent and paper as outcomes.
CREATE TABLE Project_outcomes (project_id VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)
SELECT COUNT(directed_by) FROM table_29545336_2 WHERE no = 2
How many people directed episode 2?
CREATE TABLE table_29545336_2 (directed_by VARCHAR, no VARCHAR)
SELECT COUNT(model) FROM table_17157367_1 WHERE "status" = "status" AND name = "GenEva"
what is the total number of model wehre the status is named geneva?
CREATE TABLE table_17157367_1 (model VARCHAR, name VARCHAR)
SELECT nationality FROM table_name_62 WHERE ship = "minteh"
Which nationality has a Ship of minteh?
CREATE TABLE table_name_62 (nationality VARCHAR, ship VARCHAR)
SELECT SUM(silver) FROM table_name_69 WHERE gold = 2 AND bronze < 2
How many silvers have 2 as gold, and a bronze less than 2?
CREATE TABLE table_name_69 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
SELECT score FROM table_name_60 WHERE tournament = "tokyo, japan" AND date = "october 24, 1982"
What was the Score on October 24, 1982 in Tokyo, Japan?
CREATE TABLE table_name_60 (score VARCHAR, tournament VARCHAR, date VARCHAR)
SELECT icao FROM table_name_21 WHERE iata = "mle"
For an IATA of MLE, what is the ICAO?
CREATE TABLE table_name_21 (icao VARCHAR, iata VARCHAR)
SELECT SUM(attendance) FROM table_name_3 WHERE date = "october 5"
What is the total attendance for the date of october 5?
CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR)
SELECT away_team FROM table_name_19 WHERE venue = "moorabbin oval"
What away team is based in moorabbin oval?
CREATE TABLE table_name_19 (away_team VARCHAR, venue VARCHAR)
SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = "Colorado"
Find the name of customers who are living in Colorado?
CREATE TABLE customer_addresses (customer_id VARCHAR, address_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_id VARCHAR, state_province_county VARCHAR)
SELECT frequency FROM table_name_72 WHERE sspec_number = "sl5qj"
What is the frequency of the model with sSpec number sl5qj?
CREATE TABLE table_name_72 (frequency VARCHAR, sspec_number VARCHAR)
SELECT name FROM table_name_7 WHERE winning_driver = "eugenio silvani"
What race did eugenio silvani win?
CREATE TABLE table_name_7 (name VARCHAR, winning_driver VARCHAR)
SELECT result FROM table_1342359_15 WHERE district = "Kansas 1"
what's the result with district being kansas 1
CREATE TABLE table_1342359_15 (result VARCHAR, district VARCHAR)
SELECT COUNT(govt_salary) FROM table_17964087_2 WHERE chinese_name = "盧奕基"
For the chinese name 盧奕基 how many in total is the govt salary?
CREATE TABLE table_17964087_2 (govt_salary VARCHAR, chinese_name VARCHAR)
SELECT MAX(matches) FROM table_name_55 WHERE points < 88 AND goals < 0
What are the highest matches that have points less than 88, and goals less than 0?
CREATE TABLE table_name_55 (matches INTEGER, points VARCHAR, goals VARCHAR)
SELECT phone, postal_code FROM address WHERE address = '1031 Daugavpils Parkway'
What is the phone number and postal code of the address 1031 Daugavpils Parkway?
CREATE TABLE address (phone VARCHAR, postal_code VARCHAR, address VARCHAR)
SELECT title FROM table_26736040_1 WHERE us_viewers__millions_ = "1.04"
What is every title when U.S. viewers is 1.04 million.
CREATE TABLE table_26736040_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT country FROM table_name_21 WHERE score = 66 - 70 - 69 = 205
What is the country with a 66-70-69=205 score?
CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)
SELECT attendance FROM table_name_61 WHERE opponent = "tampa bay buccaneers"
What was the attendance for the game against tampa bay buccaneers?
CREATE TABLE table_name_61 (attendance VARCHAR, opponent VARCHAR)
SELECT 08 AS _09_gp_jgp_2nd FROM table_24990183_7 WHERE ws_points = 947
If the WS points is 947, what is the 08-09 gp/jgp 2nd ?
CREATE TABLE table_24990183_7 (ws_points VARCHAR)
SELECT MIN(no) FROM table_11545282_18 WHERE years_for_jazz = "1985-88"
What is the number for years 1985-88
CREATE TABLE table_11545282_18 (no INTEGER, years_for_jazz VARCHAR)
SELECT DISTINCT t3.name FROM country AS t1 JOIN countrylanguage AS t2 ON t1.code = t2.countrycode JOIN city AS t3 ON t1.code = t3.countrycode WHERE t2.isofficial = 't' AND t2.language = 'chinese' AND t1.continent = "asia"
Which unique cities are in Asian countries where Chinese is the official language ?
CREATE TABLE city (name VARCHAR, countrycode VARCHAR); CREATE TABLE countrylanguage (countrycode VARCHAR, isofficial VARCHAR, language VARCHAR); CREATE TABLE country (code VARCHAR, continent VARCHAR)
SELECT builder FROM table_name_84 WHERE built = "1920"
Who was the builder in 1920?
CREATE TABLE table_name_84 (builder VARCHAR, built VARCHAR)
SELECT school FROM table_name_99 WHERE pick = 24
What is the School with a Pick that is 24?
CREATE TABLE table_name_99 (school VARCHAR, pick VARCHAR)
SELECT channel FROM table_24598274_20 WHERE local_title = "Live to Dance"
The local title "Live to Dance" was aired in which channel?
CREATE TABLE table_24598274_20 (channel VARCHAR, local_title VARCHAR)
SELECT away_team FROM table_name_65 WHERE venue = "victoria park"
Who was the away team at the game at Victoria Park?
CREATE TABLE table_name_65 (away_team VARCHAR, venue VARCHAR)
SELECT researched_at FROM table_30057479_1 WHERE geometry = "D: ~50nm, L: ~600nm"
Where was d: ~50nm, l: ~600nm geometry researched?
CREATE TABLE table_30057479_1 (researched_at VARCHAR, geometry VARCHAR)
SELECT COUNT(college_junior_club_team) FROM table_1013129_2 WHERE nhl_team = "Washington Capitals"
How many different college/junior/club teams provided a player to the Washington Capitals NHL Team?
CREATE TABLE table_1013129_2 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT years_at_club FROM table_name_5 WHERE goals > 0 AND debut_year > 1904 AND games > 136 AND player = "wally johnson"
For player Wally Johnson, with goals larger than 0, the debut year later than 1904, and games greater than 136, what were the years at club?
CREATE TABLE table_name_5 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR, debut_year VARCHAR)
SELECT fastest_lap FROM table_29686983_1 WHERE round = 1
who had the fastest lap for round 1?
CREATE TABLE table_29686983_1 (fastest_lap VARCHAR, round VARCHAR)
SELECT SUM(silver) FROM table_name_8 WHERE nation = "japan" AND total < 1
what is the silver when the nation is japan and the total is less than 1?
CREATE TABLE table_name_8 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT muzzle_energy FROM table_name_16 WHERE source = "hornady"
What is Muzzle energy, when Source is hornady?
CREATE TABLE table_name_16 (muzzle_energy VARCHAR, source VARCHAR)
SELECT MAX(attendance) FROM table_name_14 WHERE match_no > 43 AND score = "2-4"
After Match 43, what was the Attendance of the Match with a Score of 2-4?
CREATE TABLE table_name_14 (attendance INTEGER, match_no VARCHAR, score VARCHAR)
SELECT country FROM table_name_49 WHERE skip = "andy kapp"
For what country is the skip Andy Kapp?
CREATE TABLE table_name_49 (country VARCHAR, skip VARCHAR)
SELECT original_air_dates FROM table_2322716_2 WHERE prod_code = 201
Name the original air date for prod code 201
CREATE TABLE table_2322716_2 (original_air_dates VARCHAR, prod_code VARCHAR)
SELECT language FROM table_2509112_3 WHERE villa_rivero_municipality = 7
If Villa Rivero Municipality if 7, what is the language?
CREATE TABLE table_2509112_3 (language VARCHAR, villa_rivero_municipality VARCHAR)
SELECT MIN(run_2) FROM table_name_90 WHERE run_1 = 52.44 AND run_3 < 52.35
What is the lowest run 2 of the athlete with a run 1 of 52.44 and a run 3 less than 52.35?
CREATE TABLE table_name_90 (run_2 INTEGER, run_1 VARCHAR, run_3 VARCHAR)
SELECT date FROM table_20884163_2 WHERE team = "Triple Eight Race Engineering" AND race_title = "Falken Tasmania Challenge"
What dates was the falken tasmania challenge race that had triple eight race engineering as the team?
CREATE TABLE table_20884163_2 (date VARCHAR, team VARCHAR, race_title VARCHAR)
SELECT team FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180"
What is every team with location attendance of Seattle Center Coliseum 14,180?
CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR)
SELECT deductions FROM table_22014431_3 WHERE tosses_pyramids = "56.5"
How many deductions have 56.5 as tosses/pyramids?
CREATE TABLE table_22014431_3 (deductions VARCHAR, tosses_pyramids VARCHAR)
SELECT name FROM table_name_90 WHERE wins < 3 AND matches < 15
What are the names of those who made less than 3 wins in 15 matches?
CREATE TABLE table_name_90 (name VARCHAR, wins VARCHAR, matches VARCHAR)
SELECT constructor FROM table_name_5 WHERE grid = 13
Which vehicle has a Grid of 13?
CREATE TABLE table_name_5 (constructor VARCHAR, grid VARCHAR)
SELECT COUNT(division) FROM table_name_7 WHERE team = "chongqing lifan" AND apps > 9
What is the total number of Division(s), when Team is Chongqing Lifan, and when Apps is greater than 9?
CREATE TABLE table_name_7 (division VARCHAR, team VARCHAR, apps VARCHAR)
SELECT COUNT(points) FROM table_27293285_4 WHERE tries_for = "46"
Name the total number of points for 46 tries for
CREATE TABLE table_27293285_4 (points VARCHAR, tries_for VARCHAR)
SELECT COUNT(fleet_size) FROM table_15637071_1 WHERE iata = "5J"
How large is the fleet size of the airline with the IATA code of 5j?
CREATE TABLE table_15637071_1 (fleet_size VARCHAR, iata VARCHAR)
SELECT time FROM table_name_86 WHERE wrestler = "natalya"
What is Natalya's Time?
CREATE TABLE table_name_86 (time VARCHAR, wrestler VARCHAR)
SELECT surface FROM table_name_68 WHERE year = 1996
What was the surface in 1996?
CREATE TABLE table_name_68 (surface VARCHAR, year VARCHAR)
SELECT entrant FROM table_name_68 WHERE engine_† = "mugen-honda mf-301 he"
Which entrant had a mugen-honda mf-301 he engine?
CREATE TABLE table_name_68 (entrant VARCHAR, engine_† VARCHAR)
SELECT MAX(current_run_since) FROM table_name_12 WHERE last_title = "2010" AND seasons_in_esiliiga > 10
What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10?
CREATE TABLE table_name_12 (current_run_since INTEGER, last_title VARCHAR, seasons_in_esiliiga VARCHAR)
SELECT general_classification FROM table_name_12 WHERE trofeo_fast_team = "mapei-bricobi" AND points_classification = "mariano piccoli" AND mountains_classification = "marco pantani" AND stage = "22"
Who had the general classification when the trofeo fast team was Mapei-Bricobi, the points classification went to Mariano Piccoli and the mountains classification went to Marco Pantani in stage 22?
CREATE TABLE table_name_12 (general_classification VARCHAR, stage VARCHAR, mountains_classification VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)
SELECT elmers_end FROM table_name_30 WHERE selsdon = "17:57"
What is the Elmers End with a 17:57 Selsdon time?
CREATE TABLE table_name_30 (elmers_end VARCHAR, selsdon VARCHAR)
SELECT team_name FROM table_18304058_2 WHERE sports = "Football" AND schools = "Elverado Trico"
What is the name of the team from the Elverado Trico school in football?
CREATE TABLE table_18304058_2 (team_name VARCHAR, sports VARCHAR, schools VARCHAR)
SELECT termination_of_mission FROM table_name_58 WHERE presentation_of_credentials = "july 4, 1898"
What is the termination of mission date of the representative with a presentation of credentials date on July 4, 1898?
CREATE TABLE table_name_58 (termination_of_mission VARCHAR, presentation_of_credentials VARCHAR)
SELECT winner FROM table_22577693_1 WHERE final_venue = "Kowloon Cricket Club"
Who was the winner if the final venue is Kowloon Cricket Club?
CREATE TABLE table_22577693_1 (winner VARCHAR, final_venue VARCHAR)
SELECT joined FROM table_262508_1 WHERE enrollment = 1150 AND location = "Sioux City, Iowa"
How many joined when the enrollment was 1150 in Sioux City, Iowa?
CREATE TABLE table_262508_1 (joined VARCHAR, enrollment VARCHAR, location VARCHAR)
SELECT name FROM table_name_92 WHERE license = "gpl v2" AND current_version = "0.9.9"
Who has a licence of gpl v2 and a current version of 0.9.9?
CREATE TABLE table_name_92 (name VARCHAR, license VARCHAR, current_version VARCHAR)
SELECT SUM(student_capacity) FROM dorm
Find the total capacity of all dorms.
CREATE TABLE dorm (student_capacity INTEGER)
SELECT name FROM table_name_40 WHERE heat = 2 AND time = "9:04.86"
What is the Name of the swimmer with a Time of 9:04.86 in Heat 2?
CREATE TABLE table_name_40 (name VARCHAR, heat VARCHAR, time VARCHAR)
SELECT capacity__litres_ FROM table_2155350_2 WHERE cab_size = "Single" AND category = "2 Medium tanker"
Name the capacity for single cab size 2 medium tanker
CREATE TABLE table_2155350_2 (capacity__litres_ VARCHAR, cab_size VARCHAR, category VARCHAR)
SELECT result FROM table_name_98 WHERE location = "match reports"
What is the result at match reports?
CREATE TABLE table_name_98 (result VARCHAR, location VARCHAR)
SELECT program FROM table_16275828_4 WHERE track_name = "Highland Speedway"
What programs were held at highland speedway?
CREATE TABLE table_16275828_4 (program VARCHAR, track_name VARCHAR)
SELECT title FROM table_18217741_1 WHERE us_viewers__millions_ = "18.58"
What is the title when 18.58 u.s. viewers (millions) watched?
CREATE TABLE table_18217741_1 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT MAX(population__2000_) FROM table_2004733_2 WHERE area__in_km_2__ = "1.2530"
How many people lived in the city which has 1.2530 km² in the year 2000?
CREATE TABLE table_2004733_2 (population__2000_ INTEGER, area__in_km_2__ VARCHAR)
SELECT SUM(kono) FROM table_name_38 WHERE bonthe > 21 OFFSET 238
What is the sum of the kono with a bonthe greater than 21,238?
CREATE TABLE table_name_38 (kono INTEGER, bonthe INTEGER)
SELECT score_in_the_final FROM table_name_20 WHERE date = "30 august 1993"
What is Score In The Final, when Date is "30 August 1993"?
CREATE TABLE table_name_20 (score_in_the_final VARCHAR, date VARCHAR)
SELECT 1999 FROM table_name_80 WHERE 1998 = "grand slam tournaments"
What is the 1999 answer when 1998 is Grand Slam Tournaments?
CREATE TABLE table_name_80 (Id VARCHAR)
SELECT date FROM table_name_97 WHERE opponent = "george khrikadze"
What date did the opponent George Khrikadze play?
CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR)
SELECT SUM(rank) FROM table_name_89 WHERE name = "peter schmeichel"
What rank was Peter Schmeichel?
CREATE TABLE table_name_89 (rank INTEGER, name VARCHAR)
SELECT quattroporte_iv FROM table_1245350_1 WHERE units_produced = 340
What type of quattroporte iv only produced 340 units?
CREATE TABLE table_1245350_1 (quattroporte_iv VARCHAR, units_produced VARCHAR)
SELECT results¹ FROM table_name_70 WHERE city = "belgrade"
What's the result of the game played in Belgrade?
CREATE TABLE table_name_70 (results¹ VARCHAR, city VARCHAR)
SELECT catalog FROM table_name_9 WHERE label = "alfa records" AND format = "cd"
Which Catalog was formated as a CD under the label Alfa Records?
CREATE TABLE table_name_9 (catalog VARCHAR, label VARCHAR, format VARCHAR)
SELECT record FROM table_27755784_8 WHERE high_points = "Stephen Curry (32)"
What is the record when the high points is listed as Stephen Curry (32)?
CREATE TABLE table_27755784_8 (record VARCHAR, high_points VARCHAR)
SELECT AVG(l_100km_urban__cold_) FROM table_name_97 WHERE l_100km_extra_urban < 7.2 AND mpg_uk_combined < 39.8 AND l_100km_combined > 7.9 AND mpg_us_combined < 25.1
What is the average L/100km urban value having an L/100km extraurban under 7.2, mpg combined in the UK under 39.8, l/100km combined over 7.9, and mpg combined in the US under 25.1?
CREATE TABLE table_name_97 (l_100km_urban__cold_ INTEGER, mpg_us_combined VARCHAR, l_100km_combined VARCHAR, l_100km_extra_urban VARCHAR, mpg_uk_combined VARCHAR)
SELECT COUNT(attendance) FROM table_name_17 WHERE record = "17-7"
What was total attendance on the day they went 17-7?
CREATE TABLE table_name_17 (attendance VARCHAR, record VARCHAR)
SELECT title FROM table_name_24 WHERE termination_of_mission = "april 10, 1939"
Name the title with termination of mission of april 10, 1939
CREATE TABLE table_name_24 (title VARCHAR, termination_of_mission VARCHAR)
SELECT country FROM table_name_21 WHERE score = 76 - 68 = 144
What is the country with a 76-68=144 score?
CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR)
SELECT COUNT(season) FROM table_name_5 WHERE coach = "steve fisher"
How many seasons did coach steve fisher have?
CREATE TABLE table_name_5 (season VARCHAR, coach VARCHAR)
SELECT date FROM table_name_64 WHERE away_team = "gillingham"
What date was the away team, team Gillingham?
CREATE TABLE table_name_64 (date VARCHAR, away_team VARCHAR)
SELECT COUNT(dismissals) FROM table_19870086_24 WHERE innings = 8
what is the highest number of dismissals in a match with 8 innings
CREATE TABLE table_19870086_24 (dismissals VARCHAR, innings VARCHAR)
SELECT MAX(ccbs) FROM table_name_13 WHERE payload_to_gto = "–" AND upper_stage = "sec"
What is the greatest CCBs with a Payload to GTO of –, and an Upper stage of sec?
CREATE TABLE table_name_13 (ccbs INTEGER, payload_to_gto VARCHAR, upper_stage VARCHAR)
SELECT COUNT(location) FROM table_17487395_1 WHERE callsign = "DXJP-FM"
How many locations have the call signs dxjp-fm?
CREATE TABLE table_17487395_1 (location VARCHAR, callsign VARCHAR)
SELECT MAX(pick__number) FROM table_name_32 WHERE name = "william middleton" AND round > 5
Which Pick # is the highest one that has a Name of william middleton, and a Round larger than 5?
CREATE TABLE table_name_32 (pick__number INTEGER, name VARCHAR, round VARCHAR)
SELECT dar FROM table_15887683_5 WHERE n° = "336" AND language = "Italian"
What DAR is available for n. 336 in Italian?
CREATE TABLE table_15887683_5 (dar VARCHAR, n° VARCHAR, language VARCHAR)
SELECT COUNT(attendance) FROM table_name_78 WHERE week = 9
How many attendances have 9 as the week?
CREATE TABLE table_name_78 (attendance VARCHAR, week VARCHAR)
SELECT game_site FROM table_17848578_1 WHERE attendance = 51478
Where was the game where attendance was 51478?
CREATE TABLE table_17848578_1 (game_site VARCHAR, attendance VARCHAR)
SELECT result FROM table_name_50 WHERE date = "december 20, 1970"
What was the result for the game played on December 20, 1970?
CREATE TABLE table_name_50 (result VARCHAR, date VARCHAR)
SELECT type FROM table_name_55 WHERE disaster = "arrow air flight 1285"
What is the type of disaster that the Arrow Air Flight 1285 categorized in?
CREATE TABLE table_name_55 (type VARCHAR, disaster VARCHAR)
SELECT country FROM table_name_98 WHERE score = 70 - 71 - 68 = 209
What is the country of the player with a 70-71-68=209 score?
CREATE TABLE table_name_98 (country VARCHAR, score VARCHAR)
SELECT Record_Company, COUNT(*) FROM orchestra GROUP BY Record_Company
Please show the different record companies and the corresponding number of orchestras.
CREATE TABLE orchestra (Record_Company VARCHAR)
SELECT lead FROM table_name_10 WHERE skip = "katarina radonic"
Which Lead has Katarina Radonic as Skip?
CREATE TABLE table_name_10 (lead VARCHAR, skip VARCHAR)
SELECT COUNT(gain) FROM table_name_45 WHERE loss > 57 AND long < 55
How many gains were there for the player who had a loss greater than 57 and a long less than 55?
CREATE TABLE table_name_45 (gain VARCHAR, loss VARCHAR, long VARCHAR)
SELECT MAX(game) FROM table_name_26 WHERE team = "sacramento"
What was the latest game that Sacramento played?
CREATE TABLE table_name_26 (game INTEGER, team VARCHAR)
SELECT goals FROM table_name_47 WHERE caps = 2 AND club = "degerfors if"
How many goals for the player with 2 caps at degerfors if?
CREATE TABLE table_name_47 (goals VARCHAR, caps VARCHAR, club VARCHAR)
SELECT SUM(points) FROM table_name_79 WHERE drawn > 2 AND position > 5
What is the sum of points for a position over 5 with more than 2 draws?
CREATE TABLE table_name_79 (points INTEGER, drawn VARCHAR, position VARCHAR)
SELECT MIN(total) FROM table_name_57 WHERE gold = 0 AND bronze > 2 AND silver > 1
What is the lowest total amount of medals from countries with 0 gold medals, more than 2 bronze medals, and more than 1 silver medal?
CREATE TABLE table_name_57 (total INTEGER, silver VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT hosts FROM table_name_2 WHERE year = "2004"
Who are the hosts for the 2004 event?
CREATE TABLE table_name_2 (hosts VARCHAR, year VARCHAR)
SELECT result FROM table_name_46 WHERE nominee = "brent spiner"
What is the result for Brent Spiner?
CREATE TABLE table_name_46 (result VARCHAR, nominee VARCHAR)
SELECT COUNT(attendance) FROM table_name_27 WHERE game_site = "tiger stadium" AND week > 7
What was the Attendance after Week 7 at Tiger Stadium?
CREATE TABLE table_name_27 (attendance VARCHAR, game_site VARCHAR, week VARCHAR)