question
stringlengths 12
243
| answer
stringlengths 18
557
| context
stringlengths 27
489
|
---|---|---|
What date after Week 6 was a Bye? | SELECT date FROM table_name_34 WHERE week > 6 AND attendance = "bye" | CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
What is the song with more than 9 points and 44 (11) jury (points)? | SELECT song FROM table_name_55 WHERE total_points > 9 AND jury__points_ = "44 (11)" | CREATE TABLE table_name_55 (song VARCHAR, total_points VARCHAR, jury__points_ VARCHAR) |
What player belongs to Northwestern College? | SELECT player FROM table_name_34 WHERE college = "northwestern" | CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) |
What is the Round against Gillingham with an Against smaller than 3? | SELECT round FROM table_name_40 WHERE opposing_team = "gillingham" AND against < 3 | CREATE TABLE table_name_40 (round VARCHAR, opposing_team VARCHAR, against VARCHAR) |
What's the shut down state of the unit that's been in commercial operation since 01.02.1984? | SELECT shut_down FROM table_12983929_1 WHERE commercial_operation = "01.02.1984" | CREATE TABLE table_12983929_1 (shut_down VARCHAR, commercial_operation VARCHAR) |
What incumbent was a federalist that was first elected in 1803? | SELECT incumbent FROM table_2668374_18 WHERE party = "Federalist" AND first_elected = "1803" | CREATE TABLE table_2668374_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) |
How many headquarters are there listed for HSBC? | SELECT COUNT(headquarters) FROM table_1682026_7 WHERE company = "HSBC" | CREATE TABLE table_1682026_7 (headquarters VARCHAR, company VARCHAR) |
What is the total number of episodes where jim sweeney was the 1st performer and steve steen was the 2nd performer? | SELECT COUNT(episode) FROM table_name_78 WHERE performer_1 = "jim sweeney" AND performer_2 = "steve steen" | CREATE TABLE table_name_78 (episode VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR) |
What is the average round when there is a defensive back and an overall smaller than 199? | SELECT AVG(round) FROM table_name_49 WHERE position = "defensive back" AND overall < 199 | CREATE TABLE table_name_49 (round INTEGER, position VARCHAR, overall VARCHAR) |
What is the winning score of the match with a margin of 3 strokes? | SELECT winning_score FROM table_name_39 WHERE margin = "3 strokes" | CREATE TABLE table_name_39 (winning_score VARCHAR, margin VARCHAR) |
Which event has a method of TKO (punches)? | SELECT event FROM table_name_52 WHERE method = "tko (punches)" | CREATE TABLE table_name_52 (event VARCHAR, method VARCHAR) |
Who is the head coach for the team that plays at Altrincham Ice Dome? | SELECT head_coach FROM table_2384331_1 WHERE arena = "Altrincham Ice Dome" | CREATE TABLE table_2384331_1 (head_coach VARCHAR, arena VARCHAR) |
display the full name (first and last), hire date, salary, and department number for those employees whose first name does not containing the letter M. | SELECT first_name, last_name, hire_date, salary, department_id FROM employees WHERE NOT first_name LIKE '%M%' | CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, hire_date VARCHAR, salary VARCHAR, department_id VARCHAR) |
Show the position of players and the corresponding number of players. | SELECT POSITION, COUNT(*) FROM match_season GROUP BY POSITION | CREATE TABLE match_season (POSITION VARCHAR) |
What is the highest number of points for a position less than 3 and less than 1 loss? | SELECT MAX(points) FROM table_name_19 WHERE position < 3 AND lost < 1 | CREATE TABLE table_name_19 (points INTEGER, position VARCHAR, lost VARCHAR) |
What position was drafted by the Hamilton Tiger-Cats? | SELECT position FROM table_21321804_5 WHERE cfl_team = "Hamilton Tiger-Cats" | CREATE TABLE table_21321804_5 (position VARCHAR, cfl_team VARCHAR) |
What is the main use of the structure that was in redfield, arkansas before 2004? | SELECT main_use FROM table_name_77 WHERE year < 2004 AND town = "redfield, arkansas" | CREATE TABLE table_name_77 (main_use VARCHAR, year VARCHAR, town VARCHAR) |
Which time/retired had 75 laps and Pedro de la Rosa as a driver? | SELECT time_retired FROM table_name_86 WHERE laps = 75 AND driver = "pedro de la rosa" | CREATE TABLE table_name_86 (time_retired VARCHAR, laps VARCHAR, driver VARCHAR) |
What is the series # when the director is john showalter? | SELECT series__number FROM table_29747178_2 WHERE directed_by = "John Showalter" | CREATE TABLE table_29747178_2 (series__number VARCHAR, directed_by VARCHAR) |
What is the greatest played with a drawn less than 1 and a position of less than 1? | SELECT MAX(played) FROM table_name_99 WHERE drawn < 1 AND position < 1 | CREATE TABLE table_name_99 (played INTEGER, drawn VARCHAR, position VARCHAR) |
What is the title for david campbell mulford? | SELECT title FROM table_name_90 WHERE name = "david campbell mulford" | CREATE TABLE table_name_90 (title VARCHAR, name VARCHAR) |
When was the game against the Indianapolis Colts? | SELECT date FROM table_name_40 WHERE opponent = "indianapolis colts" | CREATE TABLE table_name_40 (date VARCHAR, opponent VARCHAR) |
Which year had a toleman tg183 chassis? | SELECT COUNT(year) FROM table_name_36 WHERE chassis = "toleman tg183" | CREATE TABLE table_name_36 (year VARCHAR, chassis VARCHAR) |
What provinces were formed from New Munster? | SELECT province FROM table_275023_1 WHERE formed_from = "New Munster" | CREATE TABLE table_275023_1 (province VARCHAR, formed_from VARCHAR) |
What is the phonetic when the standard thai is ผ่า? | SELECT phonetic FROM table_name_88 WHERE standard_thai = "ผ่า" | CREATE TABLE table_name_88 (phonetic VARCHAR, standard_thai VARCHAR) |
What was the average when the strike rate is 75.78? | SELECT average FROM table_26041144_10 WHERE strike_rate = "75.78" | CREATE TABLE table_26041144_10 (average VARCHAR, strike_rate VARCHAR) |
What Outcome has Opponents of bob hewitt frew mcmillan? | SELECT outcome FROM table_name_2 WHERE opponents = "bob hewitt frew mcmillan" | CREATE TABLE table_name_2 (outcome VARCHAR, opponents VARCHAR) |
Which segment A also has a segment D of kitchen shears? | SELECT segment_a FROM table_name_57 WHERE segment_d = "kitchen shears" | CREATE TABLE table_name_57 (segment_a VARCHAR, segment_d VARCHAR) |
What is the lowest value for Wins, when South West DFL is "Cavendish", and when Byes is less than 0? | SELECT MIN(wins) FROM table_name_58 WHERE south_west_dfl = "cavendish" AND byes < 0 | CREATE TABLE table_name_58 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR) |
What tyre has a chassis of p57 p61? | SELECT tyre FROM table_name_85 WHERE chassis = "p57 p61" | CREATE TABLE table_name_85 (tyre VARCHAR, chassis VARCHAR) |
Name the record for l 90–100 (ot) | SELECT record FROM table_22879323_9 WHERE score = "L 90–100 (OT)" | CREATE TABLE table_22879323_9 (record VARCHAR, score VARCHAR) |
Which artist does the album "Balls to the Wall" belong to? | SELECT T2.Name FROM ALBUM AS T1 JOIN ARTIST AS T2 ON T1.ArtistId = T2.ArtistId WHERE T1.Title = "Balls to the Wall" | CREATE TABLE ALBUM (ArtistId VARCHAR, Title VARCHAR); CREATE TABLE ARTIST (Name VARCHAR, ArtistId VARCHAR) |
What is the time/retired if the driver is Marco Andretti? | SELECT time_retired FROM table_17693171_1 WHERE driver = "Marco Andretti" | CREATE TABLE table_17693171_1 (time_retired VARCHAR, driver VARCHAR) |
When was the score 56-26? | SELECT date FROM table_name_2 WHERE record = "56-26" | CREATE TABLE table_name_2 (date VARCHAR, record VARCHAR) |
In what time period were 354 built? | SELECT period FROM table_name_13 WHERE built = "354" | CREATE TABLE table_name_13 (period VARCHAR, built VARCHAR) |
What is the date of the tournament played in Madrid, Spain? | SELECT date FROM table_name_90 WHERE tournament = "madrid, spain" | CREATE TABLE table_name_90 (date VARCHAR, tournament VARCHAR) |
What is the smallest rank number of those used to rank the islands? | SELECT MIN(rank) FROM table_13897690_1 | CREATE TABLE table_13897690_1 (rank INTEGER) |
What was the score in the venue of Seoul that resulted in 8-0? | SELECT score FROM table_name_32 WHERE venue = "seoul" AND result = "8-0" | CREATE TABLE table_name_32 (score VARCHAR, venue VARCHAR, result VARCHAR) |
What work was nominated at Rockferendum 2007 and got 1st place and got the award for best album? | SELECT nominated_work FROM table_name_55 WHERE type = "rockferendum 2007" AND position = "1st place" AND award = "best album" | CREATE TABLE table_name_55 (nominated_work VARCHAR, award VARCHAR, type VARCHAR, position VARCHAR) |
What is the low gold total for under 2 total and over 0 silvers? | SELECT MIN(gold) FROM table_name_57 WHERE total < 2 AND silver > 0 | CREATE TABLE table_name_57 (gold INTEGER, total VARCHAR, silver VARCHAR) |
How many results did the GT1 Winning Team No. 50 Larbre Compétition on the Algarve circuit? | SELECT COUNT(results) FROM table_24865763_2 WHERE circuit = "Algarve" AND gt1_winning_team = "No. 50 Larbre Compétition" | CREATE TABLE table_24865763_2 (results VARCHAR, circuit VARCHAR, gt1_winning_team VARCHAR) |
Who had the high rebounds for game 12? | SELECT high_rebounds FROM table_name_55 WHERE game = 12 | CREATE TABLE table_name_55 (high_rebounds VARCHAR, game VARCHAR) |
How many people directed the show written by Chris Sheridan? | SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan" | CREATE TABLE table_14724369_1 (directed_by VARCHAR, written_by VARCHAR) |
What document types do have more than 10000 total access number. | SELECT document_type_code FROM documents GROUP BY document_type_code HAVING SUM(access_count) > 10000 | CREATE TABLE documents (document_type_code VARCHAR, access_count INTEGER) |
What is the average year with Nathan Robertson Gail Emms in mixed doubles? | SELECT AVG(year) FROM table_name_71 WHERE mixed_doubles = "nathan robertson gail emms" | CREATE TABLE table_name_71 (year INTEGER, mixed_doubles VARCHAR) |
Find the distinct last names of the students who have class president votes. | SELECT DISTINCT T1.LName FROM STUDENT AS T1 JOIN VOTING_RECORD AS T2 ON T1.StuID = T2.CLASS_President_VOTE | CREATE TABLE STUDENT (LName VARCHAR, StuID VARCHAR); CREATE TABLE VOTING_RECORD (CLASS_President_VOTE VARCHAR) |
Which Run 4 has Athletes of alexandru frimu & costel rădulescu? | SELECT run_4 FROM table_name_37 WHERE athletes = "alexandru frimu & costel rădulescu" | CREATE TABLE table_name_37 (run_4 VARCHAR, athletes VARCHAR) |
What is the ERP for the Rockhampton region? | SELECT erp__analog__digital_ FROM table_name_27 WHERE region_served = "rockhampton" | CREATE TABLE table_name_27 (erp__analog__digital_ VARCHAR, region_served VARCHAR) |
Which Event has a Competition of chicago marathon, and a Year larger than 2004? | SELECT event FROM table_name_79 WHERE competition = "chicago marathon" AND year > 2004 | CREATE TABLE table_name_79 (event VARCHAR, competition VARCHAR, year VARCHAR) |
What is the to par of the player with a t4 place and a score of 75-69-74-72=290? | SELECT to_par FROM table_name_46 WHERE place = "t4" AND score = 75 - 69 - 74 - 72 = 290 | CREATE TABLE table_name_46 (to_par VARCHAR, place VARCHAR, score VARCHAR) |
Which building has 26 storeys? | SELECT building FROM table_name_42 WHERE storeys = 26 | CREATE TABLE table_name_42 (building VARCHAR, storeys VARCHAR) |
What is the recoupa sudaamericana 1996 result of team flamengo, which did not qualify for the copa conmebol 1996? | SELECT recopa_sudamericana_1996 FROM table_name_10 WHERE copa_conmebol_1996 = "did not qualify" AND team = "flamengo" | CREATE TABLE table_name_10 (recopa_sudamericana_1996 VARCHAR, copa_conmebol_1996 VARCHAR, team VARCHAR) |
When was the date of death for the person married to Charles II? | SELECT death FROM table_name_86 WHERE spouse = "charles ii" | CREATE TABLE table_name_86 (death VARCHAR, spouse VARCHAR) |
What is the airing date for costume comedy that has 20 episodes? | SELECT airing_date FROM table_name_91 WHERE number_of_episodes = 20 AND genre = "costume comedy" | CREATE TABLE table_name_91 (airing_date VARCHAR, number_of_episodes VARCHAR, genre VARCHAR) |
What is the total number of Raiders First Downs, when Date is "Nov. 2", and when Raiders Points is greater than 42? | SELECT COUNT(raiders_first_downs) FROM table_name_21 WHERE date = "nov. 2" AND raiders_points > 42 | CREATE TABLE table_name_21 (raiders_first_downs VARCHAR, date VARCHAR, raiders_points VARCHAR) |
What is the Attendance of New Zealand Scores in bold? | SELECT attendance FROM table_name_6 WHERE date = "new zealand scores in bold" | CREATE TABLE table_name_6 (attendance VARCHAR, date VARCHAR) |
What is the year of daylight service when the builder was Alco? | SELECT years_of_daylight_service FROM table_name_7 WHERE builder = "alco" | CREATE TABLE table_name_7 (years_of_daylight_service VARCHAR, builder VARCHAR) |
How many matches have a City/Country of karachi, pakistan, and a Year larger than 1996? | SELECT COUNT(match) FROM table_name_63 WHERE city_country = "karachi, pakistan" AND year > 1996 | CREATE TABLE table_name_63 (match VARCHAR, city_country VARCHAR, year VARCHAR) |
What is the highest number of losses where a team scored more than 45 goals and had 32 against? | SELECT MAX(losses) FROM table_name_23 WHERE goals_against = 32 AND goals_for > 45 | CREATE TABLE table_name_23 (losses INTEGER, goals_against VARCHAR, goals_for VARCHAR) |
WWhich rder had a vehicle manufactured by kr211v? | SELECT rider FROM table_name_26 WHERE manufacturer = "kr211v" | CREATE TABLE table_name_26 (rider VARCHAR, manufacturer VARCHAR) |
What is the record for the game that shows the Rose Garden 20,126 as attendance? | SELECT record FROM table_name_96 WHERE attendance = "rose garden 20,126" | CREATE TABLE table_name_96 (record VARCHAR, attendance VARCHAR) |
What were the performance lengths in the 3000 m events in and after 2003? | SELECT performance FROM table_name_49 WHERE season > 2003 AND discipline = "3000 m" | CREATE TABLE table_name_49 (performance VARCHAR, season VARCHAR, discipline VARCHAR) |
Find the common personal name of course authors and students. | SELECT personal_name FROM Course_Authors_and_Tutors INTERSECT SELECT personal_name FROM Students | CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR); CREATE TABLE Students (personal_name VARCHAR) |
Find all manufacturers' names and their headquarters, sorted by the ones with highest revenue first. | SELECT name, headquarter FROM manufacturers ORDER BY revenue DESC | CREATE TABLE manufacturers (name VARCHAR, headquarter VARCHAR, revenue VARCHAR) |
What is the Home team score for the Away team of North Melbourne? | SELECT home_team AS score FROM table_name_69 WHERE away_team = "north melbourne" | CREATE TABLE table_name_69 (home_team VARCHAR, away_team VARCHAR) |
What is the name of each camera lens and the number of photos taken by it? Order the result by the count of photos. | SELECT T1.name, COUNT(*) FROM camera_lens AS T1 JOIN photos AS T2 ON T1.id = T2.camera_lens_id GROUP BY T1.id ORDER BY COUNT(*) | CREATE TABLE photos (camera_lens_id VARCHAR); CREATE TABLE camera_lens (name VARCHAR, id VARCHAR) |
Competition of friendly, and a Date of 03-jun-62 had what score? | SELECT score FROM table_name_72 WHERE competition = "friendly" AND date = "03-jun-62" | CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR, date VARCHAR) |
Who has a Date of Birth 1980-07-29? | SELECT name FROM table_name_64 WHERE date_of_birth = "1980-07-29" | CREATE TABLE table_name_64 (name VARCHAR, date_of_birth VARCHAR) |
Name the name for company d | SELECT name FROM table_25794010_1 WHERE company = "company D" | CREATE TABLE table_25794010_1 (name VARCHAR, company VARCHAR) |
Name the film title for la boca del lobo | SELECT film_title_used_in_nomination FROM table_20963074_1 WHERE original_title = "La boca del lobo" | CREATE TABLE table_20963074_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) |
What is the date of the game with a loss result in the Europe/Africa Group I, Round Robin competition in Murcia (esp) after 1998? | SELECT date FROM table_name_15 WHERE result = "loss" AND competition = "europe/africa group i, round robin" AND location = "murcia (esp)" AND year > 1998 | CREATE TABLE table_name_15 (date VARCHAR, year VARCHAR, location VARCHAR, result VARCHAR, competition VARCHAR) |
What opponent has 8-10 as the record? | SELECT opponent FROM table_name_76 WHERE record = "8-10" | CREATE TABLE table_name_76 (opponent VARCHAR, record VARCHAR) |
what is the least dynamo when spartak is more than 9, competition is totals and draw is more than 24? | SELECT MIN(dynamo) FROM table_name_12 WHERE spartak > 9 AND competition = "totals" AND draw > 24 | CREATE TABLE table_name_12 (dynamo INTEGER, draw VARCHAR, spartak VARCHAR, competition VARCHAR) |
What is the total for the state of new york and a swimsuit less than 9.394? | SELECT SUM(interview) FROM table_name_97 WHERE state = "new york" AND swimsuit < 9.394 | CREATE TABLE table_name_97 (interview INTEGER, state VARCHAR, swimsuit VARCHAR) |
What is the sum of the week for the Denver Broncos? | SELECT SUM(week) FROM table_name_60 WHERE opponent = "denver broncos" | CREATE TABLE table_name_60 (week INTEGER, opponent VARCHAR) |
Which Round has a Method of ko, and an Opponent of alfonse d'amore? | SELECT round FROM table_name_14 WHERE method = "ko" AND opponent = "alfonse d'amore" | CREATE TABLE table_name_14 (round VARCHAR, method VARCHAR, opponent VARCHAR) |
Name the total number of pinyin for hsin-yüan-i-ma | SELECT COUNT(pinyin) FROM table_16162581_1 WHERE wade_giles = "hsin-yüan-i-ma" | CREATE TABLE table_16162581_1 (pinyin VARCHAR, wade_giles VARCHAR) |
How many episodes have the production code 8.04 | SELECT COUNT(directed_by) FROM table_2226817_9 WHERE production_code = "8.04" | CREATE TABLE table_2226817_9 (directed_by VARCHAR, production_code VARCHAR) |
How many dates of demolition are located on Wood Street? | SELECT COUNT(date_of_demolition) FROM table_name_7 WHERE location = "wood street" | CREATE TABLE table_name_7 (date_of_demolition VARCHAR, location VARCHAR) |
Which group nominated Kim in years before 2010 for Thirst? | SELECT group FROM table_name_66 WHERE year < 2010 AND film_series = "thirst" | CREATE TABLE table_name_66 (group VARCHAR, year VARCHAR, film_series VARCHAR) |
What is the lowest loss that Jarius Wright has had where he also has had a gain bigger than 1. | SELECT MIN(loss) FROM table_name_80 WHERE name = "jarius wright" AND gain > 1 | CREATE TABLE table_name_80 (loss INTEGER, name VARCHAR, gain VARCHAR) |
Who was the Minister that served for 307 days? | SELECT minister FROM table_name_46 WHERE term_in_office = "307 days" | CREATE TABLE table_name_46 (minister VARCHAR, term_in_office VARCHAR) |
what is the location when the type is embassy and the mission is panama? | SELECT location FROM table_name_42 WHERE type = "embassy" AND mission = "panama" | CREATE TABLE table_name_42 (location VARCHAR, type VARCHAR, mission VARCHAR) |
What Opponent has a Site of war memorial stadium • little rock, ar, and a Result of l6–7? | SELECT opponent FROM table_name_63 WHERE site = "war memorial stadium • little rock, ar" AND result = "l6–7" | CREATE TABLE table_name_63 (opponent VARCHAR, site VARCHAR, result VARCHAR) |
What school did Paul Dawkins play for? | SELECT school_club_team FROM table_name_34 WHERE player = "paul dawkins" | CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR) |
What is the team 2 with cobreloa as team 1? | SELECT team_2 FROM table_name_2 WHERE team_1 = "cobreloa" | CREATE TABLE table_name_2 (team_2 VARCHAR, team_1 VARCHAR) |
For what cause is Touring Car Racing the discipline? | SELECT cause FROM table_name_91 WHERE discipline = "touring car racing" | CREATE TABLE table_name_91 (cause VARCHAR, discipline VARCHAR) |
When Brett Lancaster won the general classification, who won the team calssification? | SELECT team_classification FROM table_25055040_22 WHERE general_classification = "Brett Lancaster" | CREATE TABLE table_25055040_22 (team_classification VARCHAR, general_classification VARCHAR) |
On what date was James P. Buchanan (d)'s successor seated? | SELECT date_successor_seated FROM table_2159547_3 WHERE vacator = "James P. Buchanan (D)" | CREATE TABLE table_2159547_3 (date_successor_seated VARCHAR, vacator VARCHAR) |
Name the having things for privacy, intimate spaces of togetherness | SELECT having__things_ FROM table_name_99 WHERE interacting__settings_ = "privacy, intimate spaces of togetherness" | CREATE TABLE table_name_99 (having__things_ VARCHAR, interacting__settings_ VARCHAR) |
When did the season air where the viewership was 14.71 million? | SELECT season AS premiere FROM table_1145977_2 WHERE viewers__in_millions_ = "14.71" | CREATE TABLE table_1145977_2 (season VARCHAR, viewers__in_millions_ VARCHAR) |
What's the most against when the draws are more than 0? | SELECT MAX(against) FROM table_name_43 WHERE draws > 0 | CREATE TABLE table_name_43 (against INTEGER, draws INTEGER) |
Tell me the number for height in ft of 6-7 | SELECT no_s_ FROM table_name_18 WHERE height_in_ft = "6-7" | CREATE TABLE table_name_18 (no_s_ VARCHAR, height_in_ft VARCHAR) |
Which Team/Chassis has less than 65 points? | SELECT team_chassis FROM table_name_66 WHERE pts < 65 | CREATE TABLE table_name_66 (team_chassis VARCHAR, pts INTEGER) |
Tell me the portfolio of minister of carlo giovanardi | SELECT portfolio FROM table_name_77 WHERE minister = "carlo giovanardi" | CREATE TABLE table_name_77 (portfolio VARCHAR, minister VARCHAR) |
Who was the visiting team at the Chicago home game? | SELECT visitor FROM table_name_30 WHERE home = "chicago" | CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR) |
What's the value for arizona when colorado and nevada are nixon, and texas is humphrey? | SELECT arizona FROM table_name_83 WHERE colorado = "nixon" AND nevada = "nixon" AND texas = "humphrey" | CREATE TABLE table_name_83 (arizona VARCHAR, texas VARCHAR, colorado VARCHAR, nevada VARCHAR) |
How many million viewers watch the episode that kevin biegel & aseem batra wrote? | SELECT us_viewers__million_ FROM table_25548213_1 WHERE written_by = "Kevin Biegel & Aseem Batra" | CREATE TABLE table_25548213_1 (us_viewers__million_ VARCHAR, written_by VARCHAR) |
What is the number of people in attendance at Oakland-Alameda County Coliseum, and game is 2? | SELECT SUM(attendance) FROM table_name_83 WHERE location = "oakland-alameda county coliseum" AND game = 2 | CREATE TABLE table_name_83 (attendance INTEGER, location VARCHAR, game VARCHAR) |
what is the year when the location is san diego, california and defeated is houston baptist (texas)? | SELECT COUNT(year) FROM table_name_96 WHERE location = "san diego, california" AND defeated = "houston baptist (texas)" | CREATE TABLE table_name_96 (year VARCHAR, location VARCHAR, defeated VARCHAR) |