combined_text
stringlengths
106
1.05k
###question:When is the original air date written by sean whitesell?###answer:SELECT original_air_date FROM table_22904752_1 WHERE written_by = "Sean Whitesell"###context:CREATE TABLE table_22904752_1 (original_air_date VARCHAR, written_by VARCHAR)
###question:Who is no. 79 directed by?###answer:SELECT directed_by FROM table_22904752_1 WHERE no = 79###context:CREATE TABLE table_22904752_1 (directed_by VARCHAR, no VARCHAR)
###question:What is the # when u.s. viewers (million) is 17.44?###answer:SELECT COUNT(_number) FROM table_22904752_1 WHERE us_viewers__million_ = "17.44"###context:CREATE TABLE table_22904752_1 (_number VARCHAR, us_viewers__million_ VARCHAR)
###question:How many # were written by david hoselton?###answer:SELECT MAX(_number) FROM table_22904752_1 WHERE written_by = "David Hoselton"###context:CREATE TABLE table_22904752_1 (_number INTEGER, written_by VARCHAR)
###question:How many race 3 winners were there when Mitch Evans won race 2?###answer:SELECT COUNT(race_3_winner) FROM table_22905641_2 WHERE race_2_winner = "Mitch Evans"###context:CREATE TABLE table_22905641_2 (race_3_winner VARCHAR, race_2_winner VARCHAR)
###question:What date was the race at the Symmons Plains Raceway?###answer:SELECT date FROM table_22905641_2 WHERE circuit = "Symmons Plains Raceway"###context:CREATE TABLE table_22905641_2 (date VARCHAR, circuit VARCHAR)
###question:Who was the race 1 winner at the race held at Winton Motor Raceway?###answer:SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Winton Motor Raceway"###context:CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)
###question:Who was the race 1 winner of the race at Hidden Valley Raceway?###answer:SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Hidden Valley Raceway"###context:CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)
###question:In how many years did Pat Bradley became the champion?###answer:SELECT COUNT(year) FROM table_229059_2 WHERE champion = "Pat Bradley"###context:CREATE TABLE table_229059_2 (year VARCHAR, champion VARCHAR)
###question:When was the tournament in Forest Lake Country Club held?###answer:SELECT dates FROM table_229059_2 WHERE tournament_location = "Forest Lake country Club"###context:CREATE TABLE table_229059_2 (dates VARCHAR, tournament_location VARCHAR)
###question:How many different countries did the champion Se Ri Pak (2) represent?###answer:SELECT COUNT(country) FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"###context:CREATE TABLE table_229059_2 (country VARCHAR, champion VARCHAR)
###question:What was the score in 1978?###answer:SELECT score FROM table_229059_2 WHERE year = 1978###context:CREATE TABLE table_229059_2 (score VARCHAR, year VARCHAR)
###question:What was the winner share (in $) in the year when Se Ri Pak (2) was the champion?###answer:SELECT MIN(winners_share__) AS $_ FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"###context:CREATE TABLE table_229059_2 (winners_share__ INTEGER, champion VARCHAR)
###question:What was the score in the tournament won by Jan Stephenson?###answer:SELECT score FROM table_229059_2 WHERE champion = "Jan Stephenson"###context:CREATE TABLE table_229059_2 (score VARCHAR, champion VARCHAR)
###question:How many points did the opponents score at the game in Knoxville?###answer:SELECT MIN(opp_points) FROM table_22903773_2 WHERE location = "Knoxville"###context:CREATE TABLE table_22903773_2 (opp_points INTEGER, location VARCHAR)
###question:What game date had a record of 17-7?###answer:SELECT date FROM table_22903773_2 WHERE record = "17-7"###context:CREATE TABLE table_22903773_2 (date VARCHAR, record VARCHAR)
###question:How many points did the opponents score on the game where Sooners' record was 16-5?###answer:SELECT MAX(opp_points) FROM table_22903773_2 WHERE record = "16-5"###context:CREATE TABLE table_22903773_2 (opp_points INTEGER, record VARCHAR)
###question:List the number of shows that had 12.04 million viewers in the united states###answer:SELECT COUNT(title) FROM table_22904780_1 WHERE us_viewers__million_ = "12.04"###context:CREATE TABLE table_22904780_1 (title VARCHAR, us_viewers__million_ VARCHAR)
###question:List the original air date for week 5.###answer:SELECT original_air_date FROM table_22904780_1 WHERE rank__week_ = 5###context:CREATE TABLE table_22904780_1 (original_air_date VARCHAR, rank__week_ VARCHAR)
###question:List the 1st air date for the show where the writers are russel friend & garrett lerner.###answer:SELECT original_air_date FROM table_22904780_1 WHERE written_by = "Russel Friend & Garrett Lerner"###context:CREATE TABLE table_22904780_1 (original_air_date VARCHAR, written_by VARCHAR)
###question:When shinya nakano's kawasaki ninja zx-rr is the example what is the graphical?###answer:SELECT graphical FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"###context:CREATE TABLE table_22915134_2 (graphical VARCHAR, example VARCHAR)
###question:When 1985-2007 yamaha v-max honda vfr800 is the example what is the engine is it?###answer:SELECT engine FROM table_22915134_2 WHERE example = "1985-2007 Yamaha V-Max Honda VFR800"###context:CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR)
###question:When shinya nakano's kawasaki ninja zx-rr is the example what is the engine type?###answer:SELECT engine FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"###context:CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR)
###question:When 68-292-68-292 is the ignition timing how many graphicals is it?###answer:SELECT COUNT(graphical) FROM table_22915134_2 WHERE ignition_timing = "68-292-68-292"###context:CREATE TABLE table_22915134_2 (graphical VARCHAR, ignition_timing VARCHAR)
###question:When i4 is the engine what is the graphical?###answer:SELECT graphical FROM table_22915134_2 WHERE engine = "I4"###context:CREATE TABLE table_22915134_2 (graphical VARCHAR, engine VARCHAR)
###question:When 1-1-0-0-1-1-0-0- is the graphical how many ignition timings are there?###answer:SELECT COUNT(ignition_timing) FROM table_22915134_2 WHERE graphical = "1-1-0-0-1-1-0-0-"###context:CREATE TABLE table_22915134_2 (ignition_timing VARCHAR, graphical VARCHAR)
###question:If the total is 6, what is the maximum R?###answer:SELECT MAX(r) FROM table WHERE total = 6###context:CREATE TABLE table (r INTEGER, total VARCHAR)
###question:If the player is Marcelo, what is the minimum R?###answer:SELECT MIN(r) FROM table WHERE player = Marcelo###context:CREATE TABLE table (r INTEGER, player VARCHAR, Marcelo VARCHAR)
###question:If the player is Marcelo, what is the position?###answer:SELECT position FROM table WHERE player = Marcelo###context:CREATE TABLE table (position VARCHAR, player VARCHAR, Marcelo VARCHAR)
###question:If the position is AM and the league is larger than 7.0, what is the total R number?###answer:SELECT COUNT(r) FROM table WHERE position = AM AND league > 7.0###context:CREATE TABLE table (r VARCHAR, position VARCHAR, AM VARCHAR, league VARCHAR)
###question:Who was the Stage 1 winner?###answer:SELECT winner FROM table_22917458_15 WHERE stage = 1###context:CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)
###question:Who won Stage 7?###answer:SELECT winner FROM table_22917458_15 WHERE stage = 7###context:CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)
###question:Who was the mountain classification winner in the stage won by Alessandro Ballan?###answer:SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = "Alessandro Ballan"###context:CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARC...
###question:For the city whose land area was 135.09, what was the total population density?###answer:SELECT population_density__people_per_mi_2__ FROM table_22916979_1 WHERE land_area__mi_2__ = "135.09"###context:CREATE TABLE table_22916979_1 (population_density__people_per_mi_2__ VARCHAR, land_area__mi_2__ VARCHAR)
###question:Which major metropolitan area had a land area of 23.80?###answer:SELECT metropolitan_area FROM table_22916979_1 WHERE land_area__mi_2__ = "23.80"###context:CREATE TABLE table_22916979_1 (metropolitan_area VARCHAR, land_area__mi_2__ VARCHAR)
###question:How many states had a population density of 10188.8?###answer:SELECT COUNT(state) FROM table_22916979_1 WHERE population_density__people_per_mi_2__ = "10188.8"###context:CREATE TABLE table_22916979_1 (state VARCHAR, population_density__people_per_mi_2__ VARCHAR)
###question:Name the number of left for cardinals###answer:SELECT COUNT(left) FROM table_2293402_2 WHERE nickname = "Cardinals"###context:CREATE TABLE table_2293402_2 (left VARCHAR, nickname VARCHAR)
###question:Name the school that is private###answer:SELECT institution FROM table_2293402_2 WHERE type = "Private"###context:CREATE TABLE table_2293402_2 (institution VARCHAR, type VARCHAR)
###question:Name the location that was founded 1798###answer:SELECT location FROM table_2293402_2 WHERE founded = 1798###context:CREATE TABLE table_2293402_2 (location VARCHAR, founded VARCHAR)
###question:Name the nickname that was founded 1798###answer:SELECT nickname FROM table_2293402_2 WHERE founded = 1798###context:CREATE TABLE table_2293402_2 (nickname VARCHAR, founded VARCHAR)
###question:Name the least 10,000+ places for louisville###answer:SELECT MIN(10), 000 + _places FROM table_22916979_5 WHERE principal_city = "Louisville"###context:CREATE TABLE table_22916979_5 (_places VARCHAR, principal_city VARCHAR)
###question:Name the density for pennsbury village###answer:SELECT density FROM table_22916979_5 WHERE densest_incorporated_place = "Pennsbury Village"###context:CREATE TABLE table_22916979_5 (density VARCHAR, densest_incorporated_place VARCHAR)
###question:Name the number of rank for stone park###answer:SELECT COUNT(rank) FROM table_22916979_5 WHERE densest_incorporated_place = "Stone Park"###context:CREATE TABLE table_22916979_5 (rank VARCHAR, densest_incorporated_place VARCHAR)
###question:Name the area for north bay village###answer:SELECT metropolitan_area FROM table_22916979_5 WHERE densest_incorporated_place = "North Bay Village"###context:CREATE TABLE table_22916979_5 (metropolitan_area VARCHAR, densest_incorporated_place VARCHAR)
###question:Where is the PPP 23164 million €?###answer:SELECT region___nuts_2006_ FROM table_2293510_1 WHERE ppp__million_€_ = 23164###context:CREATE TABLE table_2293510_1 (region___nuts_2006_ VARCHAR, ppp__million_€_ VARCHAR)
###question:What's the total (in million €) in the region where PPP is 21779 million €?###answer:SELECT total__million_€__ FROM table_2293510_1 WHERE ppp__million_€_ = 21779###context:CREATE TABLE table_2293510_1 (total__million_€__ VARCHAR, ppp__million_€_ VARCHAR)
###question:What's the percentage of EU average GDP (PPP) in the region where € per capita is 2519###answer:SELECT _percentage_of_eu_average_gdp__ppp_ FROM table_2293510_1 WHERE €_per_capita__2005_ = 2519###context:CREATE TABLE table_2293510_1 (_percentage_of_eu_average_gdp__ppp_ VARCHAR, €_per_capita__2005_ VARCHAR)
###question:If the winner is Bernhard Eisel, what is the stage maximum?###answer:SELECT MAX(stage) FROM table_22941863_19 WHERE winner = "Bernhard Eisel"###context:CREATE TABLE table_22941863_19 (stage INTEGER, winner VARCHAR)
###question:What is the mountain classification name if the winner is Bernhard Eisel?###answer:SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Bernhard Eisel"###context:CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)
###question:If the stage is 3, what is the points classification name?###answer:SELECT points_classification FROM table_22941863_19 WHERE stage = 3###context:CREATE TABLE table_22941863_19 (points_classification VARCHAR, stage VARCHAR)
###question:If the stage is 9, what is the team classification name?###answer:SELECT team_classification FROM table_22941863_19 WHERE stage = 9###context:CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR)
###question:If the winner is Michael Albasini, what is the mountains classification name?###answer:SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Michael Albasini"###context:CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)
###question:What is the name of the winner when the sprints classification is no award?###answer:SELECT winner FROM table_22941863_19 WHERE sprints_classification = "no award"###context:CREATE TABLE table_22941863_19 (winner VARCHAR, sprints_classification VARCHAR)
###question:How many viewers (in millions) watched the episode written by deidre shaw?###answer:SELECT us_viewers__in_millions_ FROM table_22951088_3 WHERE written_by = "Deidre Shaw"###context:CREATE TABLE table_22951088_3 (us_viewers__in_millions_ VARCHAR, written_by VARCHAR)
###question:What was the original air date of episode number 1?###answer:SELECT original_air_date FROM table_22951088_3 WHERE no = 1###context:CREATE TABLE table_22951088_3 (original_air_date VARCHAR, no VARCHAR)
###question:Who was the bowler when the batsmen was dwaraka ravi teja rp singh pragyan ojha?###answer:SELECT bowler FROM table_22962745_35 WHERE batsmen = "Dwaraka Ravi Teja RP Singh Pragyan Ojha"###context:CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR)
###question:How many bowlers were there when david hussey azhar mahmood gurkeerat singh was the batsmen?###answer:SELECT COUNT(bowler) FROM table_22962745_35 WHERE batsmen = "David Hussey Azhar Mahmood Gurkeerat Singh"###context:CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR)
###question:What season was herschelle gibbs andrew symonds venugopal rao batsmen?###answer:SELECT season FROM table_22962745_35 WHERE batsmen = "Herschelle Gibbs Andrew Symonds Venugopal Rao"###context:CREATE TABLE table_22962745_35 (season VARCHAR, batsmen VARCHAR)
###question:What was the scorecard when robin uthappa mark boucher jacques kallis was the batsmen?###answer:SELECT scorecard FROM table_22962745_35 WHERE batsmen = "Robin Uthappa Mark Boucher Jacques Kallis"###context:CREATE TABLE table_22962745_35 (scorecard VARCHAR, batsmen VARCHAR)
###question:What is the number when against is rajasthan royals?###answer:SELECT MAX(no) FROM table_22962745_35 WHERE against = "Rajasthan Royals"###context:CREATE TABLE table_22962745_35 (no INTEGER, against VARCHAR)
###question:Name number of stellar classification for 3 neptune planets < 1 au###answer:SELECT COUNT(stellar_classification) FROM table_2296507_1 WHERE system = "3 Neptune planets < 1 AU"###context:CREATE TABLE table_2296507_1 (stellar_classification VARCHAR, system VARCHAR)
###question:Name the system for aries###answer:SELECT system FROM table_2296507_1 WHERE constellation = "Aries"###context:CREATE TABLE table_2296507_1 (system VARCHAR, constellation VARCHAR)
###question:Name the stellar age for f3v###answer:SELECT stellar_age__myr_ FROM table_2296507_1 WHERE stellar_classification = "F3V"###context:CREATE TABLE table_2296507_1 (stellar_age__myr_ VARCHAR, stellar_classification VARCHAR)
###question:Name the dust for star being hd 69830###answer:SELECT dust__or_debris__location__au_ FROM table_2296507_1 WHERE star = "HD 69830"###context:CREATE TABLE table_2296507_1 (dust__or_debris__location__au_ VARCHAR, star VARCHAR)
###question:Name the number of names for exeter chiefs###answer:SELECT COUNT(name) FROM table_22977424_8 WHERE promoted_from_league = "Exeter Chiefs"###context:CREATE TABLE table_22977424_8 (name VARCHAR, promoted_from_league VARCHAR)
###question:Name the name for henley manchester###answer:SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Henley Manchester"###context:CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)
###question:Name the name for doncaster newbury###answer:SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Doncaster Newbury"###context:CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)
###question:Name the season for rotherham titans###answer:SELECT season FROM table_22977424_8 WHERE promoted_from_league = "Rotherham Titans"###context:CREATE TABLE table_22977424_8 (season VARCHAR, promoted_from_league VARCHAR)
###question:Name the name for plymouth albion orrell###answer:SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Plymouth Albion Orrell"###context:CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)
###question:What's the tail number of the airplane involved in the accident described as crashed?###answer:SELECT tail_number FROM table_229917_2 WHERE brief_description = "Crashed"###context:CREATE TABLE table_229917_2 (tail_number VARCHAR, brief_description VARCHAR)
###question:How many different brief descriptions are there for crashes with 0/161 fatalities?###answer:SELECT COUNT(brief_description) FROM table_229917_2 WHERE fatalities = "0/161"###context:CREATE TABLE table_229917_2 (brief_description VARCHAR, fatalities VARCHAR)
###question:When did the airplane with tail number RA-85282 crash?###answer:SELECT date__ddmmyyyy_ FROM table_229917_2 WHERE tail_number = "RA-85282"###context:CREATE TABLE table_229917_2 (date__ddmmyyyy_ VARCHAR, tail_number VARCHAR)
###question:How many fatalities were there in the crash described as ditched 300 m short of runway?###answer:SELECT fatalities FROM table_229917_2 WHERE brief_description = "Ditched 300 m short of runway"###context:CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR)
###question:How many fatalities were there in the crash described as crashed at take-off due to engine failure?###answer:SELECT fatalities FROM table_229917_2 WHERE brief_description = "Crashed at take-off due to engine failure"###context:CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR)
###question:What class year was Vencie Glenn from? ###answer:SELECT MIN(class_year) FROM table_22982552_9 WHERE player = "Vencie Glenn"###context:CREATE TABLE table_22982552_9 (class_year INTEGER, player VARCHAR)
###question:What position did the player whose highlights were 5 career INTs play?###answer:SELECT position FROM table_22982552_9 WHERE highlight_s_ = "5 career INTs"###context:CREATE TABLE table_22982552_9 (position VARCHAR, highlight_s_ VARCHAR)
###question:What class year was the player whose highlights were 35 career INTs from?###answer:SELECT MIN(class_year) FROM table_22982552_9 WHERE highlight_s_ = "35 career INTs"###context:CREATE TABLE table_22982552_9 (class_year INTEGER, highlight_s_ VARCHAR)
###question:What class year was the player who played for Buffalo from? ###answer:SELECT MIN(class_year) FROM table_22982552_9 WHERE teams = "Buffalo"###context:CREATE TABLE table_22982552_9 (class_year INTEGER, teams VARCHAR)
###question:Name the gore number for others # 6.6%###answer:SELECT MIN(gore__number) FROM table_23014476_1 WHERE others__number = "6.6%"###context:CREATE TABLE table_23014476_1 (gore__number INTEGER, others__number VARCHAR)
###question:Name the others % for bush number 1372###answer:SELECT others__percentage FROM table_23014476_1 WHERE bush__number = 1372###context:CREATE TABLE table_23014476_1 (others__percentage VARCHAR, bush__number VARCHAR)
###question:Name the gore number for others % being 5.3%###answer:SELECT gore__number FROM table_23014476_1 WHERE others__percentage = "5.3%"###context:CREATE TABLE table_23014476_1 (gore__number VARCHAR, others__percentage VARCHAR)
###question:Name the couty for others% 5.8###answer:SELECT county FROM table_23014476_1 WHERE others__percentage = "5.8"###context:CREATE TABLE table_23014476_1 (county VARCHAR, others__percentage VARCHAR)
###question:Name the number of bush % for elko###answer:SELECT COUNT(bush__percentage) FROM table_23014476_1 WHERE county = "Elko"###context:CREATE TABLE table_23014476_1 (bush__percentage VARCHAR, county VARCHAR)
###question:If the series is ADAC GT Masters and poles is 1, what is the name of the team?###answer:SELECT team FROM table_22998777_1 WHERE poles = 1 AND series = "ADAC GT Masters"###context:CREATE TABLE table_22998777_1 (team VARCHAR, poles VARCHAR, series VARCHAR)
###question:If the position of 26th what is the season total number?###answer:SELECT COUNT(season) FROM table_22998777_1 WHERE position = "26th"###context:CREATE TABLE table_22998777_1 (season VARCHAR, position VARCHAR)
###question:If the points is 41, what is the season?###answer:SELECT season FROM table_22998777_1 WHERE points = "41"###context:CREATE TABLE table_22998777_1 (season VARCHAR, points VARCHAR)
###question:If the primary (South) winners is Inter The Bloomfield, what is the season total number?###answer:SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = "Inter The Bloomfield"###context:CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR)
###question:What is the season total number if the primary (South) winners is Ridings High 'A'?###answer:SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = "Ridings High 'A'"###context:CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR)
###question:What is the year of the season if the intermediate (South) winners is Southmead Athletic?###answer:SELECT season FROM table_23014923_1 WHERE intermediate__south__winners = "Southmead Athletic"###context:CREATE TABLE table_23014923_1 (season VARCHAR, intermediate__south__winners VARCHAR)
###question:What is the season date if the minor (South) winners is Bristol Sanctuary XI?###answer:SELECT season FROM table_23014923_1 WHERE minor__south__winners = "Bristol Sanctuary XI"###context:CREATE TABLE table_23014923_1 (season VARCHAR, minor__south__winners VARCHAR)
###question:What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate?###answer:SELECT COUNT(minor__south__winners) FROM table_23014923_1 WHERE primary__south__winners = "Mendip Gate"###context:CREATE TABLE table_23014923_1 (minor__south__winners VARCHAR, primary__south__winners VARCHA...
###question:What area was damaged when King Khalid Military City was targeted?###answer:SELECT area_damaged FROM table_23014685_1 WHERE target = "King Khalid Military City"###context:CREATE TABLE table_23014685_1 (area_damaged VARCHAR, target VARCHAR)
###question:What was the place and date that the Apartments area was damaged?###answer:SELECT place_ & _date FROM table_23014685_1 WHERE area_damaged = "Apartments area"###context:CREATE TABLE table_23014685_1 (place_ VARCHAR, _date VARCHAR, area_damaged VARCHAR)
###question:Was the missile intercepted by patriot when the parking lot was damaged?###answer:SELECT intercepted_by_patriot FROM table_23014685_1 WHERE area_damaged = "Parking lot"###context:CREATE TABLE table_23014685_1 (intercepted_by_patriot VARCHAR, area_damaged VARCHAR)
###question:What number missile led to damage to the Islamic University campus?###answer:SELECT MIN(no) FROM table_23014685_1 WHERE area_damaged = "Islamic University campus"###context:CREATE TABLE table_23014685_1 (no INTEGER, area_damaged VARCHAR)
###question:Name the number of year for mark martin###answer:SELECT COUNT(year) FROM table_23015396_1 WHERE driver = "Mark Martin"###context:CREATE TABLE table_23015396_1 (year VARCHAR, driver VARCHAR)
###question:Name the number of year for june 30###answer:SELECT COUNT(year) FROM table_23015396_1 WHERE date = "June 30"###context:CREATE TABLE table_23015396_1 (year VARCHAR, date VARCHAR)
###question:What is the model number for part numbers of cm80616003177acbx80616i5660?###answer:SELECT model_number FROM table_23028629_2 WHERE part_number_s_ = "CM80616003177ACBX80616I5660"###context:CREATE TABLE table_23028629_2 (model_number VARCHAR, part_number_s_ VARCHAR)
###question:What is every release price(USD) for model number core i5-650?###answer:SELECT release_price___usd__ FROM table_23028629_2 WHERE model_number = "Core i5-650"###context:CREATE TABLE table_23028629_2 (release_price___usd__ VARCHAR, model_number VARCHAR)
###question:How many frequencies have a model number of core i5-655k?###answer:SELECT COUNT(frequency) FROM table_23028629_2 WHERE model_number = "Core i5-655K"###context:CREATE TABLE table_23028629_2 (frequency VARCHAR, model_number VARCHAR)