Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
30,100
<question>: Who are the UK co-presenters that have Joe Swash as a co-presenter and Russell Kane as a comedian? <context>: CREATE TABLE table_14345690_15 (uk_co_presenter VARCHAR, co_presenter VARCHAR, comedian VARCHAR)
SELECT COUNT(uk_co_presenter) FROM table_14345690_15 WHERE co_presenter = "Joe Swash" AND comedian = "Russell Kane"
30,101
<question>: What series have Caroline Flack as a main presenter? <context>: CREATE TABLE table_14345690_15 (series VARCHAR, main_presenter VARCHAR)
SELECT series FROM table_14345690_15 WHERE main_presenter = "Caroline Flack"
30,102
<question>: Who is the co-presenter of the series Seven (2007)? <context>: CREATE TABLE table_14345690_15 (co_presenter VARCHAR, series VARCHAR)
SELECT co_presenter FROM table_14345690_15 WHERE series = "Seven (2007)"
30,103
<question>: Who is the main presenter of the series Twelve (2012)? <context>: CREATE TABLE table_14345690_15 (main_presenter VARCHAR, series VARCHAR)
SELECT main_presenter FROM table_14345690_15 WHERE series = "Twelve (2012)"
30,104
<question>: Who is the UK co-presenters that have Joe Swash as a co-presenter of the series Eleven (2011)? <context>: CREATE TABLE table_14345690_15 (uk_co_presenter VARCHAR, co_presenter VARCHAR, series VARCHAR)
SELECT uk_co_presenter FROM table_14345690_15 WHERE co_presenter = "Joe Swash" AND series = "Eleven (2011)"
30,105
<question>: What position did Nell McAndrew finish? <context>: CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)
SELECT finished FROM table_14345690_2 WHERE celebrity = "Nell McAndrew"
30,106
<question>: Who was the champion boxer? <context>: CREATE TABLE table_14345690_2 (celebrity VARCHAR, famous_for VARCHAR)
SELECT celebrity FROM table_14345690_2 WHERE famous_for = "Champion boxer"
30,107
<question>: When did Darren Day enter? <context>: CREATE TABLE table_14345690_2 (entered VARCHAR, celebrity VARCHAR)
SELECT entered FROM table_14345690_2 WHERE celebrity = "Darren Day"
30,108
<question>: What position did Tara Palmer-Tomkinson finish? <context>: CREATE TABLE table_14345690_2 (finished VARCHAR, celebrity VARCHAR)
SELECT finished FROM table_14345690_2 WHERE celebrity = "Tara Palmer-Tomkinson"
30,109
<question>: When did the 4th finisher enter? <context>: CREATE TABLE table_14345690_2 (entered VARCHAR, finished VARCHAR)
SELECT entered FROM table_14345690_2 WHERE finished = "4th"
30,110
<question>: How many people finished 9th? <context>: CREATE TABLE table_14345690_3 (exited VARCHAR, finished VARCHAR)
SELECT COUNT(exited) FROM table_14345690_3 WHERE finished = "9th"
30,111
<question>: What was the least amount of camp mates? <context>: CREATE TABLE table_14345690_1 (camp_mates INTEGER)
SELECT MIN(camp_mates) FROM table_14345690_1
30,112
<question>: Who directed series #4 that was teleplayed by David Simon? <context>: CREATE TABLE table_14346353_1 (directed_by VARCHAR, teleplay_by VARCHAR, series__number VARCHAR)
SELECT COUNT(directed_by) FROM table_14346353_1 WHERE teleplay_by = "David Simon" AND series__number = 4
30,113
<question>: What is the title of series #1? <context>: CREATE TABLE table_14346353_1 (title VARCHAR, series__number VARCHAR)
SELECT title FROM table_14346353_1 WHERE series__number = 1
30,114
<question>: What is the finished place where exited is day 11? <context>: CREATE TABLE table_14345690_5 (finished VARCHAR, exited VARCHAR)
SELECT finished FROM table_14345690_5 WHERE exited = "Day 11"
30,115
<question>: Who is the famous for that finished 2nd? <context>: CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR)
SELECT famous_for FROM table_14345690_5 WHERE finished = "2nd"
30,116
<question>: What is the famous for where the finished is 5th? <context>: CREATE TABLE table_14345690_5 (famous_for VARCHAR, finished VARCHAR)
SELECT famous_for FROM table_14345690_5 WHERE finished = "5th"
30,117
<question>: What is the exited day where the celebrity is vic reeves? <context>: CREATE TABLE table_14345690_5 (exited VARCHAR, celebrity VARCHAR)
SELECT exited FROM table_14345690_5 WHERE celebrity = "Vic Reeves"
30,118
<question>: what is the celebrity where the finished is 5th? <context>: CREATE TABLE table_14345690_5 (celebrity VARCHAR, finished VARCHAR)
SELECT celebrity FROM table_14345690_5 WHERE finished = "5th"
30,119
<question>: When was incumbent John Thomas Wilson first elected? <context>: CREATE TABLE table_1434788_5 (first_elected VARCHAR, incumbent VARCHAR)
SELECT first_elected FROM table_1434788_5 WHERE incumbent = "John Thomas Wilson"
30,120
<question>: Who were the candidates in the election where John Beatty was the incumbent? <context>: CREATE TABLE table_1434788_5 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1434788_5 WHERE incumbent = "John Beatty"
30,121
<question>: Who was the incumbent in the Ohio 16 district? <context>: CREATE TABLE table_1434788_5 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_1434788_5 WHERE district = "Ohio 16"
30,122
<question>: What is the result in 91-92 for the team with a 1.053 average? <context>: CREATE TABLE table_14368332_1 (average VARCHAR)
SELECT 1991 AS _92 FROM table_14368332_1 WHERE average = "1.053"
30,123
<question>: Name the birth date for shirt number 7 <context>: CREATE TABLE table_14363116_1 (birth_date VARCHAR, shirt_no VARCHAR)
SELECT birth_date FROM table_14363116_1 WHERE shirt_no = 7
30,124
<question>: Name the maximum height for yury berezhko <context>: CREATE TABLE table_14363116_1 (height INTEGER, player VARCHAR)
SELECT MAX(height) FROM table_14363116_1 WHERE player = "Yury Berezhko"
30,125
<question>: Name the 1991-1992 for river plate <context>: CREATE TABLE table_14390413_1 (team VARCHAR)
SELECT 1991 AS _1992 FROM table_14390413_1 WHERE team = "River Plate"
30,126
<question>: Which version of opengl is used by model sgx520? <context>: CREATE TABLE table_1439045_5 (opengl VARCHAR, model VARCHAR)
SELECT opengl AS ES FROM table_1439045_5 WHERE model = "SGX520"
30,127
<question>: What is the die size(mm 2) for model sgx531? <context>: CREATE TABLE table_1439045_5 (die_size__mm_2___ VARCHAR, model VARCHAR)
SELECT die_size__mm_2___[1] FROM table_1439045_5 WHERE model = "SGX531"
30,128
<question>: Name the number of nationality is tom hilde <context>: CREATE TABLE table_14407512_23 (nationality VARCHAR, name VARCHAR)
SELECT COUNT(nationality) FROM table_14407512_23 WHERE name = "Tom Hilde"
30,129
<question>: Who was the director of the episode originally aired on 26 October 1969? <context>: CREATE TABLE table_1439096_1 (director VARCHAR, original_air_date__atv_ VARCHAR)
SELECT director FROM table_1439096_1 WHERE original_air_date__atv_ = "26 October 1969"
30,130
<question>: What is the lowest production number? <context>: CREATE TABLE table_1439096_1 (production_no INTEGER)
SELECT MIN(production_no) FROM table_1439096_1
30,131
<question>: What is the title of the episode with the original air date of 28 September 1969? <context>: CREATE TABLE table_1439096_1 (title VARCHAR, original_air_date__atv_ VARCHAR)
SELECT title FROM table_1439096_1 WHERE original_air_date__atv_ = "28 September 1969"
30,132
<question>: What was the original air date (atv) of episode 1? <context>: CREATE TABLE table_1439096_1 (original_air_date__atv_ VARCHAR, episode_no VARCHAR)
SELECT original_air_date__atv_ FROM table_1439096_1 WHERE episode_no = 1
30,133
<question>: What was the length of the jumper representing FIN, in meters? <context>: CREATE TABLE table_14407512_4 (nationality VARCHAR)
SELECT 1 AS st__m_ FROM table_14407512_4 WHERE nationality = "FIN"
30,134
<question>: What is the 1st(m) score for the Person who had a total points of 272.7 <context>: CREATE TABLE table_14407512_9 (points VARCHAR)
SELECT 1 AS st__m_ FROM table_14407512_9 WHERE points = "272.7"
30,135
<question>: Name the opponent for week 12 <context>: CREATE TABLE table_14418812_1 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_14418812_1 WHERE week = 12
30,136
<question>: Name the number of date for shea stadium <context>: CREATE TABLE table_14418812_1 (date VARCHAR, game_site VARCHAR)
SELECT COUNT(date) FROM table_14418812_1 WHERE game_site = "Shea Stadium"
30,137
<question>: Name the opponent for astrodome <context>: CREATE TABLE table_14418812_1 (opponent VARCHAR, game_site VARCHAR)
SELECT opponent FROM table_14418812_1 WHERE game_site = "Astrodome"
30,138
<question>: How many home team scores have a time of 4:40 PM? <context>: CREATE TABLE table_14425454_1 (home_team VARCHAR, time VARCHAR)
SELECT COUNT(home_team) AS score FROM table_14425454_1 WHERE time = "4:40 PM"
30,139
<question>: What stadiums had an attendance of 8,256? <context>: CREATE TABLE table_14425454_1 (ground VARCHAR, crowd VARCHAR)
SELECT ground FROM table_14425454_1 WHERE crowd = "8,256"
30,140
<question>: What is the total number of attendees where the home team was Port Adelaide? <context>: CREATE TABLE table_14425454_1 (crowd VARCHAR, home_team VARCHAR)
SELECT COUNT(crowd) FROM table_14425454_1 WHERE home_team = "Port Adelaide"
30,141
<question>: Which team did they play at Rich Stadium? <context>: CREATE TABLE table_14423274_3 (opponent VARCHAR, game_site VARCHAR)
SELECT opponent FROM table_14423274_3 WHERE game_site = "Rich Stadium"
30,142
<question>: What date did they play in Cleveland Municipal Stadium? <context>: CREATE TABLE table_14423274_3 (date VARCHAR, game_site VARCHAR)
SELECT date FROM table_14423274_3 WHERE game_site = "Cleveland Municipal Stadium"
30,143
<question>: Name the year model for 4-cyl straight engine dohc 16v and 1.5 crdi <context>: CREATE TABLE table_1444201_1 (year_model VARCHAR, engine VARCHAR, model VARCHAR)
SELECT year_model FROM table_1444201_1 WHERE engine = "4-cyl Straight engine DOHC 16V" AND model = "1.5 CRDi"
30,144
<question>: Name the year model for 1.3 <context>: CREATE TABLE table_1444201_1 (year_model VARCHAR, model VARCHAR)
SELECT year_model FROM table_1444201_1 WHERE model = "1.3"
30,145
<question>: what is the minimum pos with clubs being 16 <context>: CREATE TABLE table_14460937_2 (pos INTEGER, clubs VARCHAR)
SELECT MIN(pos) FROM table_14460937_2 WHERE clubs = "16"
30,146
<question>: what is the maximum value for afc cup <context>: CREATE TABLE table_14460937_2 (afc_cup INTEGER)
SELECT MAX(afc_cup) FROM table_14460937_2
30,147
<question>: how many pos with member association being china pr <context>: CREATE TABLE table_14460937_2 (pos VARCHAR, member_association VARCHAR)
SELECT COUNT(pos) FROM table_14460937_2 WHERE member_association = "China PR"
30,148
<question>: how many points (total 500) with pos being 11 <context>: CREATE TABLE table_14460937_2 (points__total_500_ VARCHAR, pos VARCHAR)
SELECT COUNT(points__total_500_) FROM table_14460937_2 WHERE pos = 11
30,149
<question>: How many points in 87/88 for racing de córdoba? <context>: CREATE TABLE table_14460085_3 (team VARCHAR)
SELECT 1987 AS _88 FROM table_14460085_3 WHERE team = "Racing de Córdoba"
30,150
<question>: What is the lowest number of games played for deportivo español? <context>: CREATE TABLE table_14460085_3 (played INTEGER, team VARCHAR)
SELECT MIN(played) FROM table_14460085_3 WHERE team = "Deportivo Español"
30,151
<question>: How many points total for san lorenzo? <context>: CREATE TABLE table_14460085_3 (points VARCHAR, team VARCHAR)
SELECT COUNT(points) FROM table_14460085_3 WHERE team = "San Lorenzo"
30,152
<question>: Name the telephone 052 for area km2 being 5.42 <context>: CREATE TABLE table_14465924_1 (telephone__052_ VARCHAR, area__km_2__ VARCHAR)
SELECT telephone__052_ FROM table_14465924_1 WHERE area__km_2__ = "5.42"
30,153
<question>: Name the population of people for area being 24.35 <context>: CREATE TABLE table_14465924_1 (population__people_ VARCHAR, area__km_2__ VARCHAR)
SELECT population__people_ FROM table_14465924_1 WHERE area__km_2__ = "24.35"
30,154
<question>: Name the total number of telephone 052 for 362.81 <context>: CREATE TABLE table_14465924_1 (telephone__052_ VARCHAR, area__km_2__ VARCHAR)
SELECT COUNT(telephone__052_) FROM table_14465924_1 WHERE area__km_2__ = "362.81"
30,155
<question>: Name the number of administrative unit for number 4 <context>: CREATE TABLE table_14465924_1 (name_of_administrative_unit VARCHAR, number VARCHAR)
SELECT name_of_administrative_unit FROM table_14465924_1 WHERE number = 4
30,156
<question>: Name the name of administrative unit for 3464 people <context>: CREATE TABLE table_14465924_1 (name_of_administrative_unit VARCHAR, population__people_ VARCHAR)
SELECT name_of_administrative_unit FROM table_14465924_1 WHERE population__people_ = 3464
30,157
<question>: How many of the cmdlets are the 2008 version? <context>: CREATE TABLE table_14465871_2 (cmdlets VARCHAR, version VARCHAR)
SELECT COUNT(cmdlets) FROM table_14465871_2 WHERE version = "2008"
30,158
<question>: Which providers use exchange server? <context>: CREATE TABLE table_14465871_2 (provider VARCHAR, application VARCHAR)
SELECT provider FROM table_14465871_2 WHERE application = "Exchange Server"
30,159
<question>: Which providers use version 2008? <context>: CREATE TABLE table_14465871_2 (provider VARCHAR, version VARCHAR)
SELECT provider FROM table_14465871_2 WHERE version = "2008"
30,160
<question>: how many points did the argentinos juniors team score during the 1986-87 season? <context>: CREATE TABLE table_14489821_1 (team VARCHAR)
SELECT 1986 AS _87 FROM table_14489821_1 WHERE team = "Argentinos Juniors"
30,161
<question>: what is the maximum number of matches played by a team? <context>: CREATE TABLE table_14489821_1 (played INTEGER)
SELECT MAX(played) FROM table_14489821_1
30,162
<question>: list the number of matches played by the teams that got an average of 1.079 <context>: CREATE TABLE table_14489821_1 (average VARCHAR)
SELECT 1986 AS _87 FROM table_14489821_1 WHERE average = "1.079"
30,163
<question>: Name the womens singles for korea open super series <context>: CREATE TABLE table_14496232_2 (womens_singles VARCHAR, tour VARCHAR)
SELECT womens_singles FROM table_14496232_2 WHERE tour = "Korea Open Super Series"
30,164
<question>: Name the tour when mens singles is chen jin and womens doubles is zhang yawen zhao tingting <context>: CREATE TABLE table_14496232_2 (tour VARCHAR, mens_singles VARCHAR, womens_doubles VARCHAR)
SELECT tour FROM table_14496232_2 WHERE mens_singles = "Chen Jin" AND womens_doubles = "Zhang Yawen Zhao Tingting"
30,165
<question>: Name the womens doubles when tour is malaysia super series <context>: CREATE TABLE table_14496232_2 (womens_doubles VARCHAR, tour VARCHAR)
SELECT womens_doubles FROM table_14496232_2 WHERE tour = "Malaysia Super Series"
30,166
<question>: Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen <context>: CREATE TABLE table_14496232_2 (mens_singles VARCHAR, womens_singles VARCHAR, mixed_doubles VARCHAR)
SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = "Wang Lin" AND mixed_doubles = "Joachim Fischer Nielsen Christinna Pedersen"
30,167
<question>: Name the mixed doubles when tour is hong kong super series <context>: CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, tour VARCHAR)
SELECT mixed_doubles FROM table_14496232_2 WHERE tour = "Hong Kong Super Series"
30,168
<question>: Name the mixed doubles for zhu lin <context>: CREATE TABLE table_14496232_2 (mixed_doubles VARCHAR, womens_singles VARCHAR)
SELECT mixed_doubles FROM table_14496232_2 WHERE womens_singles = "Zhu Lin"
30,169
<question>: Name the week for kingdome <context>: CREATE TABLE table_14520977_1 (week VARCHAR, location VARCHAR)
SELECT week FROM table_14520977_1 WHERE location = "Kingdome"
30,170
<question>: Name the date when result is l 13–10 ot <context>: CREATE TABLE table_14520977_1 (date VARCHAR, result VARCHAR)
SELECT date FROM table_14520977_1 WHERE result = "L 13–10 OT"
30,171
<question>: Name the record for l 24–22 <context>: CREATE TABLE table_14520977_1 (record VARCHAR, result VARCHAR)
SELECT record FROM table_14520977_1 WHERE result = "L 24–22"
30,172
<question>: Which Country is the show aired on Fox? <context>: CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR)
SELECT country FROM table_14523485_9 WHERE channel = "Fox"
30,173
<question>: Where is the show aired in New Zealand? <context>: CREATE TABLE table_14523485_9 (channel VARCHAR, country VARCHAR)
SELECT channel FROM table_14523485_9 WHERE country = "New Zealand"
30,174
<question>: What channel had the prize of €100,000? <context>: CREATE TABLE table_14523485_9 (channel VARCHAR, top_prize VARCHAR)
SELECT channel FROM table_14523485_9 WHERE top_prize = "€100,000"
30,175
<question>: How many hosts were on Seven Network? <context>: CREATE TABLE table_14523485_9 (host VARCHAR, channel VARCHAR)
SELECT COUNT(host) FROM table_14523485_9 WHERE channel = "Seven Network"
30,176
<question>: What country is the show aired on TVNZ? <context>: CREATE TABLE table_14523485_9 (country VARCHAR, channel VARCHAR)
SELECT country FROM table_14523485_9 WHERE channel = "TVNZ"
30,177
<question>: What is the capital of Umbria? <context>: CREATE TABLE table_14532_1 (capital VARCHAR, region VARCHAR)
SELECT capital FROM table_14532_1 WHERE region = "Umbria"
30,178
<question>: What is the region where Milan is located? <context>: CREATE TABLE table_14532_1 (region VARCHAR, capital VARCHAR)
SELECT region FROM table_14532_1 WHERE capital = "Milan"
30,179
<question>: What is the area of Tuscany? <context>: CREATE TABLE table_14532_1 (area__km²_ INTEGER, region VARCHAR)
SELECT MAX(area__km²_) FROM table_14532_1 WHERE region = "Tuscany"
30,180
<question>: Name the minimum for 2500-3000 ft for scotland <context>: CREATE TABLE table_1456056_1 (country VARCHAR)
SELECT MIN(2500 AS _3000ft) FROM table_1456056_1 WHERE country = "Scotland"
30,181
<question>: Name the most of 2500-3000ft <context>: CREATE TABLE table_1456056_1 (Id VARCHAR)
SELECT MAX(2500 AS _3000ft) FROM table_1456056_1
30,182
<question>: Name the minimum total for ireland <context>: CREATE TABLE table_1456056_1 (total INTEGER, country VARCHAR)
SELECT MIN(total) FROM table_1456056_1 WHERE country = "Ireland"
30,183
<question>: Who directed all the episodes that were written by aaron ehasz & john o'bryan? <context>: CREATE TABLE table_14562722_1 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_14562722_1 WHERE written_by = "Aaron Ehasz & John O'Bryan"
30,184
<question>: What was the production code of the episode that was written by michael dante dimartino and directed by lauren macmullan? <context>: CREATE TABLE table_14562722_1 (production_code VARCHAR, written_by VARCHAR, directed_by VARCHAR)
SELECT production_code FROM table_14562722_1 WHERE written_by = "Michael Dante DiMartino" AND directed_by = "Lauren MacMullan"
30,185
<question>: What was the airdate of the episode that was directed by giancarlo volpe and written by is john o'bryan? <context>: CREATE TABLE table_14562722_1 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_14562722_1 WHERE directed_by = "Giancarlo Volpe" AND written_by = "John O'Bryan"
30,186
<question>: Which situation has an original u.s. airdate of December 5, 2007? <context>: CREATE TABLE table_14570857_1 (situation VARCHAR, original_us_airdate VARCHAR)
SELECT situation FROM table_14570857_1 WHERE original_us_airdate = "December 5, 2007"
30,187
<question>: Name the circuit for gt3 alex mortimer bradley ellis <context>: CREATE TABLE table_14574130_3 (circuit VARCHAR, gt3_winner VARCHAR)
SELECT circuit FROM table_14574130_3 WHERE gt3_winner = "Alex Mortimer Bradley Ellis"
30,188
<question>: Name the episodes when region 1 is september 19, 2006 <context>: CREATE TABLE table_14562722_2 (episodes VARCHAR, region_1 VARCHAR)
SELECT episodes FROM table_14562722_2 WHERE region_1 = "September 19, 2006"
30,189
<question>: Name the maximum discs <context>: CREATE TABLE table_14562722_2 (discs INTEGER)
SELECT MAX(discs) FROM table_14562722_2
30,190
<question>: Name the most epiosdes when region 4 is march 13, 2008 <context>: CREATE TABLE table_14562722_2 (episodes INTEGER, region_4 VARCHAR)
SELECT MAX(episodes) FROM table_14562722_2 WHERE region_4 = "March 13, 2008"
30,191
<question>: what's the individual winners with nation being australia <context>: CREATE TABLE table_1458666_4 (individual_winners VARCHAR, nation VARCHAR)
SELECT individual_winners FROM table_1458666_4 WHERE nation = "Australia"
30,192
<question>: what is the value for minimum total wins <context>: CREATE TABLE table_1458666_4 (total_wins INTEGER)
SELECT MIN(total_wins) FROM table_1458666_4
30,193
<question>: What is the total amount o teams where winnings is $1,752,299? <context>: CREATE TABLE table_1458412_1 (team_s_ VARCHAR, winnings VARCHAR)
SELECT COUNT(team_s_) FROM table_1458412_1 WHERE winnings = "$1,752,299"
30,194
<question>: What is the avg start that starts at 30? <context>: CREATE TABLE table_1458412_1 (avg_start VARCHAR, starts VARCHAR)
SELECT avg_start FROM table_1458412_1 WHERE starts = 30
30,195
<question>: What is the totl amount of years where avg start is 27.3? <context>: CREATE TABLE table_1458412_1 (year VARCHAR, avg_start VARCHAR)
SELECT COUNT(year) FROM table_1458412_1 WHERE avg_start = "27.3"
30,196
<question>: What coach had 15 wins? <context>: CREATE TABLE table_14594528_6 (name__alma_mater_ VARCHAR, wins VARCHAR)
SELECT name__alma_mater_ FROM table_14594528_6 WHERE wins = 15
30,197
<question>: How many losses for the coach that coached 19 games? <context>: CREATE TABLE table_14594528_6 (losses VARCHAR, games VARCHAR)
SELECT losses FROM table_14594528_6 WHERE games = 19
30,198
<question>: Name the number of class aa for bridgeport and 1999-2000 <context>: CREATE TABLE table_14601528_2 (class_aA VARCHAR, class_aAA VARCHAR, Bridgeport VARCHAR, school_year VARCHAR)
SELECT COUNT(class_aA) FROM table_14601528_2 WHERE class_aAA = Bridgeport AND school_year = "1999-2000"
30,199
<question>: Name the class aa for 1998-99 <context>: CREATE TABLE table_14601528_2 (class_aA VARCHAR, school_year VARCHAR)
SELECT class_aA FROM table_14601528_2 WHERE school_year = "1998-99"