question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Which county has a % (2040) larger than 1.8, a % (2000) smaller than 4.1, a % (1960) smaller than 3.2, and is ranked 13?
columns: - name: county type: VARCHAR - name: rank type: VARCHAR - name: _percentage__1960_ type: VARCHAR - name: _percentage__2040_ type: VARCHAR - name: _percentage__2000_ type: VARCHAR table: table_name_82
SELECT county FROM table_name_82 WHERE _percentage__2040_ > 1.8 AND _percentage__2000_ < 4.1 AND _percentage__1960_ < 3.2 AND rank = "13"
What's the FCC info with a Frequency MHz thats smaller than 100.3 and a City of License as Lowville, NY?
columns: - name: fcc_info type: VARCHAR - name: frequency_mhz type: VARCHAR - name: city_of_license type: VARCHAR table: table_name_85
SELECT fcc_info FROM table_name_85 WHERE frequency_mhz < 100.3 AND city_of_license = "lowville, ny"
Which points classification was used in stage 15?
columns: - name: points_classification type: VARCHAR - name: stage type: VARCHAR table: table_name_54
SELECT points_classification FROM table_name_54 WHERE stage = "15"
Which Country has a Host of miguel esteban?
columns: - name: country type: VARCHAR - name: host type: VARCHAR table: table_name_18
SELECT country FROM table_name_18 WHERE host = "miguel esteban"
Which departments have M.Phil(Maths)?
columns: - name: department type: VARCHAR - name: qualification type: VARCHAR table: table_17384764_1
SELECT department FROM table_17384764_1 WHERE qualification = "M.Phil(Maths)"
What is the air date of the episode written by Itamar Moses?
columns: - name: original_air_date type: VARCHAR - name: written_by type: VARCHAR table: table_25356350_3
SELECT original_air_date FROM table_25356350_3 WHERE written_by = "Itamar Moses"
Name the surface for paul goldstein and date of october 2, 2006
columns: - name: surface type: VARCHAR - name: partnering type: VARCHAR - name: date type: VARCHAR table: table_name_79
SELECT surface FROM table_name_79 WHERE partnering = "paul goldstein" AND date = "october 2, 2006"
Which Year has a Qual of 144.683 and Lap larger than 27?
columns: - name: year type: VARCHAR - name: laps type: VARCHAR - name: qual type: VARCHAR table: table_name_66
SELECT year FROM table_name_66 WHERE laps > 27 AND qual = "144.683"
What is the constructor of the driver Heinz-Harald Frentzen?
columns: - name: constructor type: VARCHAR - name: driver type: VARCHAR table: table_name_50
SELECT constructor FROM table_name_50 WHERE driver = "heinz-harald frentzen"
What is the episode number of the episode that aired on August 8, 2005?
columns: - name: episode_number type: VARCHAR - name: podcast_date type: VARCHAR table: table_name_17
SELECT episode_number FROM table_name_17 WHERE podcast_date = "august 8, 2005"
What venue was the 11 September 2012 game?
columns: - name: venue type: VARCHAR - name: date type: VARCHAR table: table_name_23
SELECT venue FROM table_name_23 WHERE date = "11 september 2012"
What is the gold total for lithuania with under 2 silvers?
columns: - name: gold type: INTEGER - name: nation type: VARCHAR - name: silver type: VARCHAR table: table_name_5
SELECT SUM(gold) FROM table_name_5 WHERE nation = "lithuania" AND silver < 2
what is the height of columbia river hs?
columns: - name: height type: VARCHAR - name: last_school_college type: VARCHAR table: table_29598261_1
SELECT height FROM table_29598261_1 WHERE last_school_college = "Columbia River HS"
Which Round is the lowest one that has a Circuit of donington?
columns: - name: round type: INTEGER - name: circuit type: VARCHAR table: table_name_18
SELECT MIN(round) FROM table_name_18 WHERE circuit = "donington"
What is Place, when Weapon is "35mm fire", and when Date is "27 May 1982"?
columns: - name: place type: VARCHAR - name: weapon type: VARCHAR - name: date type: VARCHAR table: table_name_15
SELECT place FROM table_name_15 WHERE weapon = "35mm fire" AND date = "27 may 1982"
Result of l, and a Competition of 1966 asian games, and a Score of 0–1 had what date?
columns: - name: date type: VARCHAR - name: score type: VARCHAR - name: result type: VARCHAR - name: competition type: VARCHAR table: table_name_44
SELECT date FROM table_name_44 WHERE result = "l" AND competition = "1966 asian games" AND score = "0–1"
What's the earliest year anybody joined the hockey league?
columns: - name: joined_tschl type: INTEGER table: table_16384648_2
SELECT MIN(joined_tschl) FROM table_16384648_2
Which of the highest drawn has a played less than 10?
columns: - name: drawn type: INTEGER - name: played type: INTEGER table: table_name_96
SELECT MAX(drawn) FROM table_name_96 WHERE played < 10
Which type is filed under the Group Animated?
columns: - name: type type: VARCHAR - name: group type: VARCHAR table: table_name_56
SELECT type FROM table_name_56 WHERE group = "animated"
What is the 2003 statistic for general cargo?
columns: - name: product type: VARCHAR table: table_name_94
SELECT 2003 FROM table_name_94 WHERE product = "general cargo"
Which Team has a Score of 108-105 (ot)?
columns: - name: team type: VARCHAR - name: score type: VARCHAR table: table_name_9
SELECT team FROM table_name_9 WHERE score = "108-105 (ot)"
How many millions of viewers are listed when the share is 10.8?
columns: - name: uk_viewers__million_ type: VARCHAR - name: share___percentage_ type: VARCHAR table: table_29574579_1
SELECT uk_viewers__million_ FROM table_29574579_1 WHERE share___percentage_ = "10.8"
What is the area in acres (ha) for the park bald eagle state park?
columns: - name: area_in_acres__ha_ type: VARCHAR - name: park_name type: VARCHAR table: table_name_20
SELECT area_in_acres__ha_ FROM table_name_20 WHERE park_name = "bald eagle state park"
What happened on 2009-09-05?
columns: - name: circumstances type: VARCHAR - name: date type: VARCHAR table: table_name_93
SELECT circumstances FROM table_name_93 WHERE date = "2009-09-05"
Marcell Jansen with a transfer window of summer, and of transfer as type is from what nation?
columns: - name: nat type: VARCHAR - name: name type: VARCHAR - name: transfer_window type: VARCHAR - name: type type: VARCHAR table: table_name_15
SELECT nat FROM table_name_15 WHERE transfer_window = "summer" AND type = "transfer" AND name = "marcell jansen"
What city in the Citrus Bowl aired on ABC?
columns: - name: city type: VARCHAR - name: stadium type: VARCHAR - name: television type: VARCHAR table: table_16046689_29
SELECT city FROM table_16046689_29 WHERE stadium = "Citrus Bowl" AND television = "ABC"
What is the total decile in the area of Normanby with a roller smaller than 157?
columns: - name: decile type: INTEGER - name: area type: VARCHAR - name: roll type: VARCHAR table: table_name_99
SELECT SUM(decile) FROM table_name_99 WHERE area = "normanby" AND roll < 157
What rank does the Singapore Cup of 0 (1) have?
columns: - name: rank type: INTEGER - name: singapore_cup type: VARCHAR table: table_name_87
SELECT MAX(rank) FROM table_name_87 WHERE singapore_cup = "0 (1)"
How many times is keauna mclaughlin / rockne brubaker ranked?
columns: - name: rank type: VARCHAR - name: name type: VARCHAR table: table_23938357_6
SELECT COUNT(rank) FROM table_23938357_6 WHERE name = "Keauna McLaughlin / Rockne Brubaker"
Which Score has a To par of +1 in sweden?
columns: - name: score type: VARCHAR - name: to_par type: VARCHAR - name: country type: VARCHAR table: table_name_67
SELECT score FROM table_name_67 WHERE to_par = "+1" AND country = "sweden"
What award is featured in 1992?
columns: - name: award type: VARCHAR - name: year type: VARCHAR table: table_name_18
SELECT award FROM table_name_18 WHERE year = 1992
What is the D 46 √ with a D 43 √ with r 3?
columns: - name: "d_46_\u221A" type: VARCHAR - name: "d_43_\u221A" type: VARCHAR table: table_name_2
SELECT d_46_√ FROM table_name_2 WHERE d_43_√ = "r 3"
What is the State, when the year First elected is 1966, and when the Member is Alan Jarman?
columns: - name: state type: VARCHAR - name: first_elected type: VARCHAR - name: member type: VARCHAR table: table_name_13
SELECT state FROM table_name_13 WHERE first_elected = "1966" AND member = "alan jarman"
what is the averaging time when the regulatory citation is 40 cfr 50.4(b)?
columns: - name: averaging_time type: VARCHAR - name: regulatory_citation type: VARCHAR table: table_name_53
SELECT averaging_time FROM table_name_53 WHERE regulatory_citation = "40 cfr 50.4(b)"
Who's the Socialist Labor ticket with a Republican ticket of cuthbert w. pound?
columns: - name: socialist_labor_ticket type: VARCHAR - name: republican_ticket type: VARCHAR table: table_name_49
SELECT socialist_labor_ticket FROM table_name_49 WHERE republican_ticket = "cuthbert w. pound"
What is the smallest crowd at victoria park?
columns: - name: crowd type: INTEGER - name: venue type: VARCHAR table: table_name_22
SELECT MIN(crowd) FROM table_name_22 WHERE venue = "victoria park"
What is the bore of the boat howitzers with a 12-pdr heavy designation?
columns: - name: bore type: VARCHAR - name: designation type: VARCHAR table: table_name_8
SELECT bore FROM table_name_8 WHERE designation = "12-pdr heavy"
What's the game with an attendance of 71,962?
columns: - name: game type: INTEGER - name: attendance type: VARCHAR table: table_name_53
SELECT MIN(game) FROM table_name_53 WHERE attendance = 71 OFFSET 962
What was the final score of a baseball game that happened before 2005?
columns: - name: final_score type: VARCHAR - name: sport type: VARCHAR - name: year type: VARCHAR table: table_name_41
SELECT final_score FROM table_name_41 WHERE sport = "baseball" AND year < 2005
What is the highest number of losses for Presidente Hayes, when the draws were more than 4?
columns: - name: losses type: INTEGER - name: team type: VARCHAR - name: draws type: VARCHAR table: table_name_61
SELECT MAX(losses) FROM table_name_61 WHERE team = "presidente hayes" AND draws > 4
What was the score for the April 12 game?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_73
SELECT score FROM table_name_73 WHERE date = "april 12"
What ran has noel patterson as the rider?
columns: - name: rank type: VARCHAR - name: rider type: VARCHAR table: table_name_40
SELECT rank FROM table_name_40 WHERE rider = "noel patterson"
How many nominee's had a vote to evict percentage of 3.92%
columns: - name: nominee type: VARCHAR - name: vote_to_evict type: VARCHAR table: table_15162479_8
SELECT COUNT(nominee) FROM table_15162479_8 WHERE vote_to_evict = "3.92%"
Name the record for verizon center 20,173
columns: - name: record type: VARCHAR - name: location_attendance type: VARCHAR table: table_17288845_8
SELECT record FROM table_17288845_8 WHERE location_attendance = "Verizon Center 20,173"
at what location is the last flew on 11 june 2000
columns: - name: location type: VARCHAR - name: last_flew type: VARCHAR table: table_1997759_1
SELECT location FROM table_1997759_1 WHERE last_flew = "11 June 2000"
Name the position for nhl team being los angeles kings
columns: - name: position type: VARCHAR - name: nhl_team type: VARCHAR table: table_1965650_3
SELECT position FROM table_1965650_3 WHERE nhl_team = "Los Angeles Kings"
What is the location of a1 women's - handball?
columns: - name: location type: VARCHAR - name: leagues type: VARCHAR table: table_name_61
SELECT location FROM table_name_61 WHERE leagues = "a1 women's - handball"
who are the candidates for district new york 10?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_2668347_14
SELECT candidates FROM table_2668347_14 WHERE district = "New York 10"
What is the money list rank for player Doug Barron?
columns: - name: money_list_rank type: INTEGER - name: player type: VARCHAR table: table_29504351_2
SELECT MAX(money_list_rank) FROM table_29504351_2 WHERE player = "Doug Barron"
What is the lowest attendance for a game before 10 weeks on November 12, 1967
columns: - name: attendance type: INTEGER - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_37
SELECT MIN(attendance) FROM table_name_37 WHERE week < 10 AND date = "november 12, 1967"
Which locomotive type has a status in static display
columns: - name: locomotive_type type: VARCHAR - name: status type: VARCHAR table: table_15827397_1
SELECT locomotive_type FROM table_15827397_1 WHERE status = "Static display"
What was McCain's vote when Obama had 48.35%
columns: - name: mccain_number type: INTEGER - name: obama_percentage type: VARCHAR table: table_20722805_1
SELECT MIN(mccain_number) FROM table_20722805_1 WHERE obama_percentage = "48.35%"
Who was the origianal south korean performer when Adebayo Bolaji performed in Manchester?
columns: - name: original_south_korean_performer type: VARCHAR - name: original_manchester_performer type: VARCHAR table: table_22460085_1
SELECT original_south_korean_performer FROM table_22460085_1 WHERE original_manchester_performer = "Adebayo Bolaji"
What was John Fought's score?
columns: - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_96
SELECT score FROM table_name_96 WHERE player = "john fought"
Which location held the bout that led to a 4-3 record?
columns: - name: location type: VARCHAR - name: record type: VARCHAR table: table_name_19
SELECT location FROM table_name_19 WHERE record = "4-3"
Which Award Ceremony has a Nominee of sarah travis, and a Category of the best orchestrations?
columns: - name: award_ceremony type: VARCHAR - name: nominee type: VARCHAR - name: category type: VARCHAR table: table_name_87
SELECT award_ceremony FROM table_name_87 WHERE nominee = "sarah travis" AND category = "best orchestrations"
How many players had an Att-Cmp-Int of 143–269–16, and an efficiency of less than 116.9?
columns: - name: avg_g type: VARCHAR - name: att_cmp_int type: VARCHAR - name: effic type: VARCHAR table: table_name_88
SELECT COUNT(avg_g) FROM table_name_88 WHERE att_cmp_int = "143–269–16" AND effic < 116.9
What is the Lane of the swimmer from Uzbekistan in Heat 1?
columns: - name: lane type: VARCHAR - name: heat type: VARCHAR - name: nationality type: VARCHAR table: table_name_88
SELECT COUNT(lane) FROM table_name_88 WHERE heat = 1 AND nationality = "uzbekistan"
What is the lowest number of the player with a hometown of Bellwood, IL?
columns: - name: number type: INTEGER - name: hometown type: VARCHAR table: table_name_90
SELECT MIN(number) FROM table_name_90 WHERE hometown = "bellwood, il"
What was the status of the series that was run by tv channel Mediacorp tv12 Suria?
columns: - name: status type: VARCHAR - name: television_channel type: VARCHAR table: table_27469019_2
SELECT status FROM table_27469019_2 WHERE television_channel = "MediaCorp TV12 Suria"
Name the number of Earnings per share (Β’) which has a Net profit (US $m) larger than 66, and a Year to April smaller than 2010?
columns: - name: earnings_per_share__ type: VARCHAR - name: net_profit__us_$m_ type: VARCHAR - name: year_to_april type: VARCHAR table: table_name_38
SELECT COUNT(earnings_per_share__) AS Β’_ FROM table_name_38 WHERE net_profit__us_$m_ > 66 AND year_to_april < 2010
What is the College of the Pick from Denver Broncos?
columns: - name: college type: VARCHAR - name: team type: VARCHAR table: table_name_47
SELECT college FROM table_name_47 WHERE team = "denver broncos"
What is Player, when Score is less than 69, and when Country is "United States"?
columns: - name: player type: VARCHAR - name: score type: VARCHAR - name: country type: VARCHAR table: table_name_70
SELECT player FROM table_name_70 WHERE score < 69 AND country = "united states"
What is the lowest number drawn with less than 2 lost?
columns: - name: drawn type: INTEGER - name: lost type: INTEGER table: table_name_36
SELECT MIN(drawn) FROM table_name_36 WHERE lost < 2
What is every institution with the nickname of Quakers?
columns: - name: institution type: VARCHAR - name: nickname type: VARCHAR table: table_261954_1
SELECT institution FROM table_261954_1 WHERE nickname = "Quakers"
Which 2012 has a 2007 of 0 / 4?
columns: - name: Id type: VARCHAR table: table_name_8
SELECT 2012 FROM table_name_8 WHERE 2007 = "0 / 4"
What was the final episode credited of 187?
columns: - name: final_episode type: VARCHAR - name: episodes_credited type: VARCHAR table: table_name_72
SELECT final_episode FROM table_name_72 WHERE episodes_credited = 187
How many mystic arte have hisui (jadeite) hearts 1 as the character?
columns: - name: mystic_arte type: VARCHAR - name: character type: VARCHAR table: table_28178595_2
SELECT COUNT(mystic_arte) FROM table_28178595_2 WHERE character = "Hisui (Jadeite) Hearts 1"
What is the constructor of the race with Juan Manuel Fangio as the fastest lap and Giuseppe Farina as the winning driver?
columns: - name: constructor type: VARCHAR - name: fastest_lap type: VARCHAR - name: winning_driver type: VARCHAR table: table_name_26
SELECT constructor FROM table_name_26 WHERE fastest_lap = "juan manuel fangio" AND winning_driver = "giuseppe farina"
What was the score of the game that had a loss of Cox (6–2)?
columns: - name: score type: VARCHAR - name: loss type: VARCHAR table: table_name_44
SELECT score FROM table_name_44 WHERE loss = "cox (6–2)"
What is the party where the constituency is 10. Tindivanam?
columns: - name: party type: VARCHAR - name: constituency type: VARCHAR table: table_22753245_1
SELECT party FROM table_22753245_1 WHERE constituency = "10. Tindivanam"
What internet explorer has 7.89% as the safari, and 8.22% as the chrome?
columns: - name: internet_explorer type: VARCHAR - name: safari type: VARCHAR - name: chrome type: VARCHAR table: table_name_31
SELECT internet_explorer FROM table_name_31 WHERE safari = "7.89%" AND chrome = "8.22%"
What is the name when Windows is partial?
columns: - name: name type: VARCHAR - name: windows type: VARCHAR table: table_name_55
SELECT name FROM table_name_55 WHERE windows = "partial"
Marion Buisson with a 4.00 of o had what result?
columns: - name: result type: VARCHAR - name: name type: VARCHAR table: table_name_89
SELECT result FROM table_name_89 WHERE 400 = "o" AND name = "marion buisson"
What i the total number of championships less than 2, and a league cup larger than 1?
columns: - name: total type: VARCHAR - name: championship type: VARCHAR - name: league_cup type: VARCHAR table: table_name_9
SELECT COUNT(total) FROM table_name_9 WHERE championship < 2 AND league_cup > 1
Chassis model Scania K360ua has what minimum number in fleet?
columns: - name: number_in_fleet type: INTEGER - name: chassis_model type: VARCHAR table: table_1425948_1
SELECT MIN(number_in_fleet) FROM table_1425948_1 WHERE chassis_model = "Scania K360UA"
How many teams participated (maximum) when Cornish All Blacks Pertemps Bees were relegated to the league?
columns: - name: teams type: INTEGER - name: relegated_to_league type: VARCHAR table: table_23927423_4
SELECT MAX(teams) FROM table_23927423_4 WHERE relegated_to_league = "Cornish All Blacks Pertemps Bees"
Which Driver and passenger have a bike number of less than 4 with zabel -vmc equipment?
columns: - name: driver___passenger type: VARCHAR - name: bike_no type: VARCHAR - name: equipment type: VARCHAR table: table_name_9
SELECT driver___passenger FROM table_name_9 WHERE bike_no < 4 AND equipment = "zabel -vmc"
What is the type of Kuang-Hsing?
columns: - name: type type: VARCHAR - name: name__wade_giles_ type: VARCHAR table: table_name_71
SELECT type FROM table_name_71 WHERE name__wade_giles_ = "kuang-hsing"
What is the First Aligned date in 1614?
columns: - name: first_aligned_day type: VARCHAR - name: date type: VARCHAR table: table_name_67
SELECT first_aligned_day FROM table_name_67 WHERE date = "1614"
Which County has Precincts of 90/90?
columns: - name: county type: VARCHAR - name: precincts type: VARCHAR table: table_name_51
SELECT county FROM table_name_51 WHERE precincts = "90/90"
How many gold medals for the school with less than 1 total?
columns: - name: gold_medals type: VARCHAR - name: total_medals type: INTEGER table: table_name_43
SELECT COUNT(gold_medals) FROM table_name_43 WHERE total_medals < 1
What is the run 2 of the athlete from Australia with a run 1 less than 53.75?
columns: - name: run_2 type: VARCHAR - name: country type: VARCHAR - name: run_1 type: VARCHAR table: table_name_73
SELECT run_2 FROM table_name_73 WHERE country = "australia" AND run_1 < 53.75
What is the average Jianshu higher than rank 2, with a Qiangshu smaller than 9.85?
columns: - name: jianshu type: INTEGER - name: rank type: VARCHAR - name: qiangshu type: VARCHAR table: table_name_29
SELECT AVG(jianshu) FROM table_name_29 WHERE rank < 2 AND qiangshu < 9.85
What is the date where the record was 18–12?
columns: - name: date type: VARCHAR - name: record type: VARCHAR table: table_27700530_10
SELECT date FROM table_27700530_10 WHERE record = "18–12"
What's the American pronunciation when the Australian is Ι™Κ‰?
columns: - name: american type: VARCHAR - name: australian type: VARCHAR table: table_name_11
SELECT american FROM table_name_11 WHERE australian = "Ι™Κ‰"
What is the last episode which has segment d as blown glass?
columns: - name: episode type: INTEGER - name: segment_d type: VARCHAR table: table_15187735_4
SELECT MAX(episode) FROM table_15187735_4 WHERE segment_d = "Blown Glass"
What is the number for D 44 √ when D 47 √ is r 7?
columns: - name: "d_44_\u221A" type: VARCHAR - name: "d_47_\u221A" type: VARCHAR table: table_name_19
SELECT d_44_√ FROM table_name_19 WHERE d_47_√ = "r 7"
When the grid is under 5 and justin wilson is driving for the team mi-jack conquest racing, what's the highest number of laps driven?
columns: - name: laps type: INTEGER - name: grid type: VARCHAR - name: team type: VARCHAR - name: driver type: VARCHAR table: table_name_65
SELECT MAX(laps) FROM table_name_65 WHERE team = "mi-jack conquest racing" AND driver = "justin wilson" AND grid < 5
What is the high point total associated with a difference of 1 and 0 draws?
columns: - name: points type: INTEGER - name: difference type: VARCHAR - name: drawn type: VARCHAR table: table_name_88
SELECT MAX(points) FROM table_name_88 WHERE difference = "1" AND drawn = 0
What surface was the April 24, 2003 match played on?
columns: - name: surface type: VARCHAR - name: date type: VARCHAR table: table_name_88
SELECT surface FROM table_name_88 WHERE date = "april 24, 2003"
What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0?
columns: - name: season type: INTEGER - name: wins type: VARCHAR - name: podiums type: VARCHAR - name: races type: VARCHAR table: table_name_65
SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0
What tie number featured Chelsea as the home team?
columns: - name: tie_no type: INTEGER - name: home_team type: VARCHAR table: table_17736890_5
SELECT MIN(tie_no) FROM table_17736890_5 WHERE home_team = "Chelsea"
When the attendance was 3188 what was the score?
columns: - name: score type: VARCHAR - name: attendance type: VARCHAR table: table_name_78
SELECT score FROM table_name_78 WHERE attendance = 3188
David James Elliott directed which episode number within the series?
columns: - name: no_in_series type: VARCHAR - name: directed_by type: VARCHAR table: table_228973_11
SELECT no_in_series FROM table_228973_11 WHERE directed_by = "David James Elliott"
Who won a medal at the 2008 Beijing Olympics?
columns: - name: name type: VARCHAR - name: games type: VARCHAR table: table_name_33
SELECT name FROM table_name_33 WHERE games = "2008 beijing"
Name the record for golden state
columns: - name: record type: VARCHAR - name: team type: VARCHAR table: table_23186738_6
SELECT record FROM table_23186738_6 WHERE team = "Golden State"
What was the earliest Round for Central Florida?
columns: - name: round type: INTEGER - name: team type: VARCHAR table: table_name_32
SELECT MIN(round) FROM table_name_32 WHERE team = "central florida"
Record of 42–16–8, and a March larger than 5 has what average points?
columns: - name: points type: INTEGER - name: record type: VARCHAR - name: march type: VARCHAR table: table_name_95
SELECT AVG(points) FROM table_name_95 WHERE record = "42–16–8" AND march > 5
Which Commercial Operation has both a Gross Capacity of 417 mw and an Electricity Grid 27.12.1971?
columns: - name: commercial_operation type: VARCHAR - name: gross_capacity type: VARCHAR - name: electricity_grid type: VARCHAR table: table_name_48
SELECT commercial_operation FROM table_name_48 WHERE gross_capacity = "417 mw" AND electricity_grid = "27.12.1971"