question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
Band of am, and a Callsign of 6wh has what purpose? | CREATE TABLE table_name_71 (purpose VARCHAR, band VARCHAR, callsign VARCHAR) | SELECT purpose FROM table_name_71 WHERE band = "am" AND callsign = "6wh" |
Frequency of 0 864 has what callsign? | CREATE TABLE table_name_99 (callsign VARCHAR, frequency VARCHAR) | SELECT callsign FROM table_name_99 WHERE frequency = "0 864" |
What club has a home score of 0-2 in Round 1? | CREATE TABLE table_name_53 (club VARCHAR, round VARCHAR, home VARCHAR) | SELECT club FROM table_name_53 WHERE round = 1 AND home = "0-2" |
What is NK Rijeka's away score in Round 2? | CREATE TABLE table_name_97 (away VARCHAR, round VARCHAR, club VARCHAR) | SELECT away FROM table_name_97 WHERE round < 2 AND club = "nk rijeka" |
What is NK Rijeka's away score? | CREATE TABLE table_name_75 (away VARCHAR, club VARCHAR) | SELECT away FROM table_name_75 WHERE club = "nk rijeka" |
When did the Indians play a game with a record of 28-41? | CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_66 WHERE record = "28-41" |
Rank smaller than 5, and a Time of 31’ 03.093 is what rider? | CREATE TABLE table_name_8 (rider VARCHAR, rank VARCHAR, time VARCHAR) | SELECT rider FROM table_name_8 WHERE rank < 5 AND time = "31’ 03.093" |
Team of honda 250cc, and a Rank larger than 2, and a Rider of chris palmer is what time? | CREATE TABLE table_name_3 (time VARCHAR, rider VARCHAR, team VARCHAR, rank VARCHAR) | SELECT time FROM table_name_3 WHERE team = "honda 250cc" AND rank > 2 AND rider = "chris palmer" |
Rank larger than 8, and a Rider of chris barrett is what team? | CREATE TABLE table_name_87 (team VARCHAR, rank VARCHAR, rider VARCHAR) | SELECT team FROM table_name_87 WHERE rank > 8 AND rider = "chris barrett" |
Team of honda 250cc, and a Time of 31’ 03.093 has what lowest rank? | CREATE TABLE table_name_74 (rank INTEGER, team VARCHAR, time VARCHAR) | SELECT MIN(rank) FROM table_name_74 WHERE team = "honda 250cc" AND time = "31’ 03.093" |
Rank larger than 5, and a Rider of paul shoesmith belongs to what team? | CREATE TABLE table_name_53 (team VARCHAR, rank VARCHAR, rider VARCHAR) | SELECT team FROM table_name_53 WHERE rank > 5 AND rider = "paul shoesmith" |
How many Total matches have a Year of career, and a Points won larger than 25? | CREATE TABLE table_name_61 (total_matches INTEGER, year VARCHAR, points_won VARCHAR) | SELECT SUM(total_matches) FROM table_name_61 WHERE year = "career" AND points_won > 25 |
How many Total matches happened in 2003? | CREATE TABLE table_name_20 (total_matches VARCHAR, year VARCHAR) | SELECT total_matches FROM table_name_20 WHERE year = "2003" |
How many points were won in 1996? | CREATE TABLE table_name_14 (points_won INTEGER, year VARCHAR) | SELECT MAX(points_won) FROM table_name_14 WHERE year = "1996" |
Which Total matches is the highest one that has Points % of 70%? | CREATE TABLE table_name_74 (total_matches INTEGER, points__percentage VARCHAR) | SELECT MAX(total_matches) FROM table_name_74 WHERE points__percentage = "70%" |
Which Total matches is the lowest one that has a Total W-L-H of 1-2-0? | CREATE TABLE table_name_33 (total_matches INTEGER, total_w_l_h VARCHAR) | SELECT MIN(total_matches) FROM table_name_33 WHERE total_w_l_h = "1-2-0" |
what is the winner of stage 3 | CREATE TABLE table_name_75 (winner VARCHAR, stage VARCHAR) | SELECT winner FROM table_name_75 WHERE stage = 3 |
What was the Total the Year Yugoslavia had 0 Silver medals and 31 Competitors? | CREATE TABLE table_name_5 (total VARCHAR, silver VARCHAR, competitors VARCHAR) | SELECT total FROM table_name_5 WHERE silver = "0" AND competitors = "31" |
What is the Bronze in the year there was a Total of 0 medals and 6 Competitors? | CREATE TABLE table_name_74 (bronze VARCHAR, total VARCHAR, competitors VARCHAR) | SELECT bronze FROM table_name_74 WHERE total = "0" AND competitors = "6" |
In what Year did Yugoslavia have 4 Competitors with 0 medals Total? | CREATE TABLE table_name_78 (year VARCHAR, total VARCHAR, competitors VARCHAR) | SELECT year FROM table_name_78 WHERE total = "0" AND competitors = "4" |
In the Year Yugoslavia won 1 Silver, how many Gold medals did they win? | CREATE TABLE table_name_14 (gold VARCHAR, silver VARCHAR) | SELECT gold FROM table_name_14 WHERE silver = "1" |
What is the Total medals the Year Yugoslavia had 1 Sport and won 0 Gold, Bronze or Silver? | CREATE TABLE table_name_94 (total VARCHAR, sports VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR) | SELECT total FROM table_name_94 WHERE gold = "0" AND bronze = "0" AND silver = "0" AND sports = "1" |
Rank of 5, and a Silver larger than 0 had what sum of total? | CREATE TABLE table_name_8 (total INTEGER, rank VARCHAR, silver VARCHAR) | SELECT SUM(total) FROM table_name_8 WHERE rank = "5" AND silver > 0 |
Gold smaller than 2, and a Rank of 4, and a Nation of hungary (hun), and a Bronze smaller than 1 had what total number of silver? | CREATE TABLE table_name_48 (silver VARCHAR, bronze VARCHAR, nation VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_48 WHERE gold < 2 AND rank = "4" AND nation = "hungary (hun)" AND bronze < 1 |
Total smaller than 7, and a Bronze larger than 1 is what amount of average silver? | CREATE TABLE table_name_35 (silver INTEGER, total VARCHAR, bronze VARCHAR) | SELECT AVG(silver) FROM table_name_35 WHERE total < 7 AND bronze > 1 |
Bronze smaller than 5, and a Silver larger than 0 is which nation? | CREATE TABLE table_name_66 (nation VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT nation FROM table_name_66 WHERE bronze < 5 AND silver > 0 |
What player was on the Los Angeles Dodgers? | CREATE TABLE table_name_70 (player VARCHAR, team VARCHAR) | SELECT player FROM table_name_70 WHERE team = "los angeles dodgers" |
Which team did the Boston Beaneaters host at the South End Grounds? | CREATE TABLE table_name_36 (opponent VARCHAR, venue VARCHAR) | SELECT opponent FROM table_name_36 WHERE venue = "south end grounds" |
Which team opposed the Milwaukee Braves? | CREATE TABLE table_name_92 (opponent VARCHAR, team VARCHAR) | SELECT opponent FROM table_name_92 WHERE team = "milwaukee braves" |
What was the venue where Chuck Klein played? | CREATE TABLE table_name_85 (venue VARCHAR, player VARCHAR) | SELECT venue FROM table_name_85 WHERE player = "chuck klein" |
What was the venue where Josh Hamilton played? | CREATE TABLE table_name_42 (venue VARCHAR, player VARCHAR) | SELECT venue FROM table_name_42 WHERE player = "josh hamilton" |
How man cuts were there of players who had 0 wins but had 1 player in the top 25 with more than 4 events? | CREATE TABLE table_name_76 (cuts_made INTEGER, events VARCHAR, wins VARCHAR, top_25 VARCHAR) | SELECT SUM(cuts_made) FROM table_name_76 WHERE wins = 0 AND top_25 = 1 AND events > 4 |
What was the larger number of players that played in 4 events that 2 wins but were less than 6 in the top 10? | CREATE TABLE table_name_16 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR, wins VARCHAR) | SELECT MAX(top_25) FROM table_name_16 WHERE events > 4 AND wins = 2 AND top_10 < 6 |
Which Combination classification has Points classification of daniele bennati, and a Team classification of quick step? | CREATE TABLE table_name_34 (combination_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR) | SELECT combination_classification FROM table_name_34 WHERE points_classification = "daniele bennati" AND team_classification = "quick step" |
Which Mountains classification has a Team classification of quick step? | CREATE TABLE table_name_81 (mountains_classification VARCHAR, team_classification VARCHAR) | SELECT mountains_classification FROM table_name_81 WHERE team_classification = "quick step" |
Which Team classification has a Combination classification of egoi martínez, and a Winner of tom boonen? | CREATE TABLE table_name_28 (team_classification VARCHAR, combination_classification VARCHAR, winner VARCHAR) | SELECT team_classification FROM table_name_28 WHERE combination_classification = "egoi martínez" AND winner = "tom boonen" |
Which Combination classification has a Stage of 14? | CREATE TABLE table_name_17 (combination_classification VARCHAR, stage VARCHAR) | SELECT combination_classification FROM table_name_17 WHERE stage = "14" |
Which Mountains classification has a General classification of egoi martínez, and a Stage of 9? | CREATE TABLE table_name_42 (mountains_classification VARCHAR, general_classification VARCHAR, stage VARCHAR) | SELECT mountains_classification FROM table_name_42 WHERE general_classification = "egoi martínez" AND stage = "9" |
Which Mountains classification has Points classification of not awarded? | CREATE TABLE table_name_48 (mountains_classification VARCHAR, points_classification VARCHAR) | SELECT mountains_classification FROM table_name_48 WHERE points_classification = "not awarded" |
What subtitles have 15 as the classification? | CREATE TABLE table_name_85 (subtitles VARCHAR, classifaction VARCHAR) | SELECT subtitles FROM table_name_85 WHERE classifaction = "15" |
What country has deltamac (hk) as the publisher? | CREATE TABLE table_name_34 (country VARCHAR, publisher VARCHAR) | SELECT country FROM table_name_34 WHERE publisher = "deltamac (hk)" |
What is the release date that has english as the subtitles, and magna pacific as the publisher? | CREATE TABLE table_name_61 (release_date VARCHAR, subtitles VARCHAR, publisher VARCHAR) | SELECT release_date FROM table_name_61 WHERE subtitles = "english" AND publisher = "magna pacific" |
What classification has cantonese as the language, and universal pictures japan as the publisher? | CREATE TABLE table_name_55 (classifaction VARCHAR, language VARCHAR, publisher VARCHAR) | SELECT classifaction FROM table_name_55 WHERE language = "cantonese" AND publisher = "universal pictures japan" |
What sound has cantonese as the language, N/A as the classification, and spectrum dvd as the publisher? | CREATE TABLE table_name_77 (sound VARCHAR, publisher VARCHAR, language VARCHAR, classifaction VARCHAR) | SELECT sound FROM table_name_77 WHERE language = "cantonese" AND classifaction = "n/a" AND publisher = "spectrum dvd" |
What language has 20th century fox as the publisher? | CREATE TABLE table_name_52 (language VARCHAR, publisher VARCHAR) | SELECT language FROM table_name_52 WHERE publisher = "20th century fox" |
Name the M939 series with M809 series of m817 and M39 series of m51 | CREATE TABLE table_name_54 (m939_series VARCHAR, m809_series VARCHAR, m39_series VARCHAR) | SELECT m939_series FROM table_name_54 WHERE m809_series = "m817" AND m39_series = "m51" |
Name the M809 seris with M939 series of M931/932 | CREATE TABLE table_name_88 (m809_series VARCHAR, m939_series VARCHAR) | SELECT m809_series FROM table_name_88 WHERE m939_series = "m931/932" |
Name the M809 series for short wheelbase and M939 series of M931/932 | CREATE TABLE table_name_76 (m809_series VARCHAR, wheelbase VARCHAR, m939_series VARCHAR) | SELECT m809_series FROM table_name_76 WHERE wheelbase = "short" AND m939_series = "m931/932" |
Name the type with M809 series of m814 | CREATE TABLE table_name_16 (type VARCHAR, m809_series VARCHAR) | SELECT type FROM table_name_16 WHERE m809_series = "m814" |
Name the M939 series for short wheelbase and M809 series of m817 | CREATE TABLE table_name_95 (m939_series VARCHAR, wheelbase VARCHAR, m809_series VARCHAR) | SELECT m939_series FROM table_name_95 WHERE wheelbase = "short" AND m809_series = "m817" |
Name the M939 series for short wheelbase and M809 series of m817 | CREATE TABLE table_name_84 (m939_series VARCHAR, m809_series VARCHAR, wheelbase VARCHAR) | SELECT m939_series FROM table_name_84 WHERE m809_series = "m817" AND wheelbase = "short" |
Who was the opponent at the game with a result of W 38-14? | CREATE TABLE table_name_92 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_92 WHERE result = "w 38-14" |
What was the time of the game that had an NFL recap and a result of W 22–16? | CREATE TABLE table_name_2 (time VARCHAR, nfl_recap VARCHAR, result VARCHAR) | SELECT time FROM table_name_2 WHERE nfl_recap = "recap" AND result = "w 22–16" |
what year was cryptogramophon released | CREATE TABLE table_name_11 (year VARCHAR, label VARCHAR) | SELECT year FROM table_name_11 WHERE label = "cryptogramophon" |
Manufacturer of honda, and a Rank of 8 had what highest wins? | CREATE TABLE table_name_71 (wins INTEGER, manufacturer VARCHAR, rank VARCHAR) | SELECT MAX(wins) FROM table_name_71 WHERE manufacturer = "honda" AND rank = 8 |
Points larger than 108, and a Wins of 0, and a Rank smaller than 8, and a Manufacturer of honda is what rider? | CREATE TABLE table_name_64 (rider VARCHAR, manufacturer VARCHAR, rank VARCHAR, points VARCHAR, wins VARCHAR) | SELECT rider FROM table_name_64 WHERE points > 108 AND wins = 0 AND rank < 8 AND manufacturer = "honda" |
Rider of stéphane mertens had what lowest points? | CREATE TABLE table_name_84 (points INTEGER, rider VARCHAR) | SELECT MIN(points) FROM table_name_84 WHERE rider = "stéphane mertens" |
Wins of 0, and a Rank larger than 6, and a Manufacturer of kawasaki, and a Rider of massimo broccoli involved what highest points? | CREATE TABLE table_name_18 (points INTEGER, rider VARCHAR, manufacturer VARCHAR, wins VARCHAR, rank VARCHAR) | SELECT MAX(points) FROM table_name_18 WHERE wins = 0 AND rank > 6 AND manufacturer = "kawasaki" AND rider = "massimo broccoli" |
Points of 26, and a Rank smaller than 27 had what sum of wins? | CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, rank VARCHAR) | SELECT SUM(wins) FROM table_name_82 WHERE points = 26 AND rank < 27 |
what pitcher scored 4 | CREATE TABLE table_name_63 (ret_number VARCHAR, records VARCHAR) | SELECT ret_number FROM table_name_63 WHERE records = "4" |
What was the rank for karen frohner with under 1266 points? | CREATE TABLE table_name_81 (rank INTEGER, name VARCHAR, points VARCHAR) | SELECT AVG(rank) FROM table_name_81 WHERE name = "karen frohner" AND points < 1266 |
What Games covered had a round of divisional finals? | CREATE TABLE table_name_41 (games_covered VARCHAR, round VARCHAR) | SELECT games_covered FROM table_name_41 WHERE round = "divisional finals" |
What is the number of Apps for Internazionale Club of Brazil? | CREATE TABLE table_name_69 (apps VARCHAR, national_team VARCHAR, club VARCHAR) | SELECT COUNT(apps) FROM table_name_69 WHERE national_team = "brazil" AND club = "internazionale" |
In what Season does the Internazionale Club have more than 2 Apps? | CREATE TABLE table_name_90 (season VARCHAR, apps VARCHAR, club VARCHAR) | SELECT season FROM table_name_90 WHERE apps > 2 AND club = "internazionale" |
For which group was Kim nominated in 2010 for Best International Actress? | CREATE TABLE table_name_61 (group VARCHAR, year VARCHAR, award VARCHAR) | SELECT group FROM table_name_61 WHERE year = 2010 AND award = "best international actress" |
What was the result for Thirst in 2010 at the Green Globe Film Awards? | CREATE TABLE table_name_91 (result VARCHAR, group VARCHAR, film_series VARCHAR, year VARCHAR) | SELECT result FROM table_name_91 WHERE film_series = "thirst" AND year = 2010 AND group = "green globe film awards" |
What is the number of years that Kim was nominated at the Sitges Film Festival? | CREATE TABLE table_name_78 (year VARCHAR, group VARCHAR) | SELECT COUNT(year) FROM table_name_78 WHERE group = "sitges film festival" |
What is the average year in which Kim was nominated for Thirst as Best Actress at the Baeksang Arts Awards? | CREATE TABLE table_name_92 (year INTEGER, group VARCHAR, award VARCHAR, result VARCHAR, film_series VARCHAR) | SELECT AVG(year) FROM table_name_92 WHERE result = "nominated" AND film_series = "thirst" AND award = "best actress" AND group = "baeksang arts awards" |
Which group nominated Kim in years before 2010 for Thirst? | CREATE TABLE table_name_66 (group VARCHAR, year VARCHAR, film_series VARCHAR) | SELECT group FROM table_name_66 WHERE year < 2010 AND film_series = "thirst" |
What is the highest year that Kim was nominated for Over the Rainbow? | CREATE TABLE table_name_92 (year INTEGER, film_series VARCHAR) | SELECT MAX(year) FROM table_name_92 WHERE film_series = "over the rainbow" |
Which City has a State of massachusetts, and a School of northeastern university? | CREATE TABLE table_name_59 (city VARCHAR, state VARCHAR, school VARCHAR) | SELECT city FROM table_name_59 WHERE state = "massachusetts" AND school = "northeastern university" |
Which City has a Colony Name of northeastern crescent colony? | CREATE TABLE table_name_52 (city VARCHAR, colony_name VARCHAR) | SELECT city FROM table_name_52 WHERE colony_name = "northeastern crescent colony" |
Which Colony Name is in west virginia? | CREATE TABLE table_name_82 (colony_name VARCHAR, state VARCHAR) | SELECT colony_name FROM table_name_82 WHERE state = "west virginia" |
Which Colony Name was Founded on january 19, 2012? | CREATE TABLE table_name_1 (colony_name VARCHAR, date_founded VARCHAR) | SELECT colony_name FROM table_name_1 WHERE date_founded = "january 19, 2012" |
What position does the player from the MLS New England Revolution team hold? | CREATE TABLE table_name_35 (position VARCHAR, mls_team VARCHAR) | SELECT position FROM table_name_35 WHERE mls_team = "new england revolution" |
Which MLS team had a pick number of 32? | CREATE TABLE table_name_3 (mls_team VARCHAR, pick__number VARCHAR) | SELECT mls_team FROM table_name_3 WHERE pick__number = 32 |
What is the pick number for the player Chris Gomez? | CREATE TABLE table_name_75 (pick__number INTEGER, player VARCHAR) | SELECT SUM(pick__number) FROM table_name_75 WHERE player = "chris gomez" |
Which position is the MLS team, Los Angeles Galaxy in? | CREATE TABLE table_name_90 (position VARCHAR, mls_team VARCHAR) | SELECT position FROM table_name_90 WHERE mls_team = "los angeles galaxy" |
Who is the rookie goalkeeper Rob Scherr who played before week 6? | CREATE TABLE table_name_5 (rookie VARCHAR, goalkeeper VARCHAR, week VARCHAR) | SELECT rookie FROM table_name_5 WHERE goalkeeper = "rob scherr" AND week < 6 |
Who is the rookie goalkeeper Mike Gabel? | CREATE TABLE table_name_70 (rookie VARCHAR, goalkeeper VARCHAR) | SELECT rookie FROM table_name_70 WHERE goalkeeper = "mike gabel" |
What was the lowest week in the month of August against Andrew Combs? | CREATE TABLE table_name_60 (week INTEGER, month VARCHAR, offensive VARCHAR) | SELECT MIN(week) FROM table_name_60 WHERE month = "august" AND offensive = "andrew combs" |
Who was the rookie that played week 6? | CREATE TABLE table_name_59 (rookie VARCHAR, week VARCHAR) | SELECT rookie FROM table_name_59 WHERE week = 6 |
What were the opponents from the April 13? | CREATE TABLE table_name_6 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_6 WHERE date = "april 13" |
What is the opponent from April 19? | CREATE TABLE table_name_35 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_35 WHERE date = "april 19" |
What was the series standing after game 1? | CREATE TABLE table_name_5 (series VARCHAR, game VARCHAR) | SELECT series FROM table_name_5 WHERE game = 1 |
What is the example in English for a tone of mid rising-falling? | CREATE TABLE table_name_1 (example_meaning_in_english VARCHAR, tone VARCHAR) | SELECT example_meaning_in_english FROM table_name_1 WHERE tone = "mid rising-falling" |
What example in English has a Standard Thai of ผ่า? | CREATE TABLE table_name_49 (example_meaning_in_english VARCHAR, standard_thai VARCHAR) | SELECT example_meaning_in_english FROM table_name_49 WHERE standard_thai = "ผ่า" |
Which tone has a Standard Thai at ปลา? | CREATE TABLE table_name_65 (tone VARCHAR, standard_thai VARCHAR) | SELECT tone FROM table_name_65 WHERE standard_thai = "ปลา" |
Which tone goes with Phonetic of [pʰaː˥˥]? | CREATE TABLE table_name_32 (tone VARCHAR, phonetic VARCHAR) | SELECT tone FROM table_name_32 WHERE phonetic = "[pʰaː˥˥]" |
What is the phonetic when the standard thai is ผ่า? | CREATE TABLE table_name_88 (phonetic VARCHAR, standard_thai VARCHAR) | SELECT phonetic FROM table_name_88 WHERE standard_thai = "ผ่า" |
What is the phonemic when the phonetic is [pʰaː˥˥]? | CREATE TABLE table_name_42 (phonemic VARCHAR, phonetic VARCHAR) | SELECT phonemic FROM table_name_42 WHERE phonetic = "[pʰaː˥˥]" |
What is the s default argument without a pseudorandom number generation and no eval function? | CREATE TABLE table_name_37 (s_default_argument VARCHAR, pseudorandom_number_generation VARCHAR, eval_function VARCHAR) | SELECT s_default_argument FROM table_name_37 WHERE pseudorandom_number_generation = "no" AND eval_function = "no" |
What is the lambda function without a pseudorandom number generation, no s default argument, no functions, and no eval function? | CREATE TABLE table_name_10 (lambda_functions VARCHAR, eval_function VARCHAR, functions VARCHAR, pseudorandom_number_generation VARCHAR, s_default_argument VARCHAR) | SELECT lambda_functions FROM table_name_10 WHERE pseudorandom_number_generation = "no" AND s_default_argument = "no" AND functions = "no" AND eval_function = "no" |
In what Venue was Surrey the Opposition in the 2nd Wicket? | CREATE TABLE table_name_45 (venue VARCHAR, opposition VARCHAR, wicket VARCHAR) | SELECT venue FROM table_name_45 WHERE opposition = "surrey" AND wicket = "2nd" |
In what Wicket in the City of Eastbourne with a Score of less than 368? | CREATE TABLE table_name_60 (wicket VARCHAR, score VARCHAR, city VARCHAR) | SELECT wicket FROM table_name_60 WHERE score < 368 AND city = "eastbourne" |
Which game took place April 6? | CREATE TABLE table_name_87 (game VARCHAR, april VARCHAR) | SELECT game FROM table_name_87 WHERE april = 6 |
How many Attendance in a match which scores 0:0 - 4:1 (pen) | CREATE TABLE table_name_98 (attendance INTEGER, score VARCHAR) | SELECT AVG(attendance) FROM table_name_98 WHERE score = "0:0 - 4:1 (pen)" |
Which League that has no playoffs in the Year of 2008–09? | CREATE TABLE table_name_17 (league VARCHAR, play_off VARCHAR, year VARCHAR) | SELECT league FROM table_name_17 WHERE play_off = "–" AND year = "2008–09" |
Which Play-Off has Events of –, and a Season of a-6? | CREATE TABLE table_name_84 (play_off VARCHAR, events VARCHAR, season VARCHAR) | SELECT play_off FROM table_name_84 WHERE events = "–" AND season = "a-6" |
Which Season has a Year of 2005–06? | CREATE TABLE table_name_63 (season VARCHAR, year VARCHAR) | SELECT season FROM table_name_63 WHERE year = "2005–06" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.