answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT result FROM table_name_99 WHERE score = "3-2" | CREATE TABLE table_name_99 (result VARCHAR, score VARCHAR) | What was the result of the game with a score of 3-2? |
SELECT score FROM table_name_91 WHERE competition = "2014 world cup qualification" | CREATE TABLE table_name_91 (score VARCHAR, competition VARCHAR) | What was the score of the 2014 World Cup Qualification? |
SELECT result FROM table_name_65 WHERE score = "4-1" | CREATE TABLE table_name_65 (result VARCHAR, score VARCHAR) | What was the result of the game with a score of 4-1? |
SELECT venue FROM table_name_42 WHERE score = "3-2" | CREATE TABLE table_name_42 (venue VARCHAR, score VARCHAR) | What venue held with game with a score of 3-2? |
SELECT date FROM table_name_20 WHERE centerfold_model = "krista kelly" | CREATE TABLE table_name_20 (date VARCHAR, centerfold_model VARCHAR) | When has a Centerfold model of krista kelly? |
SELECT 20 AS _questions FROM table_name_60 WHERE cover_model = "rena mero , torrie wilson (two alternative covers)" | CREATE TABLE table_name_60 (cover_model VARCHAR) | Which 20 Questions has a Cover model of rena mero , torrie wilson (two alternative covers)? |
SELECT centerfold_model FROM table_name_80 WHERE date = "3-04" | CREATE TABLE table_name_80 (centerfold_model VARCHAR, date VARCHAR) | When Centerfold model is on 3-04? |
SELECT cover_model FROM table_name_22 WHERE centerfold_model = "scarlett keegan" | CREATE TABLE table_name_22 (cover_model VARCHAR, centerfold_model VARCHAR) | Which Cover model has a Centerfold model of scarlett keegan? |
SELECT date FROM table_name_95 WHERE centerfold_model = "pilar lastra" | CREATE TABLE table_name_95 (date VARCHAR, centerfold_model VARCHAR) | When has a Centerfold model of pilar lastra? |
SELECT MIN(share) FROM table_name_8 WHERE air_date = "march 21, 2008" AND viewers > 5.15 | CREATE TABLE table_name_8 (share INTEGER, air_date VARCHAR, viewers VARCHAR) | What is the lowest share with an air date of March 21, 2008 and had viewers larger than 5.15? |
SELECT MIN(team_s_) FROM table_name_31 WHERE top_goalscorer_s_ = "tvmk" AND champion = "flora" | CREATE TABLE table_name_31 (team_s_ INTEGER, top_goalscorer_s_ VARCHAR, champion VARCHAR) | What is the lowest team (s) that have tvmk as top scorer (s) and flora as the champion? |
SELECT round FROM table_name_1 WHERE opposition = "lyon" | CREATE TABLE table_name_1 (round VARCHAR, opposition VARCHAR) | What round had the opponent Lyon? |
SELECT first_leg FROM table_name_53 WHERE round = "semi-final" | CREATE TABLE table_name_53 (first_leg VARCHAR, round VARCHAR) | Who has the first leg that has a round in the semi-final? |
SELECT most_laps_led FROM table_name_28 WHERE winning_team = "chip ganassi racing" AND fastest_lap = "marco andretti" | CREATE TABLE table_name_28 (most_laps_led VARCHAR, winning_team VARCHAR, fastest_lap VARCHAR) | What is Most Laps Led, when Winning Team is Chip Ganassi Racing, and when Fastest Lap is Marco Andretti? |
SELECT winning_driver FROM table_name_10 WHERE most_laps_led = "dario franchitti" AND pole_position = "hΓ©lio castroneves" | CREATE TABLE table_name_10 (winning_driver VARCHAR, most_laps_led VARCHAR, pole_position VARCHAR) | Who is the Winning Driver, when Most Laps Led is Dario Franchitti, and when Pole Position is HΓ©lio Castroneves? |
SELECT winning_team FROM table_name_21 WHERE most_laps_led = "alex tagliani" | CREATE TABLE table_name_21 (winning_team VARCHAR, most_laps_led VARCHAR) | What is Winning Team, when Most Laps Led is Alex Tagliani? |
SELECT winning_driver FROM table_name_7 WHERE fastest_lap = "ryan hunter-reay" AND most_laps_led = "ryan briscoe" | CREATE TABLE table_name_7 (winning_driver VARCHAR, fastest_lap VARCHAR, most_laps_led VARCHAR) | What is Winning Driver, when Fastest Lap is Ryan Hunter-Reay, and when Most Laps Led is Ryan Briscoe? |
SELECT race FROM table_name_91 WHERE winning_team = "chip ganassi racing" AND pole_position = "ryan briscoe" AND most_laps_led = "scott dixon" | CREATE TABLE table_name_91 (race VARCHAR, most_laps_led VARCHAR, winning_team VARCHAR, pole_position VARCHAR) | What is Race, when Winning Team is Chip Ganassi Racing, when Pole Position is Ryan Briscoe, and when Most Laps Led is Scott Dixon? |
SELECT winner FROM table_name_20 WHERE runner_up = "real salt lake" | CREATE TABLE table_name_20 (winner VARCHAR, runner_up VARCHAR) | Who was the Winner when the Runner-up was Real Salt Lake? |
SELECT season FROM table_name_64 WHERE runner_up = "tournament in progress" | CREATE TABLE table_name_64 (season VARCHAR, runner_up VARCHAR) | During which Season was the tournament in progress? |
SELECT score FROM table_name_15 WHERE winner = "c.f. atlante" | CREATE TABLE table_name_15 (score VARCHAR, winner VARCHAR) | What was the Score during the Season in which the Winner was C.F. Atlante? |
SELECT score FROM table_name_88 WHERE losing_semifinalists = "toluca unam" | CREATE TABLE table_name_88 (score VARCHAR, losing_semifinalists VARCHAR) | What was the Score when the Losing Semifinalists were Toluca Unam? |
SELECT laws_against_homosexuality FROM table_name_90 WHERE penalty = "β" AND country = "iraq" | CREATE TABLE table_name_90 (laws_against_homosexuality VARCHAR, penalty VARCHAR, country VARCHAR) | What law has a penalty of β in Iraq? |
SELECT laws_against_homosexuality FROM table_name_34 WHERE country = "malaysia" | CREATE TABLE table_name_34 (laws_against_homosexuality VARCHAR, country VARCHAR) | What are the laws against homosexuality in Malaysia? |
SELECT AVG(events) FROM table_name_62 WHERE top_25 = 12 AND wins < 0 | CREATE TABLE table_name_62 (events INTEGER, top_25 VARCHAR, wins VARCHAR) | What is the average Events when the top-25 is 12 and there are less than 0 wins? |
SELECT SUM(events) FROM table_name_88 WHERE top_25 > 5 AND top_10 < 4 AND wins > 2 | CREATE TABLE table_name_88 (events INTEGER, wins VARCHAR, top_25 VARCHAR, top_10 VARCHAR) | What is the sum of Events when the top-25 is more than 5, and the top-10 is less than 4, and wins is more than 2? |
SELECT AVG(top_10) FROM table_name_93 WHERE cuts_made = 17 AND wins < 0 | CREATE TABLE table_name_93 (top_10 INTEGER, cuts_made VARCHAR, wins VARCHAR) | What is the average Top-10 when there were 17 cuts made with less than 0 wins? |
SELECT SUM(cuts_made) FROM table_name_95 WHERE events > 72 | CREATE TABLE table_name_95 (cuts_made INTEGER, events INTEGER) | What is the sum of Cuts made when there were more than 72 events? |
SELECT AVG(top_5) FROM table_name_98 WHERE tournament = "the open championship" AND top_10 < 2 | CREATE TABLE table_name_98 (top_5 INTEGER, tournament VARCHAR, top_10 VARCHAR) | What is the average Top-5 for the open championship, and a Top-10 smaller than 2? |
SELECT original_airing FROM table_name_74 WHERE rating < 10.1 AND episode_number_production_number = "96 5-09" | CREATE TABLE table_name_74 (original_airing VARCHAR, rating VARCHAR, episode_number_production_number VARCHAR) | What was the date of airing for episodes with ratings under 10.1 and production number of 96 5-09? |
SELECT MIN(total_viewers__in_millions_) FROM table_name_54 WHERE episode_number_production_number = "109 5-22" | CREATE TABLE table_name_54 (total_viewers__in_millions_ INTEGER, episode_number_production_number VARCHAR) | What was the fewest number of viewers for the episode production number of 109 5-22? |
SELECT first_aligned_day FROM table_name_67 WHERE date = "1614" | CREATE TABLE table_name_67 (first_aligned_day VARCHAR, date VARCHAR) | What is the First Aligned date in 1614? |
SELECT COUNT(_number_of_airlines) FROM table_name_76 WHERE distance__km_ = 705 | CREATE TABLE table_name_76 (_number_of_airlines VARCHAR, distance__km_ VARCHAR) | How many Airlines have a total distance of 705 (km)? |
SELECT 1 AS st_leg FROM table_name_10 WHERE team_1 = "gambia" | CREATE TABLE table_name_10 (team_1 VARCHAR) | What is the 1st leg result when team 1 is Gambia? |
SELECT 2 AS nd_leg FROM table_name_16 WHERE team_2 = "morocco" | CREATE TABLE table_name_16 (team_2 VARCHAR) | What is the 2nd leg result when team 2 is Morocco? |
SELECT name FROM table_name_32 WHERE year = "2001" | CREATE TABLE table_name_32 (name VARCHAR, year VARCHAR) | Which Name was in the Year 2001? |
SELECT name FROM table_name_31 WHERE out_of < 149 AND rank = 18 | CREATE TABLE table_name_31 (name VARCHAR, out_of VARCHAR, rank VARCHAR) | Which Name had a Rank of 18 Out of a number smaller than 149? |
SELECT name FROM table_name_54 WHERE rank = 15 | CREATE TABLE table_name_54 (name VARCHAR, rank VARCHAR) | Which Name had the Rank, 15? |
SELECT MIN(rank) FROM table_name_66 WHERE name = "area of permanent crops" AND out_of < 181 | CREATE TABLE table_name_66 (rank INTEGER, name VARCHAR, out_of VARCHAR) | What is the lowest Rank for the Name, "area of permanent crops", Out of a number smaller than 181? |
SELECT name FROM table_name_48 WHERE source = "world bank" AND rank < 110 AND out_of < 199 | CREATE TABLE table_name_48 (name VARCHAR, out_of VARCHAR, source VARCHAR, rank VARCHAR) | Which Name had the Source, World Bank, and a Rank smaller than 110, Out of a number smaller than 199? |
SELECT team FROM table_name_88 WHERE coach = "manzoor elahi" AND captain = "taufeeq umar" | CREATE TABLE table_name_88 (team VARCHAR, coach VARCHAR, captain VARCHAR) | Which Team has Manzoor Elahi as Coach and Taufeeq Umar as Captain? |
SELECT city FROM table_name_98 WHERE team = "bahawalpur stags" | CREATE TABLE table_name_98 (city VARCHAR, team VARCHAR) | Which City has the Bahawalpur Stags Team? |
SELECT opponent FROM table_name_90 WHERE date = "december 18, 1994" | CREATE TABLE table_name_90 (opponent VARCHAR, date VARCHAR) | Who is the opponent of the December 18, 1994 game? |
SELECT artist FROM table_name_48 WHERE date = "june 1979" | CREATE TABLE table_name_48 (artist VARCHAR, date VARCHAR) | What is the Artist with a Date that is june 1979? |
SELECT writer FROM table_name_8 WHERE actual_title = "mork & mindy" | CREATE TABLE table_name_8 (writer VARCHAR, actual_title VARCHAR) | What is the Writer with an Actual Title that is mork & mindy? |
SELECT writer FROM table_name_63 WHERE date = "january 1975" | CREATE TABLE table_name_63 (writer VARCHAR, date VARCHAR) | What is the Writer with a Date that is january 1975? |
SELECT MIN(played) FROM table_name_66 WHERE drawn = 2 AND against > 73 | CREATE TABLE table_name_66 (played INTEGER, drawn VARCHAR, against VARCHAR) | What is the smallest played amount when there are 2 draws and an against of more than 73? |
SELECT MIN(episodes) FROM table_name_90 WHERE premiere = "february5,2007" | CREATE TABLE table_name_90 (episodes INTEGER, premiere VARCHAR) | What is the earliest season with a premiere of february5,2007? |
SELECT premiere FROM table_name_36 WHERE episodes > 15 | CREATE TABLE table_name_36 (premiere VARCHAR, episodes INTEGER) | Which premiere had more than 15 episodes? |
SELECT high_rebounds FROM table_name_15 WHERE date = "april 7" | CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR) | Who had the highest rebounds of the game on April 7? |
SELECT result FROM table_name_80 WHERE date = "2003" | CREATE TABLE table_name_80 (result VARCHAR, date VARCHAR) | What is Result, when Date is 2003? |
SELECT record FROM table_name_45 WHERE date = "1996" | CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR) | What is Record, when Date is 1996? |
SELECT notes FROM table_name_9 WHERE date = "2007" | CREATE TABLE table_name_9 (notes VARCHAR, date VARCHAR) | What is Notes, when Date is 2007? |
SELECT MAX(round) FROM table_name_28 WHERE opponent = "junior pitbull" | CREATE TABLE table_name_28 (round INTEGER, opponent VARCHAR) | What is the highest Round, when the Opponent is Junior Pitbull? |
SELECT date FROM table_name_8 WHERE result = "loss" AND method = "submission (armbar)" | CREATE TABLE table_name_8 (date VARCHAR, result VARCHAR, method VARCHAR) | What is Date, when Result is Loss, and when Method is Submission (Armbar)? |
SELECT coombe_road FROM table_name_17 WHERE selsdon = "evening peak" | CREATE TABLE table_name_17 (coombe_road VARCHAR, selsdon VARCHAR) | What is the Coombe Road time with a Selsdon evening peak? |
SELECT woodside FROM table_name_81 WHERE coombe_road = "16:19" | CREATE TABLE table_name_81 (woodside VARCHAR, coombe_road VARCHAR) | What is the Woodside for the 16:19 Coombe Road? |
SELECT elmers_end FROM table_name_65 WHERE bingham_road = "09:54" | CREATE TABLE table_name_65 (elmers_end VARCHAR, bingham_road VARCHAR) | What is the Elmers End with a 09:54 Bingham Road? |
SELECT coombe_road FROM table_name_14 WHERE woodside = "07:23" | CREATE TABLE table_name_14 (coombe_road VARCHAR, woodside VARCHAR) | What is the Coombe Road with a Woodside time of 07:23? |
SELECT elmers_end FROM table_name_30 WHERE selsdon = "17:57" | CREATE TABLE table_name_30 (elmers_end VARCHAR, selsdon VARCHAR) | What is the Elmers End with a 17:57 Selsdon time? |
SELECT selsdon FROM table_name_14 WHERE coombe_road = "17:19" | CREATE TABLE table_name_14 (selsdon VARCHAR, coombe_road VARCHAR) | What is the Selsdon for the 17:19 Coombe Road? |
SELECT MAX(wins) FROM table_name_65 WHERE losses < 2 | CREATE TABLE table_name_65 (wins INTEGER, losses INTEGER) | What is the highest win for losses less than 2? |
SELECT AVG(byes) FROM table_name_46 WHERE losses = 15 AND against < 1874 | CREATE TABLE table_name_46 (byes INTEGER, losses VARCHAR, against VARCHAR) | What is the average Byes for the losses of 15, and before 1874? |
SELECT SUM(against) FROM table_name_75 WHERE ballarat_fl = "east point" AND wins < 16 | CREATE TABLE table_name_75 (against INTEGER, ballarat_fl VARCHAR, wins VARCHAR) | What is the sum of against in Ballarat FL of East Point and wins less than 16? |
SELECT school FROM table_name_99 WHERE pick = 24 | CREATE TABLE table_name_99 (school VARCHAR, pick VARCHAR) | What is the School with a Pick that is 24? |
SELECT team FROM table_name_86 WHERE player = "david cooper" | CREATE TABLE table_name_86 (team VARCHAR, player VARCHAR) | What is the Team with a Player that is david cooper? |
SELECT SUM(visitors), _2007 FROM table_name_10 WHERE type = "ski jumping hill" | CREATE TABLE table_name_10 (_2007 VARCHAR, visitors INTEGER, type VARCHAR) | How many visitors in 2007 were there for ski jumping hill? |
SELECT MAX(games) FROM table_name_26 WHERE rebounds > 100 AND name = "nikola pekoviΔ" AND rank < 4 | CREATE TABLE table_name_26 (games INTEGER, rank VARCHAR, rebounds VARCHAR, name VARCHAR) | What is the highest Games, when Rebounds is greater than 100, when Name is Nikola PekoviΔ, and when Rank is less than 4? |
SELECT COUNT(games) FROM table_name_99 WHERE rank < 4 AND rebounds < 102 | CREATE TABLE table_name_99 (games VARCHAR, rank VARCHAR, rebounds VARCHAR) | What is the total number of Games, when Rank is less than 4, and when Rebounds is less than 102? |
SELECT MIN(games) FROM table_name_38 WHERE name = "travis watson" AND rebounds < 136 | CREATE TABLE table_name_38 (games INTEGER, name VARCHAR, rebounds VARCHAR) | What is the lowest Games, when Name is Travis Watson, and when Rebounds is less than 136? |
SELECT SUM(rebounds) FROM table_name_56 WHERE team = "aris thessaloniki" AND games > 14 | CREATE TABLE table_name_56 (rebounds INTEGER, team VARCHAR, games VARCHAR) | What is the sum of Rebounds, when Team is Aris Thessaloniki, and when Games is greater than 14? |
SELECT MAX(rank) FROM table_name_52 WHERE name = "travis watson" AND games < 14 | CREATE TABLE table_name_52 (rank INTEGER, name VARCHAR, games VARCHAR) | What is the highest Rank, when Name is Travis Watson, and when Games is less than 14? |
SELECT authors FROM table_name_90 WHERE novelty = "gen nov" AND location = "south africa" AND name = "criocephalosaurus" | CREATE TABLE table_name_90 (authors VARCHAR, name VARCHAR, novelty VARCHAR, location VARCHAR) | What is Authors, when Novelty is Gen Nov, when Location is South Africa, and when Name is Criocephalosaurus? |
SELECT status FROM table_name_69 WHERE location = "russia" | CREATE TABLE table_name_69 (status VARCHAR, location VARCHAR) | What is Status, when Location is Russia? |
SELECT authors FROM table_name_13 WHERE novelty = "gen et sp nov" AND name = "lanthanocephalus" | CREATE TABLE table_name_13 (authors VARCHAR, novelty VARCHAR, name VARCHAR) | What is Authors, when Novelty is Gen Et Sp Nov, and when Name is Lanthanocephalus? |
SELECT name FROM table_name_51 WHERE authors = "kammerer & sidor" | CREATE TABLE table_name_51 (name VARCHAR, authors VARCHAR) | What is Name, when Authors are Kammerer & Sidor? |
SELECT name FROM table_name_88 WHERE location = "tanzania" AND novelty = "gen nov" | CREATE TABLE table_name_88 (name VARCHAR, location VARCHAR, novelty VARCHAR) | What is Name, when Location is Tanzania, and when Novelty is Gen Nov? |
SELECT name FROM table_name_24 WHERE status = "valid" AND authors = "maisch" AND location = "tanzania" AND novelty = "gen et sp nov" | CREATE TABLE table_name_24 (name VARCHAR, novelty VARCHAR, location VARCHAR, status VARCHAR, authors VARCHAR) | What is Name, when Status is Valid, when Authors is Maisch, when Location is Tanzania, and when Novelty is Gen Et Sp Nov? |
SELECT t568a_color FROM table_name_44 WHERE t568b_color = "white/orange stripe" | CREATE TABLE table_name_44 (t568a_color VARCHAR, t568b_color VARCHAR) | What is the T568A color for the cable with a white/orange stripe T568B color? |
SELECT date FROM table_name_53 WHERE opponent = "flavia pennetta" | CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR) | What is the Date with an Opponent that is flavia pennetta? |
SELECT score FROM table_name_55 WHERE opponent = "flavia pennetta" | CREATE TABLE table_name_55 (score VARCHAR, opponent VARCHAR) | What is the Score with an Opponent that is flavia pennetta? |
SELECT opponent FROM table_name_39 WHERE score = "2β6, 6β4, 3β6" | CREATE TABLE table_name_39 (opponent VARCHAR, score VARCHAR) | What is the Opponent with a Score that is 2β6, 6β4, 3β6? |
SELECT outcome FROM table_name_49 WHERE date = "may 5, 2012" | CREATE TABLE table_name_49 (outcome VARCHAR, date VARCHAR) | What is the Outcome with a Date that is may 5, 2012? |
SELECT outcome FROM table_name_85 WHERE opponent = "jelena jankoviΔ" | CREATE TABLE table_name_85 (outcome VARCHAR, opponent VARCHAR) | What is the Outcome with an Opponent that is jelena jankoviΔ? |
SELECT tournament FROM table_name_55 WHERE score = "2β6, 6β4, 3β6" | CREATE TABLE table_name_55 (tournament VARCHAR, score VARCHAR) | What is the Tournament with a Score that is 2β6, 6β4, 3β6? |
SELECT COUNT(week) FROM table_name_57 WHERE date = "november 13, 1955" AND attendance > 33 OFFSET 982 | CREATE TABLE table_name_57 (week VARCHAR, date VARCHAR, attendance VARCHAR) | Which week was on November 13, 1955 when the attendance was over 33,982? |
SELECT japanese_name FROM table_name_46 WHERE korean_name = "chungcheong-bukdo" | CREATE TABLE table_name_46 (japanese_name VARCHAR, korean_name VARCHAR) | What is the Japanese name of the Province with a Korean name of Chungcheong-Bukdo? |
SELECT hanja___kanji FROM table_name_10 WHERE kana = "γ‘γ
γγγγ»γγ©γ" | CREATE TABLE table_name_10 (hanja___kanji VARCHAR, kana VARCHAR) | What is the Hanja/Kanji of the Province with a Kana of γ‘γ
γγγγ»γγ©γ? |
SELECT kana FROM table_name_2 WHERE korean_name = "chungcheong-namdo" | CREATE TABLE table_name_2 (kana VARCHAR, korean_name VARCHAR) | What is the Kana of the Province with a Korean name of Chungcheong-Namdo? |
SELECT hangul FROM table_name_48 WHERE kana = "γΈγγγγͺγγ©γ" | CREATE TABLE table_name_48 (hangul VARCHAR, kana VARCHAR) | What is the Hangul of the Province with a Kana of γΈγγγγͺγγ©γ? |
SELECT hangul FROM table_name_3 WHERE kana = "γ‘γ
γγγγͺγγ©γ" | CREATE TABLE table_name_3 (hangul VARCHAR, kana VARCHAR) | What is the Hangul of the Province with a Kana of γ‘γ
γγγγͺγγ©γ? |
SELECT hanja___kanji FROM table_name_5 WHERE korean_name = "chungcheong-bukdo" | CREATE TABLE table_name_5 (hanja___kanji VARCHAR, korean_name VARCHAR) | What is the Hanja/Kanji of the Province with a Korean name of Chungcheong-Bukdo? |
SELECT oct FROM table_name_94 WHERE nov = "51/30" | CREATE TABLE table_name_94 (oct VARCHAR, nov VARCHAR) | What were the Oct. temperatures for the city that had Nov. temperatures of 51/30? |
SELECT feb FROM table_name_63 WHERE city = "east stroudsburg" | CREATE TABLE table_name_63 (feb VARCHAR, city VARCHAR) | What were the Feb temperatures in East Stroudsburg? |
SELECT SUM(comp) FROM table_name_33 WHERE comp_percentage = 65.4 AND att < 451 | CREATE TABLE table_name_33 (comp INTEGER, comp_percentage VARCHAR, att VARCHAR) | What is the sum of completions that led to completion percentages of 65.4 and attempts under 451? |
SELECT regular_season FROM table_name_78 WHERE playoffs = "conference semifinals" | CREATE TABLE table_name_78 (regular_season VARCHAR, playoffs VARCHAR) | What regular season did the team reach the conference semifinals in the playoffs? |
SELECT COUNT(division) FROM table_name_89 WHERE regular_season = "2nd, northeast" AND year < 2008 | CREATE TABLE table_name_89 (division VARCHAR, regular_season VARCHAR, year VARCHAR) | When the regular season of 2nd, Northeast and the year was less than 2008 what was the total number of Division? |
SELECT division FROM table_name_97 WHERE regular_season = "5th, northeast" | CREATE TABLE table_name_97 (division VARCHAR, regular_season VARCHAR) | What division was the regular season 5th, Northeast? |
SELECT result FROM table_name_36 WHERE nomination = "jam hsiao" AND year = 2012 | CREATE TABLE table_name_36 (result VARCHAR, nomination VARCHAR, year VARCHAR) | What was the result when Jam Hsiao was nominated in 2012? |
SELECT award FROM table_name_55 WHERE category = "best music video" | CREATE TABLE table_name_55 (award VARCHAR, category VARCHAR) | Which award is in the category of best music video? |
Subsets and Splits