answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT original_air_date FROM table_28081876_6 WHERE us_viewers__millions_ = "1.57" | CREATE TABLE table_28081876_6 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | When was originally aired the episode with an audience of 1.57 million us viewers? |
SELECT season_no FROM table_28081876_6 WHERE production_code = 401 | CREATE TABLE table_28081876_6 (season_no VARCHAR, production_code VARCHAR) | What season number was assigned to the episode identified with the production code 401? |
SELECT MAX(total) FROM table_28068645_8 WHERE position = "DF" | CREATE TABLE table_28068645_8 (total INTEGER, position VARCHAR) | List the number of assists for the DF. |
SELECT MIN(super_league) FROM table_28068645_8 WHERE champions_league = 0 | CREATE TABLE table_28068645_8 (super_league INTEGER, champions_league VARCHAR) | List the lowest super league for a 0 champion league. |
SELECT MIN(total) FROM table_28068645_8 | CREATE TABLE table_28068645_8 (total INTEGER) | What is the minimum sum? |
SELECT intermediate_sprints_classification_klasyfikacja_najaktywniejszych FROM table_28092844_16 WHERE winner = "Daniel Martin" | CREATE TABLE table_28092844_16 (intermediate_sprints_classification_klasyfikacja_najaktywniejszych VARCHAR, winner VARCHAR) | What was the intermediate sprint classification for the race whose winner was Daniel Martin? |
SELECT teams_classification FROM table_28092844_16 WHERE general_classification_żółta_koszulka = "Allan Davis" | CREATE TABLE table_28092844_16 (teams_classification VARCHAR, general_classification_żółta_koszulka VARCHAR) | Which teams classification winners had a general classification winner of Allan Davis? |
SELECT points_classification_klasyfikacja_punktowa FROM table_28092844_16 WHERE teams_classification = "Lampre-Farnese" | CREATE TABLE table_28092844_16 (points_classification_klasyfikacja_punktowa VARCHAR, teams_classification VARCHAR) | Who won the points classification when the teams classification winner was Lampre-Farnese? |
SELECT english_word FROM table_28136_15 WHERE ukrainian = "Дякую (diakuju)" | CREATE TABLE table_28136_15 (english_word VARCHAR, ukrainian VARCHAR) | How do you say the ukrainian word дякую (diakuju) in English? |
SELECT COUNT(rusyn) FROM table_28136_15 WHERE bulgarian = "купува (kupuva)" | CREATE TABLE table_28136_15 (rusyn VARCHAR, bulgarian VARCHAR) | How many words are there in rusyn for the bulgarian word купува (kupuva)? |
SELECT new_adherents_per_year FROM table_28137918_5 WHERE religion = "Buddhism" | CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR) | Name the new adherents per year for buddhism |
SELECT COUNT(new_adherents_per_year) FROM table_28137918_5 WHERE religion = "Confucianism" | CREATE TABLE table_28137918_5 (new_adherents_per_year VARCHAR, religion VARCHAR) | Name the number of new adherents per year for confucianism |
SELECT MIN(births) FROM table_28137918_5 WHERE conversions = "26,333" | CREATE TABLE table_28137918_5 (births INTEGER, conversions VARCHAR) | Name the least births for conversion being 26,333 |
SELECT MIN(new_adherents_per_year) FROM table_28137918_5 | CREATE TABLE table_28137918_5 (new_adherents_per_year INTEGER) | Name the least amount of new adherents per year |
SELECT religion FROM table_28137918_5 WHERE growth_rate = "1.56%" | CREATE TABLE table_28137918_5 (religion VARCHAR, growth_rate VARCHAR) | Name the religion that has a growth rate of 1.56% |
SELECT length FROM table_28132970_5 WHERE propulsion = "Controllable pitch propeller" | CREATE TABLE table_28132970_5 (length VARCHAR, propulsion VARCHAR) | What is the length when the propulsion is controllable pitch propeller? |
SELECT max_speed FROM table_28132970_5 WHERE vessel = "Gallion" | CREATE TABLE table_28132970_5 (max_speed VARCHAR, vessel VARCHAR) | What is the max speed when the vessel is gallion? |
SELECT COUNT(breadth) FROM table_28132970_5 WHERE vessel = "Marianarray" | CREATE TABLE table_28132970_5 (breadth VARCHAR, vessel VARCHAR) | How many breadth entries are there when the vessel is marianarray? |
SELECT propulsion FROM table_28132970_5 WHERE vessel = "Marianarray" | CREATE TABLE table_28132970_5 (propulsion VARCHAR, vessel VARCHAR) | What is the propulsion when the vessel is marianarray? |
SELECT COUNT(breadth) FROM table_28132970_5 WHERE propulsion = "Jet" | CREATE TABLE table_28132970_5 (breadth VARCHAR, propulsion VARCHAR) | How many breadth entries are there when propulsion is jet? |
SELECT title FROM table_28116528_1 WHERE production_code = "3X6306" | CREATE TABLE table_28116528_1 (title VARCHAR, production_code VARCHAR) | What episode title had a production code of 3x6306? |
SELECT original_air_date FROM table_28116528_1 WHERE production_code = "3X6316" | CREATE TABLE table_28116528_1 (original_air_date VARCHAR, production_code VARCHAR) | What date did the episode with a production code of 3x6316 originally air? |
SELECT mens_doubles FROM table_28138035_26 WHERE womens_singles = "Wu Yang" | CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, womens_singles VARCHAR) | Who won the mens doubles when wu yang won the womens singles? |
SELECT year_location FROM table_28138035_26 WHERE womens_singles = "Fan Ying" | CREATE TABLE table_28138035_26 (year_location VARCHAR, womens_singles VARCHAR) | What year and where was the tournament when fan ying won the womens singles? |
SELECT mens_singles FROM table_28138035_26 WHERE womens_singles = "Lau Sui Fei" | CREATE TABLE table_28138035_26 (mens_singles VARCHAR, womens_singles VARCHAR) | Who won the mens singles when lau sui fei won the womens singles? |
SELECT mens_doubles FROM table_28138035_26 WHERE mens_singles = "Wang Hao" | CREATE TABLE table_28138035_26 (mens_doubles VARCHAR, mens_singles VARCHAR) | Who won the mens doubles when wang hao won the mens singles? |
SELECT mens_singles FROM table_28138035_13 WHERE womens_singles = "Yoshie Takada" | CREATE TABLE table_28138035_13 (mens_singles VARCHAR, womens_singles VARCHAR) | Who won in the men singles group in the year when Yoshie Takada won in the women singles? |
SELECT year_location FROM table_28138035_13 WHERE mens_singles = "Chen Qi" | CREATE TABLE table_28138035_13 (year_location VARCHAR, mens_singles VARCHAR) | When and where did Chen Qi win in men singles? |
SELECT mens_singles FROM table_28138035_27 WHERE womens_doubles = "Wang Nan Zhang Yining" | CREATE TABLE table_28138035_27 (mens_singles VARCHAR, womens_doubles VARCHAR) | Who is listed under mens singles when womens has wang nan zhang yining? |
SELECT COUNT(womens_singles) FROM table_28138035_27 WHERE womens_doubles = "Li Xiaodan Wen Jia" | CREATE TABLE table_28138035_27 (womens_singles VARCHAR, womens_doubles VARCHAR) | How many womens singles entries are there when womens doubles is li xiaodan wen jia? |
SELECT womens_singles FROM table_28138035_27 WHERE year_location = "1998 Doha" | CREATE TABLE table_28138035_27 (womens_singles VARCHAR, year_location VARCHAR) | Who is listed under womens singles when year location is 1998 doha? |
SELECT mens_singles FROM table_28138035_27 WHERE year_location = "2009 Doha" | CREATE TABLE table_28138035_27 (mens_singles VARCHAR, year_location VARCHAR) | Who is listed under mens singles when the year location is 2009 doha? |
SELECT COUNT(year_location) FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei" | CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR) | How many year locations are there for the womens doubles in jing junhong li jiawei? |
SELECT COUNT(mens_singles) FROM table_28138035_20 WHERE mens_doubles = "Chen Qi Ma Lin" | CREATE TABLE table_28138035_20 (mens_singles VARCHAR, mens_doubles VARCHAR) | How many players are there for mens singles when chen qi ma lin played mens doubles? |
SELECT mens_doubles FROM table_28138035_20 WHERE year_location = "1999 Kobe" | CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, year_location VARCHAR) | Who played mens doubles for the 1999 kobe tour? |
SELECT year_location FROM table_28138035_20 WHERE womens_doubles = "Jing Junhong Li Jiawei" | CREATE TABLE table_28138035_20 (year_location VARCHAR, womens_doubles VARCHAR) | Where was the tour when jing junhong li jiawei played womens doubles? |
SELECT COUNT(year_location) FROM table_28138035_20 WHERE mens_doubles = "Lin Gaoyuan Wu Jiaji" | CREATE TABLE table_28138035_20 (year_location VARCHAR, mens_doubles VARCHAR) | How many years did lin gaoyuan wu jiaji play mens doubles? |
SELECT COUNT(mens_doubles) FROM table_28138035_20 WHERE womens_singles = "Guo Yue" | CREATE TABLE table_28138035_20 (mens_doubles VARCHAR, womens_singles VARCHAR) | How many people are shown for mens doubles when guo yue played womens singles? |
SELECT womens_singles FROM table_28138035_35 WHERE mens_singles = "Jean-Michel Saive" | CREATE TABLE table_28138035_35 (womens_singles VARCHAR, mens_singles VARCHAR) | Who won the Womens Singles in the year the Jean-Michel Saive won the Mens Singles? |
SELECT year_location FROM table_28138035_35 WHERE mens_singles = "Liu Guozheng" | CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR) | In what year and location did Liu Guozheng win the Mens Singles? |
SELECT year_location FROM table_28138035_35 WHERE mens_singles = "Wang Liqin" | CREATE TABLE table_28138035_35 (year_location VARCHAR, mens_singles VARCHAR) | In what year and location did Wang Liqin win the Mens Singles? |
SELECT mens_doubles FROM table_28138035_6 WHERE year_location = "2006 Guangzhou" | CREATE TABLE table_28138035_6 (mens_doubles VARCHAR, year_location VARCHAR) | Who won the mens doubles at the 2006 guangzhou event? |
SELECT COUNT(mens_singles) FROM table_28138035_6 WHERE womens_doubles = "China" | CREATE TABLE table_28138035_6 (mens_singles VARCHAR, womens_doubles VARCHAR) | How many times was the womens doubles in china? |
SELECT COUNT(womens_doubles) FROM table_28138035_6 WHERE womens_singles = "Li Ju" AND mens_singles = "Wang Liqin" | CREATE TABLE table_28138035_6 (womens_doubles VARCHAR, womens_singles VARCHAR, mens_singles VARCHAR) | How many times did li ju win the womens singles and wang liqin win the mens singles? |
SELECT mens_singles FROM table_28138035_4 WHERE womens_doubles = "Lee Eun-Sil Moon Hyun-Jung" | CREATE TABLE table_28138035_4 (mens_singles VARCHAR, womens_doubles VARCHAR) | Name the mens singles for lee eun-sil moon hyun-jung |
SELECT COUNT(womens_doubles) FROM table_28138035_4 WHERE year_location = "2011 Rio de Janeiro" | CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, year_location VARCHAR) | Name the number of womens doubles for 2011 rio de janeiro |
SELECT year_location FROM table_28138035_4 WHERE womens_singles = "Haruna Fukuoka" | CREATE TABLE table_28138035_4 (year_location VARCHAR, womens_singles VARCHAR) | Name the year location for haruna fukuoka |
SELECT mens_doubles FROM table_28138035_4 WHERE mens_singles = "Dimitrij Ovtcharov" | CREATE TABLE table_28138035_4 (mens_doubles VARCHAR, mens_singles VARCHAR) | Name the mens doubles for dimitrij ovtcharov |
SELECT COUNT(womens_singles) FROM table_28138035_4 WHERE year_location = "1999 Rio de Janeiro" | CREATE TABLE table_28138035_4 (womens_singles VARCHAR, year_location VARCHAR) | Name the number of womens singles for 1999 rio de janeiro |
SELECT womens_doubles FROM table_28138035_4 WHERE mens_singles = "Werner Schlager" | CREATE TABLE table_28138035_4 (womens_doubles VARCHAR, mens_singles VARCHAR) | Name the womens doubles for werner schlager |
SELECT womens_doubles FROM table_28138035_32 WHERE womens_singles = "Ding Ning" | CREATE TABLE table_28138035_32 (womens_doubles VARCHAR, womens_singles VARCHAR) | Who was the womens double winner when the womens singles winner was Ding Ning? |
SELECT written_by FROM table_28140578_1 WHERE no_in_series = 19 | CREATE TABLE table_28140578_1 (written_by VARCHAR, no_in_series VARCHAR) | Who wrote episode number 19 in the series? |
SELECT marks FROM table_2814720_1 WHERE tackles = 3 | CREATE TABLE table_2814720_1 (marks VARCHAR, tackles VARCHAR) | How many marks are there when tackles are 3? |
SELECT goal_accuracy__percentage FROM table_2814720_1 WHERE total_disposals = 481 | CREATE TABLE table_2814720_1 (goal_accuracy__percentage VARCHAR, total_disposals VARCHAR) | What was the goal accuracy % when the total disposals are 481? |
SELECT original_air_date FROM table_28140590_1 WHERE production_code = 60072 | CREATE TABLE table_28140590_1 (original_air_date VARCHAR, production_code VARCHAR) | What date did the episode with a production code of 60072 originally air? |
SELECT title FROM table_28146944_2 WHERE no_in_series = 36 | CREATE TABLE table_28146944_2 (title VARCHAR, no_in_series VARCHAR) | What's the title of the episode with series number 36? |
SELECT date_of_appointment FROM table_28164986_4 WHERE manner_of_departure = "fired" AND team = "Niger Tornadoes" | CREATE TABLE table_28164986_4 (date_of_appointment VARCHAR, manner_of_departure VARCHAR, team VARCHAR) | when was the next coach appointed after niger tornadoes fired their coach? |
SELECT COUNT(outgoing_manager) FROM table_28164986_4 WHERE team = "Sunshine Stars" | CREATE TABLE table_28164986_4 (outgoing_manager VARCHAR, team VARCHAR) | how many managers left sunshine stars? |
SELECT COUNT(incoming_manager) FROM table_28164986_4 WHERE manner_of_departure = "Resigned" | CREATE TABLE table_28164986_4 (incoming_manager VARCHAR, manner_of_departure VARCHAR) | how many new managers replaced manager(s) who resigned? |
SELECT COUNT(date_of_vacancy) FROM table_28164986_4 WHERE outgoing_manager = "Tunde Abdulrahman" | CREATE TABLE table_28164986_4 (date_of_vacancy VARCHAR, outgoing_manager VARCHAR) | how many times did tunde abdulrahman leave the team? |
SELECT COUNT(platform) FROM table_28178595_2 WHERE mystic_arte = "Celsius Calibur" | CREATE TABLE table_28178595_2 (platform VARCHAR, mystic_arte VARCHAR) | How many platforms have celsius calibur as mystic arte? |
SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = "Hisui (Jadeite) Hearts 1" | CREATE TABLE table_28178595_2 (mystic_arte VARCHAR, character VARCHAR) | How many mystic arte have hisui (jadeite) hearts 1 as the character? |
SELECT COUNT(platform) FROM table_28178595_2 WHERE character = "Nanaly Fletch" | CREATE TABLE table_28178595_2 (platform VARCHAR, character VARCHAR) | How many platforms have nanaly fletch as the character? |
SELECT status FROM table_28178595_2 WHERE character = "Keel (Keele) Zeibel" | CREATE TABLE table_28178595_2 (status VARCHAR, character VARCHAR) | What is the status of the character keel (keele) zeibel? |
SELECT season FROM table_2817196_1 WHERE goals_against = 254 | CREATE TABLE table_2817196_1 (season VARCHAR, goals_against VARCHAR) | What sesaon(s) did they have 254 goals against? |
SELECT MAX(points) FROM table_2817196_1 | CREATE TABLE table_2817196_1 (points INTEGER) | What is the largest number of points in a season? |
SELECT late_middle_english FROM table_28177800_5 WHERE late_old_english__anglian_ = "æg, ǣg" | CREATE TABLE table_28177800_5 (late_middle_english VARCHAR, late_old_english__anglian_ VARCHAR) | What is the Late Middle English equivalent of the Anglian æg, ǣg? |
SELECT example FROM table_28177800_5 WHERE early_modern_english = "( [x] → /f/) /ɔf/" | CREATE TABLE table_28177800_5 (example VARCHAR, early_modern_english VARCHAR) | What is the example of the Early Modern English ( [x] → /f/) /ɔf/? |
SELECT miles__km_ FROM table_28178756_1 WHERE year = 2010 | CREATE TABLE table_28178756_1 (miles__km_ VARCHAR, year VARCHAR) | List the numer of miles for 2010. |
SELECT date FROM table_28178756_1 WHERE driver = "Tommy Ellis" | CREATE TABLE table_28178756_1 (date VARCHAR, driver VARCHAR) | On what day did tommy ellis drive? |
SELECT date FROM table_28178756_1 WHERE team = "Joe Gibbs Racing" AND race_time = "1:53:26" | CREATE TABLE table_28178756_1 (date VARCHAR, team VARCHAR, race_time VARCHAR) | On what day did joe gibbs racing record a time of 1:53:26? |
SELECT average_speed__mph_ FROM table_28178756_1 WHERE team = "FILMAR Racing" | CREATE TABLE table_28178756_1 (average_speed__mph_ VARCHAR, team VARCHAR) | What is the average speed for filmar racing? |
SELECT race_time FROM table_28178756_1 WHERE date = "May 11" | CREATE TABLE table_28178756_1 (race_time VARCHAR, date VARCHAR) | List the race time for may 11. |
SELECT COUNT(act) FROM table_28180840_15 WHERE name_name_of_act = "Modern Grannies" | CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR) | What is the total number of modern grannies performed? |
SELECT act FROM table_28180840_15 WHERE name_name_of_act = "Zhu Xiaoming" | CREATE TABLE table_28180840_15 (act VARCHAR, name_name_of_act VARCHAR) | What is the name of the performance zhu xiaoming performed? |
SELECT semifinal__week_ FROM table_28180840_15 WHERE age_s_ = "29" | CREATE TABLE table_28180840_15 (semifinal__week_ VARCHAR, age_s_ VARCHAR) | How many performers are 29 that made it to the semi finals? |
SELECT hometown FROM table_28180840_15 WHERE name_name_of_act = "Zhou Jinsong" | CREATE TABLE table_28180840_15 (hometown VARCHAR, name_name_of_act VARCHAR) | What is the name of the zhou jinsong's hometown? |
SELECT COUNT(production_code) FROM table_2818164_2 WHERE original_air_date = "October 18, 1984" | CREATE TABLE table_2818164_2 (production_code VARCHAR, original_air_date VARCHAR) | How many different production codes does the episode originally aired on October 18, 1984 have? |
SELECT title FROM table_2818164_2 WHERE production_code = 104 | CREATE TABLE table_2818164_2 (title VARCHAR, production_code VARCHAR) | What's the title of the episode with production code 104? |
SELECT COUNT(title) FROM table_2818164_2 WHERE original_air_date = "September 27, 1984" | CREATE TABLE table_2818164_2 (title VARCHAR, original_air_date VARCHAR) | How many different titles does the episode originally aired on September 27, 1984 have? |
SELECT MIN(production_code) FROM table_2818164_2 WHERE original_air_date = "February 21, 1985" | CREATE TABLE table_2818164_2 (production_code INTEGER, original_air_date VARCHAR) | What's the production code of the episode originally aired on February 21, 1985? |
SELECT round FROM table_28181401_4 WHERE scorers = "Roberts 86'" | CREATE TABLE table_28181401_4 (round VARCHAR, scorers VARCHAR) | when roberts 86' is the scorer what is the round? |
SELECT MAX(attendance) FROM table_28181401_4 WHERE round = "Semi Final (2nd leg)" | CREATE TABLE table_28181401_4 (attendance INTEGER, round VARCHAR) | When semi final (2nd leg) is the round what is the highest attendance? |
SELECT position_in_table FROM table_28181347_6 WHERE replaced_by = "Mark Stimson" | CREATE TABLE table_28181347_6 (position_in_table VARCHAR, replaced_by VARCHAR) | When Mark Stimson started his job in 2007-08 what posiiton was the team on the table |
SELECT replaced_by FROM table_28181347_6 WHERE date_of_vacancy = "8 October 2007" | CREATE TABLE table_28181347_6 (replaced_by VARCHAR, date_of_vacancy VARCHAR) | In football league one, what coach was hired as a replacement on 8 October 2007 |
SELECT manner_of_departure FROM table_28181347_6 WHERE date_of_appointment = "6 November 2007" | CREATE TABLE table_28181347_6 (manner_of_departure VARCHAR, date_of_appointment VARCHAR) | One 6 November 2007 what was the manner of departure for the coach release in football league one? |
SELECT MIN(no_in_series) FROM table_2818164_4 WHERE written_by = "Janet Leahy" | CREATE TABLE table_2818164_4 (no_in_series INTEGER, written_by VARCHAR) | What is the series number for the episode written by janet leahy? |
SELECT original_air_date FROM table_2818164_4 WHERE production_code = 322 | CREATE TABLE table_2818164_4 (original_air_date VARCHAR, production_code VARCHAR) | What was the air date of the episode with the production code of 322? |
SELECT MIN(no_in_series) FROM table_2818164_4 WHERE directed_by = "Jay Sandrich" AND original_air_date = "October 23, 1986" | CREATE TABLE table_2818164_4 (no_in_series INTEGER, directed_by VARCHAR, original_air_date VARCHAR) | What is the series number for the episode directed by jay sandrich that aired October 23, 1986? |
SELECT title FROM table_28195971_1 WHERE directed_by = "David Solomon" AND written_by = "Marti Noxon" | CREATE TABLE table_28195971_1 (title VARCHAR, directed_by VARCHAR, written_by VARCHAR) | What are the title(s) of episodes directed by david solomon and written by marti noxon? |
SELECT COUNT(_number) FROM table_28196105_1 WHERE production_code = "7ABB21" | CREATE TABLE table_28196105_1 (_number VARCHAR, production_code VARCHAR) | What was the number of episodes whose production code is 7ABB21? |
SELECT written_by FROM table_28196105_1 WHERE _number = 18 | CREATE TABLE table_28196105_1 (written_by VARCHAR, _number VARCHAR) | Who wrote episode number 18? |
SELECT tries_for FROM table_28204447_3 WHERE l < 2.0 | CREATE TABLE table_28204447_3 (tries_for VARCHAR, l INTEGER) | Name the tries for when L is less than 2.0 |
SELECT MAX(year) FROM table_2820584_2 | CREATE TABLE table_2820584_2 (year INTEGER) | What is the most recent year shown for Betty Stove? |
SELECT partner FROM table_2820584_2 WHERE surface = "Hard" | CREATE TABLE table_2820584_2 (partner VARCHAR, surface VARCHAR) | Who was Betty's partner when the surface is hard? |
SELECT MIN(drawn) FROM table_28201906_1 | CREATE TABLE table_28201906_1 (drawn INTEGER) | What is the lowest number of drawn games by a team? |
SELECT pts_for FROM table_28201906_1 WHERE won = 5 | CREATE TABLE table_28201906_1 (pts_for VARCHAR, won VARCHAR) | How many points did the team that won 5 games make? |
SELECT points FROM table_28201906_1 WHERE pts_agst = 45 | CREATE TABLE table_28201906_1 (points VARCHAR, pts_agst VARCHAR) | How many points does the club that had 45 points against it have? |
SELECT COUNT(institution) FROM table_28211213_2 WHERE team_nickname = "Gray Wolves" | CREATE TABLE table_28211213_2 (institution VARCHAR, team_nickname VARCHAR) | When gray wolves is the team nickname how many institutions are there? |
SELECT team_nickname FROM table_28211213_2 WHERE location = "Sylvania, OH" | CREATE TABLE table_28211213_2 (team_nickname VARCHAR, location VARCHAR) | When sylvania, oh is the location what is the team nickname? |
Subsets and Splits