Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
33,600
<question>: What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt? <context>: CREATE TABLE table_1966992_1 (lga_name VARCHAR, census_2006_population VARCHAR, administrative_capital VARCHAR)
SELECT lga_name FROM table_1966992_1 WHERE census_2006_population > 425208.9417698913 AND administrative_capital = "Port Harcourt"
33,601
<question>: What is the administrative capital of LGA name Akuku-Toru? <context>: CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, lga_name VARCHAR)
SELECT administrative_capital FROM table_1966992_1 WHERE lga_name = "Akuku-Toru"
33,602
<question>: What is the administrative capital that has a 2006 census population of 249425? <context>: CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, census_2006_population VARCHAR)
SELECT administrative_capital FROM table_1966992_1 WHERE census_2006_population = 249425
33,603
<question>: What is the maximum 2006 census population of LGA name Opobo/Nkoro? <context>: CREATE TABLE table_1966992_1 (census_2006_population INTEGER, lga_name VARCHAR)
SELECT MAX(census_2006_population) FROM table_1966992_1 WHERE lga_name = "Opobo/Nkoro"
33,604
<question>: What's the minimal enrollment of any of the schools? <context>: CREATE TABLE table_1969577_3 (enrollment INTEGER)
SELECT MIN(enrollment) FROM table_1969577_3
33,605
<question>: When was the school whose students are nicknamed Rams founded? <context>: CREATE TABLE table_1969577_3 (founded INTEGER, nickname VARCHAR)
SELECT MAX(founded) FROM table_1969577_3 WHERE nickname = "Rams"
33,606
<question>: What's the type of the school whose students are nicknamed Chargers? <context>: CREATE TABLE table_1969577_3 (type VARCHAR, nickname VARCHAR)
SELECT type FROM table_1969577_3 WHERE nickname = "Chargers"
33,607
<question>: When was the school in Philadelphia, Pennsylvania founded? <context>: CREATE TABLE table_1969577_3 (founded VARCHAR, location VARCHAR)
SELECT founded FROM table_1969577_3 WHERE location = "Philadelphia, Pennsylvania"
33,608
<question>: What was the total number of votes in the 2005 elections? <context>: CREATE TABLE table_19698421_1 (total_votes INTEGER, year VARCHAR)
SELECT MIN(total_votes) FROM table_19698421_1 WHERE year = "2005"
33,609
<question>: How many elections had 1423 average voters per candidate? <context>: CREATE TABLE table_19698421_1 (change__percentage_points_ VARCHAR, average_voters_per_candidate VARCHAR)
SELECT COUNT(change__percentage_points_) FROM table_19698421_1 WHERE average_voters_per_candidate = 1423
33,610
<question>: How many candidates were there in the year of 1987? <context>: CREATE TABLE table_19698421_1 (number_of_candidates VARCHAR, year VARCHAR)
SELECT number_of_candidates FROM table_19698421_1 WHERE year = "1987"
33,611
<question>: What is the modified torque (lb/ft) when the standard hp n/a? <context>: CREATE TABLE table_19704392_1 (modified_torque__lb_ft_ VARCHAR, standard_hp VARCHAR)
SELECT COUNT(modified_torque__lb_ft_) FROM table_19704392_1 WHERE standard_hp = "n/a"
33,612
<question>: When the standard speed (6th gear) is 114, what is the minimum rpm? <context>: CREATE TABLE table_19704392_1 (rpm INTEGER, standard_speed__6th_gear_ VARCHAR)
SELECT MIN(rpm) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "114"
33,613
<question>: when standard speed (6th gear) is 88, what is the rpm? <context>: CREATE TABLE table_19704392_1 (rpm VARCHAR, standard_speed__6th_gear_ VARCHAR)
SELECT rpm FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "88"
33,614
<question>: What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75? <context>: CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ VARCHAR, standard_torque__lb_ft_ VARCHAR, modified_torque__lb_ft_ VARCHAR)
SELECT modified_speed__6th_gear_ FROM table_19704392_1 WHERE standard_torque__lb_ft_ = "10.3" AND modified_torque__lb_ft_ = "8.75"
33,615
<question>: when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98 <context>: CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ INTEGER, standard_speed__6th_gear_ VARCHAR)
SELECT MAX(modified_speed__6th_gear_) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = "98"
33,616
<question>: When the standard torque (lb/ft) is 11.53 how much does more is the modified hp? <context>: CREATE TABLE table_19704392_1 (modified_hp VARCHAR, standard_torque__lb_ft_ VARCHAR)
SELECT modified_hp FROM table_19704392_1 WHERE standard_torque__lb_ft_ = "11.53"
33,617
<question>: how many assists did the player who played 195 minutes make <context>: CREATE TABLE table_19722233_5 (assists VARCHAR, minutes VARCHAR)
SELECT assists FROM table_19722233_5 WHERE minutes = 195
33,618
<question>: what is the lowest number of blocks <context>: CREATE TABLE table_19722233_5 (blocks INTEGER)
SELECT MIN(blocks) FROM table_19722233_5
33,619
<question>: what is the lowest points scored by a player who blocked 21 times <context>: CREATE TABLE table_19722233_5 (points INTEGER, blocks VARCHAR)
SELECT MIN(points) FROM table_19722233_5 WHERE blocks = 21
33,620
<question>: how many times did debbie black block <context>: CREATE TABLE table_19722233_5 (blocks VARCHAR, player VARCHAR)
SELECT blocks FROM table_19722233_5 WHERE player = "Debbie Black"
33,621
<question>: what is the highest number of goals did the player with 27 asists score <context>: CREATE TABLE table_19722233_5 (field_goals INTEGER, assists VARCHAR)
SELECT MAX(field_goals) FROM table_19722233_5 WHERE assists = 27
33,622
<question>: how many assists did the player who scored 251 points make <context>: CREATE TABLE table_19722233_5 (assists VARCHAR, points VARCHAR)
SELECT assists FROM table_19722233_5 WHERE points = 251
33,623
<question>: What was the production number of the episode filmed in aug/sept 1968? <context>: CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR)
SELECT prod__number FROM table_1971734_1 WHERE filmed = "Aug/Sept 1968"
33,624
<question>: What's the highest enrollment among the schools? <context>: CREATE TABLE table_1971074_1 (enrollment INTEGER)
SELECT MAX(enrollment) FROM table_1971074_1
33,625
<question>: When did the school from Logan Township, Pennsylvania join the Conference? <context>: CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)
SELECT joined FROM table_1971074_1 WHERE location = "Logan Township, Pennsylvania"
33,626
<question>: When was the private/non-sectarian school founded? <context>: CREATE TABLE table_1971074_1 (founded VARCHAR, type VARCHAR)
SELECT founded FROM table_1971074_1 WHERE type = "Private/Non-sectarian"
33,627
<question>: Where is the school whose students are nicknamed Panthers located? <context>: CREATE TABLE table_1971074_1 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_1971074_1 WHERE nickname = "Panthers"
33,628
<question>: How many different enrollment numbers are there for the school whose students are nicknamed Barons? <context>: CREATE TABLE table_1971074_1 (enrollment VARCHAR, nickname VARCHAR)
SELECT COUNT(enrollment) FROM table_1971074_1 WHERE nickname = "Barons"
33,629
<question>: In how many different years did schools located in Logan Township, Pennsylvania join the Conference? <context>: CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)
SELECT COUNT(joined) FROM table_1971074_1 WHERE location = "Logan Township, Pennsylvania"
33,630
<question>: How many different isolation numbers does the Jack Mountain peak have? <context>: CREATE TABLE table_19716903_1 (isolation VARCHAR, mountain_peak VARCHAR)
SELECT COUNT(isolation) FROM table_19716903_1 WHERE mountain_peak = "Jack Mountain"
33,631
<question>: How many steals did Nicole Levandusky make? <context>: CREATE TABLE table_19722664_5 (steals VARCHAR, player VARCHAR)
SELECT steals FROM table_19722664_5 WHERE player = "Nicole Levandusky"
33,632
<question>: How many rebounds did Rhonda Mapp make? <context>: CREATE TABLE table_19722664_5 (rebounds INTEGER, player VARCHAR)
SELECT MAX(rebounds) FROM table_19722664_5 WHERE player = "Rhonda Mapp"
33,633
<question>: What is the largest amount of assists that Nicole Levandusky made? <context>: CREATE TABLE table_19722664_5 (assists INTEGER, player VARCHAR)
SELECT MAX(assists) FROM table_19722664_5 WHERE player = "Nicole Levandusky"
33,634
<question>: What is the maximum number of blocks where rebounds equal 35? <context>: CREATE TABLE table_19722664_5 (blocks INTEGER, rebounds VARCHAR)
SELECT MAX(blocks) FROM table_19722664_5 WHERE rebounds = 35
33,635
<question>: How many assists did Delisha Milton-Jones make? <context>: CREATE TABLE table_19722664_5 (assists VARCHAR, player VARCHAR)
SELECT assists FROM table_19722664_5 WHERE player = "DeLisha Milton-Jones"
33,636
<question>: Name the total apps for eddie carr <context>: CREATE TABLE table_19730892_1 (total_apps INTEGER, name VARCHAR)
SELECT MAX(total_apps) FROM table_19730892_1 WHERE name = "Eddie Carr"
33,637
<question>: Name the fa cup apps for arthur morton <context>: CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)
SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "Arthur Morton"
33,638
<question>: Name the position for billy price <context>: CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)
SELECT position FROM table_19730892_1 WHERE name = "Billy Price"
33,639
<question>: Name the total number of position for don clegg <context>: CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)
SELECT COUNT(position) FROM table_19730892_1 WHERE name = "Don Clegg"
33,640
<question>: Name the nation where jeff barker is from <context>: CREATE TABLE table_19730892_1 (nation VARCHAR, name VARCHAR)
SELECT nation FROM table_19730892_1 WHERE name = "Jeff Barker"
33,641
<question>: Name the fa cup apps for george green <context>: CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)
SELECT fa_cup_apps FROM table_19730892_1 WHERE name = "George Green"
33,642
<question>: Name the school that was founded in 1950 <context>: CREATE TABLE table_1973648_1 (institution VARCHAR, founded VARCHAR)
SELECT institution FROM table_1973648_1 WHERE founded = 1950
33,643
<question>: Name the most founded for sea gulls <context>: CREATE TABLE table_1973648_1 (founded INTEGER, nickname VARCHAR)
SELECT MAX(founded) FROM table_1973648_1 WHERE nickname = "Sea Gulls"
33,644
<question>: Name the location for eagles <context>: CREATE TABLE table_1973648_1 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_1973648_1 WHERE nickname = "Eagles"
33,645
<question>: Name the enrollment for 2007-08 <context>: CREATE TABLE table_1973648_1 (enrollment VARCHAR, joined VARCHAR)
SELECT enrollment FROM table_1973648_1 WHERE joined = "2007-08"
33,646
<question>: Name the least new points for steffi graf <context>: CREATE TABLE table_1973321_5 (new_points INTEGER, player VARCHAR)
SELECT MIN(new_points) FROM table_1973321_5 WHERE player = "Steffi Graf"
33,647
<question>: Name the most points for champion, won in the final against amélie mauresmo <context>: CREATE TABLE table_1973321_5 (points INTEGER, status VARCHAR)
SELECT MAX(points) FROM table_1973321_5 WHERE status = "Champion, won in the final against Amélie Mauresmo"
33,648
<question>: Name the further cities for slovakia and west direction <context>: CREATE TABLE table_197286_4 (further_cities VARCHAR, country VARCHAR, direction VARCHAR)
SELECT further_cities FROM table_197286_4 WHERE country = "Slovakia" AND direction = "West"
33,649
<question>: Name the distance from north <context>: CREATE TABLE table_197286_4 (distance VARCHAR, direction VARCHAR)
SELECT distance FROM table_197286_4 WHERE direction = "North"
33,650
<question>: Name the further cities for east romania <context>: CREATE TABLE table_197286_4 (further_cities VARCHAR, direction VARCHAR, country VARCHAR)
SELECT further_cities FROM table_197286_4 WHERE direction = "East" AND country = "Romania"
33,651
<question>: Name the number of direction for debrecen <context>: CREATE TABLE table_197286_4 (direction VARCHAR, further_cities VARCHAR)
SELECT COUNT(direction) FROM table_197286_4 WHERE further_cities = "Debrecen"
33,652
<question>: What's the nickname of the students of the school founded in 1933? <context>: CREATE TABLE table_1973816_1 (nickname VARCHAR, founded VARCHAR)
SELECT nickname FROM table_1973816_1 WHERE founded = 1933
33,653
<question>: On how many locations is the Saint Joseph's College of Maine located? <context>: CREATE TABLE table_1973816_1 (location VARCHAR, institution VARCHAR)
SELECT COUNT(location) FROM table_1973816_1 WHERE institution = "Saint Joseph's College of Maine"
33,654
<question>: On how many different dates did schools from Chestnut Hill, Massachusetts join the conference? <context>: CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR)
SELECT COUNT(joined) FROM table_1973842_1 WHERE location = "Chestnut Hill, Massachusetts"
33,655
<question>: What is the type of the school whose students' nickname is tigers? <context>: CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)
SELECT type FROM table_1973842_1 WHERE nickname = "Tigers"
33,656
<question>: What's the type of the school whose students' name is spirits? <context>: CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)
SELECT type FROM table_1973842_1 WHERE nickname = "Spirits"
33,657
<question>: What school is located in Chestnut Hill, Massachusetts? <context>: CREATE TABLE table_1973842_1 (institution VARCHAR, location VARCHAR)
SELECT institution FROM table_1973842_1 WHERE location = "Chestnut Hill, Massachusetts"
33,658
<question>: What type is the school located in Macon, Georgia? <context>: CREATE TABLE table_1973842_1 (type VARCHAR, location VARCHAR)
SELECT type FROM table_1973842_1 WHERE location = "Macon, Georgia"
33,659
<question>: What's the nickname of the school in Maryville, Tennessee? <context>: CREATE TABLE table_1973842_2 (nickname VARCHAR, location VARCHAR)
SELECT nickname FROM table_1973842_2 WHERE location = "Maryville, Tennessee"
33,660
<question>: Where is the school with nickname Tigers located? <context>: CREATE TABLE table_1973842_2 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_1973842_2 WHERE nickname = "Tigers"
33,661
<question>: What's the nickname of the students of the school that joined the Conference in 2010? <context>: CREATE TABLE table_1973842_2 (nickname VARCHAR, joined VARCHAR)
SELECT nickname FROM table_1973842_2 WHERE joined = 2010
33,662
<question>: When was Daniel Webster College founded? <context>: CREATE TABLE table_1973816_2 (founded VARCHAR, institution VARCHAR)
SELECT founded FROM table_1973816_2 WHERE institution = "Daniel Webster College"
33,663
<question>: Where is Southern Vermont College located? <context>: CREATE TABLE table_1973816_2 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_1973816_2 WHERE institution = "Southern Vermont College"
33,664
<question>: In what year did the school with enrollment of 650 leave? <context>: CREATE TABLE table_1973816_2 (left VARCHAR, enrollment VARCHAR)
SELECT left FROM table_1973816_2 WHERE enrollment = 650
33,665
<question>: What was the number of races in the season in which the team placed on the 14th position? <context>: CREATE TABLE table_19741316_1 (races INTEGER, position VARCHAR)
SELECT MIN(races) FROM table_19741316_1 WHERE position = "14th"
33,666
<question>: What is the lowest number of wins of a team? <context>: CREATE TABLE table_19741316_1 (wins INTEGER)
SELECT MIN(wins) FROM table_19741316_1
33,667
<question>: Name the institution for statesmen <context>: CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_1974482_1 WHERE nickname = "Statesmen"
33,668
<question>: Name the institution for yellowjackets <context>: CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)
SELECT institution FROM table_1974482_1 WHERE nickname = "Yellowjackets"
33,669
<question>: Name the type for hobart college <context>: CREATE TABLE table_1974482_1 (type VARCHAR, institution VARCHAR)
SELECT type FROM table_1974482_1 WHERE institution = "Hobart College"
33,670
<question>: Name the location for 1829 <context>: CREATE TABLE table_1974482_1 (location VARCHAR, founded VARCHAR)
SELECT location FROM table_1974482_1 WHERE founded = 1829
33,671
<question>: Name the location of statesmen <context>: CREATE TABLE table_1974482_1 (location VARCHAR, nickname VARCHAR)
SELECT location FROM table_1974482_1 WHERE nickname = "Statesmen"
33,672
<question>: What location was the congressional service of which the term ended in January 3, 2011? <context>: CREATE TABLE table_197446_1 (location VARCHAR, term_ended VARCHAR)
SELECT location FROM table_197446_1 WHERE term_ended = "January 3, 2011"
33,673
<question>: What branch was involved when the term began in January 3, 1985? <context>: CREATE TABLE table_197446_1 (branch VARCHAR, term_began VARCHAR)
SELECT branch FROM table_197446_1 WHERE term_began = "January 3, 1985"
33,674
<question>: What year was the congressional service elected for a term beginning on January 3, 1989? <context>: CREATE TABLE table_197446_1 (elected VARCHAR, term_began VARCHAR)
SELECT elected FROM table_197446_1 WHERE term_began = "January 3, 1989"
33,675
<question>: What group was in office when the term ended in January 3, 1993? <context>: CREATE TABLE table_197446_1 (office VARCHAR, term_ended VARCHAR)
SELECT office FROM table_197446_1 WHERE term_ended = "January 3, 1993"
33,676
<question>: How many terms began when the term ended in January 3, 1989? <context>: CREATE TABLE table_197446_1 (term_began VARCHAR, term_ended VARCHAR)
SELECT COUNT(term_began) FROM table_197446_1 WHERE term_ended = "January 3, 1989"
33,677
<question>: How many different total points does the couple ranked at number 5 have? <context>: CREATE TABLE table_19744915_22 (total VARCHAR, rank VARCHAR)
SELECT COUNT(total) FROM table_19744915_22 WHERE rank = 5
33,678
<question>: What couple had vote percentage of 21.843%? <context>: CREATE TABLE table_19744915_22 (couple VARCHAR, vote_percentage VARCHAR)
SELECT couple FROM table_19744915_22 WHERE vote_percentage = "21.843%"
33,679
<question>: How many judges points did the couple ranked at number 5 have? <context>: CREATE TABLE table_19744915_22 (judges INTEGER, rank VARCHAR)
SELECT MAX(judges) FROM table_19744915_22 WHERE rank = 5
33,680
<question>: What couple had less than 2.0 points from the public? <context>: CREATE TABLE table_19744915_22 (couple VARCHAR, public INTEGER)
SELECT couple FROM table_19744915_22 WHERE public < 2.0
33,681
<question>: What was the total result for couple Ellery and Frankie? <context>: CREATE TABLE table_19744915_17 (result VARCHAR, couple VARCHAR)
SELECT COUNT(result) FROM table_19744915_17 WHERE couple = "Ellery and Frankie"
33,682
<question>: If the vote percentage is 2.111%, what was the minimum rank? <context>: CREATE TABLE table_19744915_17 (rank INTEGER, vote_percentage VARCHAR)
SELECT MIN(rank) FROM table_19744915_17 WHERE vote_percentage = "2.111%"
33,683
<question>: If the total is 17, what was the maximum rank amount? <context>: CREATE TABLE table_19744915_17 (rank INTEGER, total VARCHAR)
SELECT MAX(rank) FROM table_19744915_17 WHERE total = 17
33,684
<question>: For couple Todd and Susie, what was the vote percentage? <context>: CREATE TABLE table_19744915_17 (vote_percentage VARCHAR, couple VARCHAR)
SELECT vote_percentage FROM table_19744915_17 WHERE couple = "Todd and Susie"
33,685
<question>: When 9 is the rank who are the couple? <context>: CREATE TABLE table_19744915_18 (couple VARCHAR, rank VARCHAR)
SELECT couple FROM table_19744915_18 WHERE rank = 9
33,686
<question>: When roxanne and daniel are the couple what is the highest rank? <context>: CREATE TABLE table_19744915_18 (rank INTEGER, couple VARCHAR)
SELECT MAX(rank) FROM table_19744915_18 WHERE couple = "Roxanne and Daniel"
33,687
<question>: When ellery and frankie are the couple what is the highest total? <context>: CREATE TABLE table_19744915_18 (total INTEGER, couple VARCHAR)
SELECT MAX(total) FROM table_19744915_18 WHERE couple = "Ellery and Frankie"
33,688
<question>: When 8 is the public what are the results? <context>: CREATE TABLE table_19744915_18 (result VARCHAR, public VARCHAR)
SELECT result FROM table_19744915_18 WHERE public = 8
33,689
<question>: When 8 is the public and the result is safe what is the highest rank? <context>: CREATE TABLE table_19744915_18 (rank INTEGER, result VARCHAR, public VARCHAR)
SELECT MAX(rank) FROM table_19744915_18 WHERE result = "Safe" AND public = 8
33,690
<question>: Name the karen when nicky is 2.5 <context>: CREATE TABLE table_19744915_4 (karen VARCHAR, nicky VARCHAR)
SELECT karen FROM table_19744915_4 WHERE nicky = "2.5"
33,691
<question>: What is the capacity for the school that has the Owl Athletic Complex baseball stadium? <context>: CREATE TABLE table_1974545_3 (capacity VARCHAR, baseball_stadium VARCHAR)
SELECT capacity FROM table_1974545_3 WHERE baseball_stadium = "Owl Athletic Complex"
33,692
<question>: What is the name of the softball stadium for the school that has Eastern Baseball Stadium? <context>: CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, baseball_stadium VARCHAR)
SELECT softball_stadium FROM table_1974545_3 WHERE baseball_stadium = "Eastern Baseball Stadium"
33,693
<question>: What is the name of UMass Boston's softball stadium? <context>: CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR)
SELECT softball_stadium FROM table_1974545_3 WHERE school = "UMass Boston"
33,694
<question>: What is the name of Rhode Island College's softball stadium? <context>: CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR)
SELECT softball_stadium FROM table_1974545_3 WHERE school = "Rhode Island College"
33,695
<question>: How many basketball arenas are there that belong to a school with a capacity of 3,000? <context>: CREATE TABLE table_1974545_3 (basketball_arena VARCHAR, capacity VARCHAR)
SELECT COUNT(basketball_arena) FROM table_1974545_3 WHERE capacity = "3,000"
33,696
<question>: What is the name of the baseball stadium for the school with the Murray Center basketball arena? <context>: CREATE TABLE table_1974545_3 (baseball_stadium VARCHAR, basketball_arena VARCHAR)
SELECT baseball_stadium FROM table_1974545_3 WHERE basketball_arena = "The Murray Center"
33,697
<question>: Where is the Westfield State University located? <context>: CREATE TABLE table_1974545_2 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_1974545_2 WHERE institution = "Westfield State University"
33,698
<question>: When was the school in Salem, Massachusetts located? <context>: CREATE TABLE table_1974545_2 (founded VARCHAR, location VARCHAR)
SELECT founded FROM table_1974545_2 WHERE location = "Salem, Massachusetts"
33,699
<question>: What's the nickname of Westfield State University's students? <context>: CREATE TABLE table_1974545_2 (nickname VARCHAR, institution VARCHAR)
SELECT nickname FROM table_1974545_2 WHERE institution = "Westfield State University"