question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Which name has a Decile of 5, and an Area of tauranga?
columns: - name: name type: VARCHAR - name: decile type: VARCHAR - name: area type: VARCHAR table: table_name_96
SELECT name FROM table_name_96 WHERE decile = 5 AND area = "tauranga"
What premieres had a finale on May 25, 2004?
columns: - name: premiere type: VARCHAR - name: finale type: VARCHAR table: table_175980_2
SELECT premiere FROM table_175980_2 WHERE finale = "May 25, 2004"
who was the voice actor when the species is hedgehog?
columns: - name: voice_actor type: VARCHAR - name: species type: VARCHAR table: table_26615633_1
SELECT voice_actor FROM table_26615633_1 WHERE species = "Hedgehog"
If the latitude is 77°28′n, what is the longitude?
columns: - name: longitude type: VARCHAR - name: latitude type: VARCHAR table: table_name_27
SELECT longitude FROM table_name_27 WHERE latitude = "77°28′n"
Which Time has a Grid of 19?
columns: - name: time type: VARCHAR - name: grid type: VARCHAR table: table_name_59
SELECT time FROM table_name_59 WHERE grid = 19
What was the audience for Episode 21?
columns: - name: audience type: VARCHAR - name: episode type: VARCHAR table: table_name_36
SELECT audience FROM table_name_36 WHERE episode = "21"
What winning team has volleyball as the sport?
columns: - name: winning_team type: VARCHAR - name: sport type: VARCHAR table: table_name_91
SELECT winning_team FROM table_name_91 WHERE sport = "volleyball"
Which away team has a tie number of 14?
columns: - name: away_team type: VARCHAR - name: tie_no type: VARCHAR table: table_name_62
SELECT away_team FROM table_name_62 WHERE tie_no = "14"
In 1924/25, who was in the playoffs?
columns: - name: playoffs type: VARCHAR - name: year type: VARCHAR table: table_name_27
SELECT playoffs FROM table_name_27 WHERE year = "1924/25"
Name the 2011 for 2010 of olympic games
columns: - name: Id type: VARCHAR table: table_name_64
SELECT 2011 FROM table_name_64 WHERE 2010 = "olympic games"
What was the overall pick for the player who was a guard and had a round less than 9?
columns: - name: overall type: INTEGER - name: position type: VARCHAR - name: round type: VARCHAR table: table_name_4
SELECT AVG(overall) FROM table_name_4 WHERE position = "guard" AND round < 9
What is Ludo Peeters' team classification?
columns: - name: team_classification type: VARCHAR - name: winner type: VARCHAR table: table_name_74
SELECT team_classification FROM table_name_74 WHERE winner = "ludo peeters"
What was the weight in kg on the day of the race at Ranvet Stakes?
columns: - name: weight__kg_ type: VARCHAR - name: race type: VARCHAR table: table_1358608_4
SELECT weight__kg_ FROM table_1358608_4 WHERE race = "Ranvet Stakes"
What is the Winning score in 1965?
columns: - name: winning_score type: VARCHAR - name: year type: VARCHAR table: table_name_90
SELECT winning_score FROM table_name_90 WHERE year = 1965
What kind of Crowd has a Ground of subiaco oval?
columns: - name: crowd type: INTEGER - name: ground type: VARCHAR table: table_name_41
SELECT SUM(crowd) FROM table_name_41 WHERE ground = "subiaco oval"
What are toranosuke takagi's average laps?
columns: - name: laps type: INTEGER - name: driver type: VARCHAR table: table_name_14
SELECT AVG(laps) FROM table_name_14 WHERE driver = "toranosuke takagi"
Who is the host in the city of Philadelphia?
columns: - name: host type: VARCHAR - name: city type: VARCHAR table: table_name_61
SELECT host FROM table_name_61 WHERE city = "philadelphia"
What is the Medal for the Player in the Light Heavyweight event?
columns: - name: medal type: VARCHAR - name: event type: VARCHAR table: table_name_25
SELECT medal FROM table_name_25 WHERE event = "light heavyweight"
What is the total number of television channels when one of the radio stations is onda madrid?
columns: - name: television_channels type: VARCHAR - name: radio_stations type: VARCHAR table: table_23143607_1
SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Onda Madrid"
What is the Type, when Callsign is "Xetam"?
columns: - name: type type: VARCHAR - name: callsign type: VARCHAR table: table_name_50
SELECT type FROM table_name_50 WHERE callsign = "xetam"
Who had the fastest lap in round 15?
columns: - name: fastest_lap type: VARCHAR - name: rd type: VARCHAR table: table_2911781_3
SELECT fastest_lap FROM table_2911781_3 WHERE rd = 15
what are all the people where the entries is peugeot sport polska
columns: - name: driver type: VARCHAR - name: entrant type: VARCHAR table: table_28046929_2
SELECT driver FROM table_28046929_2 WHERE entrant = "Peugeot Sport Polska"
Which operating system has 1GB (mobile ddr) memory (RAM)?
columns: - name: operating_system_version type: VARCHAR - name: memory___ram__ type: VARCHAR table: table_name_27
SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = "1gb (mobile ddr)"
What is the total of Goals Conceded that has Points smaller than 21 and a Lost thats smaller than 8?
columns: - name: goals_conceded type: INTEGER - name: points type: VARCHAR - name: lost type: VARCHAR table: table_name_10
SELECT SUM(goals_conceded) FROM table_name_10 WHERE points < 21 AND lost < 8
Is Upper valley middle school public or private?
columns: - name: authority type: VARCHAR - name: name type: VARCHAR table: table_name_2
SELECT authority FROM table_name_2 WHERE name = "upper valley middle school"
What are the titles of segment c for series episode is 21-08?
columns: - name: segment_c type: VARCHAR - name: series_ep type: VARCHAR table: table_15187735_21
SELECT segment_c FROM table_15187735_21 WHERE series_ep = "21-08"
What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament?
columns: - name: tournament type: VARCHAR table: table_name_36
SELECT 2008 FROM table_name_36 WHERE 2009 = "0" AND tournament = "atp tournaments won"
Which tournament had a performance of 1R in 2004 and 2R in 1998?
columns: - name: tournament type: VARCHAR table: table_name_79
SELECT tournament FROM table_name_79 WHERE 2004 = "1r" AND 1998 = "2r"
What is Co-Drivers, when Laps is greater than 196, and when Year is before 2010?
columns: - name: co_drivers type: VARCHAR - name: laps type: VARCHAR - name: year type: VARCHAR table: table_name_78
SELECT co_drivers FROM table_name_78 WHERE laps > 196 AND year < 2010
who is the opponents when the surface is clay and the date is 12 july 1992?
columns: - name: opponents type: VARCHAR - name: surface type: VARCHAR - name: date type: VARCHAR table: table_name_93
SELECT opponents FROM table_name_93 WHERE surface = "clay" AND date = "12 july 1992"
What is Notes, when App(L/C/E) is 13 (7/2/4)?
columns: - name: notes type: VARCHAR - name: app_l_c_e_ type: VARCHAR table: table_name_89
SELECT notes FROM table_name_89 WHERE app_l_c_e_ = "13 (7/2/4)"
What city is in the country of Mayotte?
columns: - name: city type: VARCHAR - name: country type: VARCHAR table: table_name_63
SELECT city FROM table_name_63 WHERE country = "mayotte"
What Rider has a Grid of 21?
columns: - name: rider type: VARCHAR - name: grid type: VARCHAR table: table_name_91
SELECT rider FROM table_name_91 WHERE grid = 21
What is the average draw number of an entrant with a time of 22:29?
columns: - name: draw type: INTEGER - name: time type: VARCHAR table: table_name_29
SELECT AVG(draw) FROM table_name_29 WHERE time = "22:29"
If the area is 66.34, what is the minimum (2010 census) population?
columns: - name: population__2010_census_ type: INTEGER - name: "area__km\xB2_" type: VARCHAR table: table_232458_1
SELECT MIN(population__2010_census_) FROM table_232458_1 WHERE area__km²_ = "66.34"
When were episodes first broadcast with jessica ennis as andrew and jacks guest?
columns: - name: first_broadcast type: VARCHAR - name: andrew_and_jacks_guest type: VARCHAR table: table_29141354_5
SELECT first_broadcast FROM table_29141354_5 WHERE andrew_and_jacks_guest = "Jessica Ennis"
What is the host in Georgia?
columns: - name: host type: VARCHAR - name: state type: VARCHAR table: table_name_51
SELECT host FROM table_name_51 WHERE state = "georgia"
Which Position has a Player of tyronn lue, and a Years in Orlando of 2003–2004?
columns: - name: position type: VARCHAR - name: player type: VARCHAR - name: years_in_orlando type: VARCHAR table: table_name_97
SELECT position FROM table_name_97 WHERE player = "tyronn lue" AND years_in_orlando = "2003–2004"
What was the time of the Kentucky Derby?
columns: - name: time type: VARCHAR - name: race type: VARCHAR table: table_name_79
SELECT time FROM table_name_79 WHERE race = "kentucky derby"
What is the total number of losses for entries that have 12 wins and a goal difference smaller than -14?
columns: - name: losses type: VARCHAR - name: wins type: VARCHAR - name: goal_difference type: VARCHAR table: table_name_37
SELECT COUNT(losses) FROM table_name_37 WHERE wins = 12 AND goal_difference < -14
What is the lowest to par of a player from australia with a score of 76-70-75-72=293?
columns: - name: to_par type: INTEGER - name: country type: VARCHAR - name: score type: VARCHAR table: table_name_96
SELECT MIN(to_par) FROM table_name_96 WHERE country = "australia" AND score = 76 - 70 - 75 - 72 = 293
What is the sum of the ranks for the film, eddie murphy raw?
columns: - name: rank type: INTEGER - name: title type: VARCHAR table: table_name_19
SELECT SUM(rank) FROM table_name_19 WHERE title = "eddie murphy raw"
What is the roll number of the school in Aramoho with a decile of 1?
columns: - name: roll type: VARCHAR - name: area type: VARCHAR - name: decile type: VARCHAR table: table_name_86
SELECT roll FROM table_name_86 WHERE area = "aramoho" AND decile = 1
Which show as previously on The Family Channel?
columns: - name: show type: VARCHAR - name: previous_network type: VARCHAR table: table_169766_13
SELECT show FROM table_169766_13 WHERE previous_network = "The Family Channel"
What is the average of all the wickets that were 27?
columns: - name: average type: VARCHAR - name: wickets type: VARCHAR table: table_28797906_3
SELECT average FROM table_28797906_3 WHERE wickets = 27
Loss of de la rosa (8–8) has what average attendance?
columns: - name: attendance type: INTEGER - name: loss type: VARCHAR table: table_name_97
SELECT AVG(attendance) FROM table_name_97 WHERE loss = "de la rosa (8–8)"
Name the least number for nello pagani
columns: - name: 'no' type: INTEGER - name: driver type: VARCHAR table: table_28578594_1
SELECT MIN(no) FROM table_28578594_1 WHERE driver = "Nello Pagani"
Who wrote the episode with the production code 2j5153?
columns: - name: written_by type: VARCHAR - name: production_code type: VARCHAR table: table_25830834_2
SELECT written_by FROM table_25830834_2 WHERE production_code = "2J5153"
Tell me the start time for december 24, 2005
columns: - name: start_time type: VARCHAR - name: date type: VARCHAR table: table_name_48
SELECT start_time FROM table_name_48 WHERE date = "december 24, 2005"
What is the team when the economy is 5.73?
columns: - name: team type: VARCHAR - name: economy type: VARCHAR table: table_27268238_5
SELECT team FROM table_27268238_5 WHERE economy = "5.73"
What is the district with the incumbent john nicholas?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_2668405_17
SELECT district FROM table_2668405_17 WHERE incumbent = "John Nicholas"
What's the total starts with more points than 1 and the driver is Nasser Al-Attiyah?
columns: - name: starts type: VARCHAR - name: driver type: VARCHAR - name: points type: VARCHAR table: table_name_47
SELECT COUNT(starts) FROM table_name_47 WHERE driver = "nasser al-attiyah" AND points > 1
What the result for the hypo-meeting tournament in 1994?
columns: - name: result type: VARCHAR - name: year type: VARCHAR - name: tournament type: VARCHAR table: table_name_81
SELECT result FROM table_name_81 WHERE year = 1994 AND tournament = "hypo-meeting"
WHich Position has a Player of david laliberte?
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_name_50
SELECT position FROM table_name_50 WHERE player = "david laliberte"
How many totals have 1 for the gold, 12 for the rank, and a sliver greater than 0?
columns: - name: total type: VARCHAR - name: silver type: VARCHAR - name: gold type: VARCHAR - name: rank type: VARCHAR table: table_name_60
SELECT COUNT(total) FROM table_name_60 WHERE gold = 1 AND rank = "12" AND silver > 0
tell me the authority that has a decile less than 6 and roll less than 65.
columns: - name: authority type: VARCHAR - name: decile type: VARCHAR - name: roll type: VARCHAR table: table_name_43
SELECT authority FROM table_name_43 WHERE decile < 6 AND roll < 65
For which Game 4, did David Boyle play in Game 3?
columns: - name: game_4 type: VARCHAR - name: game_3 type: VARCHAR table: table_name_41
SELECT game_4 FROM table_name_41 WHERE game_3 = "david boyle"
Which average Drawn has Games larger than 7?
columns: - name: drawn type: INTEGER - name: games type: INTEGER table: table_name_29
SELECT AVG(drawn) FROM table_name_29 WHERE games > 7
What would be the highest Platforms for the Centrale Tram Stop Stations?
columns: - name: platforms type: INTEGER - name: stations type: VARCHAR table: table_name_15
SELECT MAX(platforms) FROM table_name_15 WHERE stations = "centrale tram stop"
what's the dbeingtribution with grsecurity being optional and compile time buffer checks being yes
columns: - name: distribution type: VARCHAR - name: grsecurity type: VARCHAR - name: compile_time_buffer_checks type: VARCHAR table: table_1357052_6
SELECT distribution FROM table_1357052_6 WHERE grsecurity = "Optional" AND compile_time_buffer_checks = "Yes"
How big (in km2) is Persarmenia?
columns: - name: "area__km\xB2_" type: VARCHAR - name: province__ashkharh_ type: VARCHAR table: table_23887174_1
SELECT area__km²_ FROM table_23887174_1 WHERE province__ashkharh_ = "Persarmenia"
Who is the second with a lead of Sarah Macintyre (jr) Anne Laird (w)?
columns: - name: second type: VARCHAR - name: lead type: VARCHAR table: table_name_78
SELECT second FROM table_name_78 WHERE lead = "sarah macintyre (jr) anne laird (w)"
Name the total number of b winning car and bobby archer, tommy archer
columns: - name: b_winning_car type: VARCHAR - name: ss_winning_car type: VARCHAR table: table_27965906_2
SELECT COUNT(b_winning_car) FROM table_27965906_2 WHERE ss_winning_car = "Bobby Archer, Tommy Archer"
Who was the opponent when there was 117 rushing yards?
columns: - name: opponent type: VARCHAR - name: rushing_yards type: VARCHAR table: table_26108103_2
SELECT opponent FROM table_26108103_2 WHERE rushing_yards = 117
What is the player with a Span of 1998-2009?
columns: - name: player type: VARCHAR - name: span type: VARCHAR table: table_name_8
SELECT player FROM table_name_8 WHERE span = "1998-2009"
What was the 2002 dominant religion when the largest ethnic group (2002) was slovaks and type is village?
columns: - name: dominant_religion__2002_ type: VARCHAR - name: largest_ethnic_group__2002_ type: VARCHAR - name: type type: VARCHAR table: table_2562572_43
SELECT dominant_religion__2002_ FROM table_2562572_43 WHERE largest_ethnic_group__2002_ = "Slovaks" AND type = "village"
what week number was at memorial stadium?
columns: - name: week type: INTEGER - name: game_site type: VARCHAR table: table_name_53
SELECT AVG(week) FROM table_name_53 WHERE game_site = "memorial stadium"
How high is the Attendance with a Record of 29-25?
columns: - name: attendance type: INTEGER - name: record type: VARCHAR table: table_name_68
SELECT MAX(attendance) FROM table_name_68 WHERE record = "29-25"
Which week has giants stadium as the game site?
columns: - name: week type: VARCHAR - name: game_site type: VARCHAR table: table_name_57
SELECT week FROM table_name_57 WHERE game_site = "giants stadium"
Who was the opponent at the game with a loss of Sele (0-1)?
columns: - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_36
SELECT opponent FROM table_name_36 WHERE loss = "sele (0-1)"
What was the surface for Julie Halard when the final score was 6–3, 6–2?
columns: - name: surface type: VARCHAR - name: partner type: VARCHAR - name: score_in_the_final type: VARCHAR table: table_name_55
SELECT surface FROM table_name_55 WHERE partner = "julie halard" AND score_in_the_final = "6–3, 6–2"
What is the average bronze for less than 0 gold?
columns: - name: bronze type: INTEGER - name: gold type: INTEGER table: table_name_64
SELECT AVG(bronze) FROM table_name_64 WHERE gold < 0
Name the report for 6 may
columns: - name: report type: VARCHAR - name: date type: VARCHAR table: table_name_82
SELECT report FROM table_name_82 WHERE date = "6 may"
What was the record after the game against the Houston Oilers?
columns: - name: record type: VARCHAR - name: opponent type: VARCHAR table: table_name_98
SELECT record FROM table_name_98 WHERE opponent = "houston oilers"
Name the Wins which has a Class of 350cc, and a Year smaller than 1973?
columns: - name: wins type: INTEGER - name: class type: VARCHAR - name: year type: VARCHAR table: table_name_42
SELECT SUM(wins) FROM table_name_42 WHERE class = "350cc" AND year < 1973
How many times was the record 19–34
columns: - name: score type: VARCHAR - name: record type: VARCHAR table: table_23248869_8
SELECT COUNT(score) FROM table_23248869_8 WHERE record = "19–34"
Name the laid down for launched being 16 february 1934
columns: - name: laid_down type: VARCHAR - name: launched type: VARCHAR table: table_name_39
SELECT laid_down FROM table_name_39 WHERE launched = "16 february 1934"
Tell me the country for san juan
columns: - name: country type: VARCHAR - name: city type: VARCHAR table: table_name_62
SELECT country FROM table_name_62 WHERE city = "san juan"
How many players had high points in the location/attendance FedexForum 11,498 respectively?
columns: - name: high_points type: VARCHAR - name: location_attendance type: VARCHAR table: table_17323092_7
SELECT COUNT(high_points) FROM table_17323092_7 WHERE location_attendance = "FedExForum 11,498"
What is the lowest number for the University of Dublin, having and administrative panel of 3, and a Cultural and Educational panel less than 2?
columns: - name: university_of_dublin type: INTEGER - name: administrative_panel type: VARCHAR - name: cultural_and_educational_panel type: VARCHAR table: table_name_93
SELECT MIN(university_of_dublin) FROM table_name_93 WHERE administrative_panel = 3 AND cultural_and_educational_panel < 2
Name the density for 古田縣
columns: - name: density type: VARCHAR - name: traditional type: VARCHAR table: table_2013618_1
SELECT density FROM table_2013618_1 WHERE traditional = "古田縣"
What point against has tries against of 77, and a lost of 16?
columns: - name: points_against type: VARCHAR - name: tries_against type: VARCHAR - name: lost type: VARCHAR table: table_name_93
SELECT points_against FROM table_name_93 WHERE tries_against = "77" AND lost = "16"
Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes?
columns: - name: runner_s__up type: VARCHAR - name: margin_of_victory type: VARCHAR - name: tournament type: VARCHAR table: table_name_86
SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = "2 strokes" AND tournament = "mazda senior tournament players championship"
Name the total number of average for wickets more than 537, career of 1899/00-1925/26 and matches less than 211
columns: - name: average type: VARCHAR - name: matches type: VARCHAR - name: wickets type: VARCHAR - name: career type: VARCHAR table: table_name_21
SELECT COUNT(average) FROM table_name_21 WHERE wickets > 537 AND career = "1899/00-1925/26" AND matches < 211
What was the 1st leg for Team 2, Leeds United?
columns: - name: team_2 type: VARCHAR table: table_name_14
SELECT 1 AS st_leg FROM table_name_14 WHERE team_2 = "leeds united"
Name the change for english democrats
columns: - name: change type: VARCHAR - name: party type: VARCHAR table: table_name_78
SELECT change FROM table_name_78 WHERE party = "english democrats"
What is the On-air ID with the frequency of 105.9, and purpose of commercial?
columns: - name: on_air_id type: VARCHAR - name: frequency type: VARCHAR - name: purpose type: VARCHAR table: table_name_24
SELECT on_air_id FROM table_name_24 WHERE frequency = "105.9" AND purpose = "commercial"
Name the winning driver for mobilecast impul and twin ring motegi
columns: - name: winning_driver type: VARCHAR - name: winning_team type: VARCHAR - name: circuit type: VARCHAR table: table_name_98
SELECT winning_driver FROM table_name_98 WHERE winning_team = "mobilecast impul" AND circuit = "twin ring motegi"
Killeen Rate of 511.6, and a Texas Rate smaller than 314.4 is the lowest reported offenses?
columns: - name: reported_offenses type: INTEGER - name: killeen_rate type: VARCHAR - name: texas_rate type: VARCHAR table: table_name_96
SELECT MIN(reported_offenses) FROM table_name_96 WHERE killeen_rate = 511.6 AND texas_rate < 314.4
What network hosted Al Michaels, Dan Fouts and Dennis Miller in 2002?
columns: - name: network type: VARCHAR - name: year type: VARCHAR - name: play_by_play type: VARCHAR - name: color_commentator_s_ type: VARCHAR table: table_name_71
SELECT network FROM table_name_71 WHERE play_by_play = "al michaels" AND color_commentator_s_ = "dan fouts and dennis miller" AND year < 2002
What is the result for an H/A of H and a round value of R6 replay?
columns: - name: result type: VARCHAR - name: h___a type: VARCHAR - name: round type: VARCHAR table: table_name_29
SELECT result FROM table_name_29 WHERE h___a = "h" AND round = "r6 replay"
What is the largest silver with less than 0 gold?
columns: - name: silver type: INTEGER - name: gold type: INTEGER table: table_name_63
SELECT MAX(silver) FROM table_name_63 WHERE gold < 0
Which team was the home team when playing South Melbourne?
columns: - name: home_team type: VARCHAR - name: away_team type: VARCHAR table: table_name_43
SELECT home_team AS score FROM table_name_43 WHERE away_team = "south melbourne"
what is wed 25 aug when mon 23 aug is 26' 57.82 89.957mph?
columns: - name: wed_25_aug type: VARCHAR - name: mon_23_aug type: VARCHAR table: table_26986076_2
SELECT wed_25_aug FROM table_26986076_2 WHERE mon_23_aug = "26' 57.82 89.957mph"
Which year has 200 laps?
columns: - name: year type: VARCHAR - name: laps type: VARCHAR table: table_name_95
SELECT year FROM table_name_95 WHERE laps = 200
What is the quantity preserved for the serial number of mallet and simple articulated locomotives?
columns: - name: quantity_preserved type: VARCHAR - name: serial_numbers type: VARCHAR table: table_name_19
SELECT quantity_preserved FROM table_name_19 WHERE serial_numbers = "mallet and simple articulated locomotives"
What was the lowest total number of horses that has a total cattle smaller than 6274.1, and a oxen smaller than 156.5, and a bulls of 40.0, and fewer than 3377 cows?
columns: - name: total_horses type: INTEGER - name: cows type: VARCHAR - name: bulls type: VARCHAR - name: total_cattle type: VARCHAR - name: oxen type: VARCHAR table: table_name_65
SELECT MIN(total_horses) FROM table_name_65 WHERE total_cattle < 6274.1 AND oxen < 156.5 AND bulls = "40.0" AND cows < 3377
What is the average attendance for a game against Phoenix?
columns: - name: attendance type: INTEGER - name: visitor type: VARCHAR table: table_name_16
SELECT AVG(attendance) FROM table_name_16 WHERE visitor = "phoenix"
Which FCC info has a Frequency MHz of 100.7?
columns: - name: fcc_info type: VARCHAR - name: frequency_mhz type: VARCHAR table: table_name_96
SELECT fcc_info FROM table_name_96 WHERE frequency_mhz = 100.7
What year did the Grizzlies play for the UNLV team?
columns: - name: years_for_grizzlies type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_81
SELECT years_for_grizzlies FROM table_name_81 WHERE school_club_team = "unlv"