question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the LGA name where the 2006 census population is bigger than 425208.9417698913 and administrative capital is port harcourt? | CREATE TABLE table_1966992_1 (lga_name VARCHAR, census_2006_population VARCHAR, administrative_capital VARCHAR) | {
"SQL_Query": "SELECT lga_name FROM table_1966992_1 WHERE census_2006_population > 425208.9417698913 AND administrative_capital = \"Port Harcourt\""
} |
What is the administrative capital of LGA name Akuku-Toru? | CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, lga_name VARCHAR) | {
"SQL_Query": "SELECT administrative_capital FROM table_1966992_1 WHERE lga_name = \"Akuku-Toru\""
} |
What is the administrative capital that has a 2006 census population of 249425? | CREATE TABLE table_1966992_1 (administrative_capital VARCHAR, census_2006_population VARCHAR) | {
"SQL_Query": "SELECT administrative_capital FROM table_1966992_1 WHERE census_2006_population = 249425"
} |
What is the maximum 2006 census population of LGA name Opobo/Nkoro? | CREATE TABLE table_1966992_1 (census_2006_population INTEGER, lga_name VARCHAR) | {
"SQL_Query": "SELECT MAX(census_2006_population) FROM table_1966992_1 WHERE lga_name = \"Opobo/Nkoro\""
} |
What's the minimal enrollment of any of the schools? | CREATE TABLE table_1969577_3 (enrollment INTEGER) | {
"SQL_Query": "SELECT MIN(enrollment) FROM table_1969577_3"
} |
When was the school whose students are nicknamed Rams founded? | CREATE TABLE table_1969577_3 (founded INTEGER, nickname VARCHAR) | {
"SQL_Query": "SELECT MAX(founded) FROM table_1969577_3 WHERE nickname = \"Rams\""
} |
What's the type of the school whose students are nicknamed Chargers? | CREATE TABLE table_1969577_3 (type VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT type FROM table_1969577_3 WHERE nickname = \"Chargers\""
} |
When was the school in Philadelphia, Pennsylvania founded? | CREATE TABLE table_1969577_3 (founded VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT founded FROM table_1969577_3 WHERE location = \"Philadelphia, Pennsylvania\""
} |
What was the total number of votes in the 2005 elections? | CREATE TABLE table_19698421_1 (total_votes INTEGER, year VARCHAR) | {
"SQL_Query": "SELECT MIN(total_votes) FROM table_19698421_1 WHERE year = \"2005\""
} |
How many elections had 1423 average voters per candidate? | CREATE TABLE table_19698421_1 (change__percentage_points_ VARCHAR, average_voters_per_candidate VARCHAR) | {
"SQL_Query": "SELECT COUNT(change__percentage_points_) FROM table_19698421_1 WHERE average_voters_per_candidate = 1423"
} |
How many candidates were there in the year of 1987? | CREATE TABLE table_19698421_1 (number_of_candidates VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT number_of_candidates FROM table_19698421_1 WHERE year = \"1987\""
} |
What is the modified torque (lb/ft) when the standard hp n/a? | CREATE TABLE table_19704392_1 (modified_torque__lb_ft_ VARCHAR, standard_hp VARCHAR) | {
"SQL_Query": "SELECT COUNT(modified_torque__lb_ft_) FROM table_19704392_1 WHERE standard_hp = \"n/a\""
} |
When the standard speed (6th gear) is 114, what is the minimum rpm? | CREATE TABLE table_19704392_1 (rpm INTEGER, standard_speed__6th_gear_ VARCHAR) | {
"SQL_Query": "SELECT MIN(rpm) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = \"114\""
} |
when standard speed (6th gear) is 88, what is the rpm? | CREATE TABLE table_19704392_1 (rpm VARCHAR, standard_speed__6th_gear_ VARCHAR) | {
"SQL_Query": "SELECT rpm FROM table_19704392_1 WHERE standard_speed__6th_gear_ = \"88\""
} |
What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75? | CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ VARCHAR, standard_torque__lb_ft_ VARCHAR, modified_torque__lb_ft_ VARCHAR) | {
"SQL_Query": "SELECT modified_speed__6th_gear_ FROM table_19704392_1 WHERE standard_torque__lb_ft_ = \"10.3\" AND modified_torque__lb_ft_ = \"8.75\""
} |
when the max speed for modified speed (6th gear) where standard speed (6th gear) is 98 | CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ INTEGER, standard_speed__6th_gear_ VARCHAR) | {
"SQL_Query": "SELECT MAX(modified_speed__6th_gear_) FROM table_19704392_1 WHERE standard_speed__6th_gear_ = \"98\""
} |
When the standard torque (lb/ft) is 11.53 how much does more is the modified hp? | CREATE TABLE table_19704392_1 (modified_hp VARCHAR, standard_torque__lb_ft_ VARCHAR) | {
"SQL_Query": "SELECT modified_hp FROM table_19704392_1 WHERE standard_torque__lb_ft_ = \"11.53\""
} |
how many assists did the player who played 195 minutes make | CREATE TABLE table_19722233_5 (assists VARCHAR, minutes VARCHAR) | {
"SQL_Query": "SELECT assists FROM table_19722233_5 WHERE minutes = 195"
} |
what is the lowest number of blocks | CREATE TABLE table_19722233_5 (blocks INTEGER) | {
"SQL_Query": "SELECT MIN(blocks) FROM table_19722233_5"
} |
what is the lowest points scored by a player who blocked 21 times | CREATE TABLE table_19722233_5 (points INTEGER, blocks VARCHAR) | {
"SQL_Query": "SELECT MIN(points) FROM table_19722233_5 WHERE blocks = 21"
} |
how many times did debbie black block | CREATE TABLE table_19722233_5 (blocks VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT blocks FROM table_19722233_5 WHERE player = \"Debbie Black\""
} |
what is the highest number of goals did the player with 27 asists score | CREATE TABLE table_19722233_5 (field_goals INTEGER, assists VARCHAR) | {
"SQL_Query": "SELECT MAX(field_goals) FROM table_19722233_5 WHERE assists = 27"
} |
how many assists did the player who scored 251 points make | CREATE TABLE table_19722233_5 (assists VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT assists FROM table_19722233_5 WHERE points = 251"
} |
What was the production number of the episode filmed in aug/sept 1968? | CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR) | {
"SQL_Query": "SELECT prod__number FROM table_1971734_1 WHERE filmed = \"Aug/Sept 1968\""
} |
What's the highest enrollment among the schools? | CREATE TABLE table_1971074_1 (enrollment INTEGER) | {
"SQL_Query": "SELECT MAX(enrollment) FROM table_1971074_1"
} |
When did the school from Logan Township, Pennsylvania join the Conference? | CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT joined FROM table_1971074_1 WHERE location = \"Logan Township, Pennsylvania\""
} |
When was the private/non-sectarian school founded? | CREATE TABLE table_1971074_1 (founded VARCHAR, type VARCHAR) | {
"SQL_Query": "SELECT founded FROM table_1971074_1 WHERE type = \"Private/Non-sectarian\""
} |
Where is the school whose students are nicknamed Panthers located? | CREATE TABLE table_1971074_1 (location VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT location FROM table_1971074_1 WHERE nickname = \"Panthers\""
} |
How many different enrollment numbers are there for the school whose students are nicknamed Barons? | CREATE TABLE table_1971074_1 (enrollment VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT COUNT(enrollment) FROM table_1971074_1 WHERE nickname = \"Barons\""
} |
In how many different years did schools located in Logan Township, Pennsylvania join the Conference? | CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(joined) FROM table_1971074_1 WHERE location = \"Logan Township, Pennsylvania\""
} |
How many different isolation numbers does the Jack Mountain peak have? | CREATE TABLE table_19716903_1 (isolation VARCHAR, mountain_peak VARCHAR) | {
"SQL_Query": "SELECT COUNT(isolation) FROM table_19716903_1 WHERE mountain_peak = \"Jack Mountain\""
} |
How many steals did Nicole Levandusky make? | CREATE TABLE table_19722664_5 (steals VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT steals FROM table_19722664_5 WHERE player = \"Nicole Levandusky\""
} |
How many rebounds did Rhonda Mapp make? | CREATE TABLE table_19722664_5 (rebounds INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(rebounds) FROM table_19722664_5 WHERE player = \"Rhonda Mapp\""
} |
What is the largest amount of assists that Nicole Levandusky made? | CREATE TABLE table_19722664_5 (assists INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(assists) FROM table_19722664_5 WHERE player = \"Nicole Levandusky\""
} |
What is the maximum number of blocks where rebounds equal 35? | CREATE TABLE table_19722664_5 (blocks INTEGER, rebounds VARCHAR) | {
"SQL_Query": "SELECT MAX(blocks) FROM table_19722664_5 WHERE rebounds = 35"
} |
How many assists did Delisha Milton-Jones make? | CREATE TABLE table_19722664_5 (assists VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT assists FROM table_19722664_5 WHERE player = \"DeLisha Milton-Jones\""
} |
Name the total apps for eddie carr | CREATE TABLE table_19730892_1 (total_apps INTEGER, name VARCHAR) | {
"SQL_Query": "SELECT MAX(total_apps) FROM table_19730892_1 WHERE name = \"Eddie Carr\""
} |
Name the fa cup apps for arthur morton | CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT fa_cup_apps FROM table_19730892_1 WHERE name = \"Arthur Morton\""
} |
Name the position for billy price | CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT position FROM table_19730892_1 WHERE name = \"Billy Price\""
} |
Name the total number of position for don clegg | CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT COUNT(position) FROM table_19730892_1 WHERE name = \"Don Clegg\""
} |
Name the nation where jeff barker is from | CREATE TABLE table_19730892_1 (nation VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT nation FROM table_19730892_1 WHERE name = \"Jeff Barker\""
} |
Name the fa cup apps for george green | CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT fa_cup_apps FROM table_19730892_1 WHERE name = \"George Green\""
} |
Name the school that was founded in 1950 | CREATE TABLE table_1973648_1 (institution VARCHAR, founded VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_1973648_1 WHERE founded = 1950"
} |
Name the most founded for sea gulls | CREATE TABLE table_1973648_1 (founded INTEGER, nickname VARCHAR) | {
"SQL_Query": "SELECT MAX(founded) FROM table_1973648_1 WHERE nickname = \"Sea Gulls\""
} |
Name the location for eagles | CREATE TABLE table_1973648_1 (location VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT location FROM table_1973648_1 WHERE nickname = \"Eagles\""
} |
Name the enrollment for 2007-08 | CREATE TABLE table_1973648_1 (enrollment VARCHAR, joined VARCHAR) | {
"SQL_Query": "SELECT enrollment FROM table_1973648_1 WHERE joined = \"2007-08\""
} |
Name the least new points for steffi graf | CREATE TABLE table_1973321_5 (new_points INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MIN(new_points) FROM table_1973321_5 WHERE player = \"Steffi Graf\""
} |
Name the most points for champion, won in the final against amélie mauresmo | CREATE TABLE table_1973321_5 (points INTEGER, status VARCHAR) | {
"SQL_Query": "SELECT MAX(points) FROM table_1973321_5 WHERE status = \"Champion, won in the final against Amélie Mauresmo\""
} |
Name the further cities for slovakia and west direction | CREATE TABLE table_197286_4 (further_cities VARCHAR, country VARCHAR, direction VARCHAR) | {
"SQL_Query": "SELECT further_cities FROM table_197286_4 WHERE country = \"Slovakia\" AND direction = \"West\""
} |
Name the distance from north | CREATE TABLE table_197286_4 (distance VARCHAR, direction VARCHAR) | {
"SQL_Query": "SELECT distance FROM table_197286_4 WHERE direction = \"North\""
} |
Name the further cities for east romania | CREATE TABLE table_197286_4 (further_cities VARCHAR, direction VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT further_cities FROM table_197286_4 WHERE direction = \"East\" AND country = \"Romania\""
} |
Name the number of direction for debrecen | CREATE TABLE table_197286_4 (direction VARCHAR, further_cities VARCHAR) | {
"SQL_Query": "SELECT COUNT(direction) FROM table_197286_4 WHERE further_cities = \"Debrecen\""
} |
What's the nickname of the students of the school founded in 1933? | CREATE TABLE table_1973816_1 (nickname VARCHAR, founded VARCHAR) | {
"SQL_Query": "SELECT nickname FROM table_1973816_1 WHERE founded = 1933"
} |
On how many locations is the Saint Joseph's College of Maine located? | CREATE TABLE table_1973816_1 (location VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT COUNT(location) FROM table_1973816_1 WHERE institution = \"Saint Joseph's College of Maine\""
} |
On how many different dates did schools from Chestnut Hill, Massachusetts join the conference? | CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT COUNT(joined) FROM table_1973842_1 WHERE location = \"Chestnut Hill, Massachusetts\""
} |
What is the type of the school whose students' nickname is tigers? | CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT type FROM table_1973842_1 WHERE nickname = \"Tigers\""
} |
What's the type of the school whose students' name is spirits? | CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT type FROM table_1973842_1 WHERE nickname = \"Spirits\""
} |
What school is located in Chestnut Hill, Massachusetts? | CREATE TABLE table_1973842_1 (institution VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_1973842_1 WHERE location = \"Chestnut Hill, Massachusetts\""
} |
What type is the school located in Macon, Georgia? | CREATE TABLE table_1973842_1 (type VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT type FROM table_1973842_1 WHERE location = \"Macon, Georgia\""
} |
What's the nickname of the school in Maryville, Tennessee? | CREATE TABLE table_1973842_2 (nickname VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT nickname FROM table_1973842_2 WHERE location = \"Maryville, Tennessee\""
} |
Where is the school with nickname Tigers located? | CREATE TABLE table_1973842_2 (location VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT location FROM table_1973842_2 WHERE nickname = \"Tigers\""
} |
What's the nickname of the students of the school that joined the Conference in 2010? | CREATE TABLE table_1973842_2 (nickname VARCHAR, joined VARCHAR) | {
"SQL_Query": "SELECT nickname FROM table_1973842_2 WHERE joined = 2010"
} |
When was Daniel Webster College founded? | CREATE TABLE table_1973816_2 (founded VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT founded FROM table_1973816_2 WHERE institution = \"Daniel Webster College\""
} |
Where is Southern Vermont College located? | CREATE TABLE table_1973816_2 (location VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT location FROM table_1973816_2 WHERE institution = \"Southern Vermont College\""
} |
In what year did the school with enrollment of 650 leave? | CREATE TABLE table_1973816_2 (left VARCHAR, enrollment VARCHAR) | {
"SQL_Query": "SELECT left FROM table_1973816_2 WHERE enrollment = 650"
} |
What was the number of races in the season in which the team placed on the 14th position? | CREATE TABLE table_19741316_1 (races INTEGER, position VARCHAR) | {
"SQL_Query": "SELECT MIN(races) FROM table_19741316_1 WHERE position = \"14th\""
} |
What is the lowest number of wins of a team? | CREATE TABLE table_19741316_1 (wins INTEGER) | {
"SQL_Query": "SELECT MIN(wins) FROM table_19741316_1"
} |
Name the institution for statesmen | CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_1974482_1 WHERE nickname = \"Statesmen\""
} |
Name the institution for yellowjackets | CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT institution FROM table_1974482_1 WHERE nickname = \"Yellowjackets\""
} |
Name the type for hobart college | CREATE TABLE table_1974482_1 (type VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT type FROM table_1974482_1 WHERE institution = \"Hobart College\""
} |
Name the location for 1829 | CREATE TABLE table_1974482_1 (location VARCHAR, founded VARCHAR) | {
"SQL_Query": "SELECT location FROM table_1974482_1 WHERE founded = 1829"
} |
Name the location of statesmen | CREATE TABLE table_1974482_1 (location VARCHAR, nickname VARCHAR) | {
"SQL_Query": "SELECT location FROM table_1974482_1 WHERE nickname = \"Statesmen\""
} |
What location was the congressional service of which the term ended in January 3, 2011? | CREATE TABLE table_197446_1 (location VARCHAR, term_ended VARCHAR) | {
"SQL_Query": "SELECT location FROM table_197446_1 WHERE term_ended = \"January 3, 2011\""
} |
What branch was involved when the term began in January 3, 1985? | CREATE TABLE table_197446_1 (branch VARCHAR, term_began VARCHAR) | {
"SQL_Query": "SELECT branch FROM table_197446_1 WHERE term_began = \"January 3, 1985\""
} |
What year was the congressional service elected for a term beginning on January 3, 1989? | CREATE TABLE table_197446_1 (elected VARCHAR, term_began VARCHAR) | {
"SQL_Query": "SELECT elected FROM table_197446_1 WHERE term_began = \"January 3, 1989\""
} |
What group was in office when the term ended in January 3, 1993? | CREATE TABLE table_197446_1 (office VARCHAR, term_ended VARCHAR) | {
"SQL_Query": "SELECT office FROM table_197446_1 WHERE term_ended = \"January 3, 1993\""
} |
How many terms began when the term ended in January 3, 1989? | CREATE TABLE table_197446_1 (term_began VARCHAR, term_ended VARCHAR) | {
"SQL_Query": "SELECT COUNT(term_began) FROM table_197446_1 WHERE term_ended = \"January 3, 1989\""
} |
How many different total points does the couple ranked at number 5 have? | CREATE TABLE table_19744915_22 (total VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT COUNT(total) FROM table_19744915_22 WHERE rank = 5"
} |
What couple had vote percentage of 21.843%? | CREATE TABLE table_19744915_22 (couple VARCHAR, vote_percentage VARCHAR) | {
"SQL_Query": "SELECT couple FROM table_19744915_22 WHERE vote_percentage = \"21.843%\""
} |
How many judges points did the couple ranked at number 5 have? | CREATE TABLE table_19744915_22 (judges INTEGER, rank VARCHAR) | {
"SQL_Query": "SELECT MAX(judges) FROM table_19744915_22 WHERE rank = 5"
} |
What couple had less than 2.0 points from the public? | CREATE TABLE table_19744915_22 (couple VARCHAR, public INTEGER) | {
"SQL_Query": "SELECT couple FROM table_19744915_22 WHERE public < 2.0"
} |
What was the total result for couple Ellery and Frankie? | CREATE TABLE table_19744915_17 (result VARCHAR, couple VARCHAR) | {
"SQL_Query": "SELECT COUNT(result) FROM table_19744915_17 WHERE couple = \"Ellery and Frankie\""
} |
If the vote percentage is 2.111%, what was the minimum rank? | CREATE TABLE table_19744915_17 (rank INTEGER, vote_percentage VARCHAR) | {
"SQL_Query": "SELECT MIN(rank) FROM table_19744915_17 WHERE vote_percentage = \"2.111%\""
} |
If the total is 17, what was the maximum rank amount? | CREATE TABLE table_19744915_17 (rank INTEGER, total VARCHAR) | {
"SQL_Query": "SELECT MAX(rank) FROM table_19744915_17 WHERE total = 17"
} |
For couple Todd and Susie, what was the vote percentage? | CREATE TABLE table_19744915_17 (vote_percentage VARCHAR, couple VARCHAR) | {
"SQL_Query": "SELECT vote_percentage FROM table_19744915_17 WHERE couple = \"Todd and Susie\""
} |
When 9 is the rank who are the couple? | CREATE TABLE table_19744915_18 (couple VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT couple FROM table_19744915_18 WHERE rank = 9"
} |
When roxanne and daniel are the couple what is the highest rank? | CREATE TABLE table_19744915_18 (rank INTEGER, couple VARCHAR) | {
"SQL_Query": "SELECT MAX(rank) FROM table_19744915_18 WHERE couple = \"Roxanne and Daniel\""
} |
When ellery and frankie are the couple what is the highest total? | CREATE TABLE table_19744915_18 (total INTEGER, couple VARCHAR) | {
"SQL_Query": "SELECT MAX(total) FROM table_19744915_18 WHERE couple = \"Ellery and Frankie\""
} |
When 8 is the public what are the results? | CREATE TABLE table_19744915_18 (result VARCHAR, public VARCHAR) | {
"SQL_Query": "SELECT result FROM table_19744915_18 WHERE public = 8"
} |
When 8 is the public and the result is safe what is the highest rank? | CREATE TABLE table_19744915_18 (rank INTEGER, result VARCHAR, public VARCHAR) | {
"SQL_Query": "SELECT MAX(rank) FROM table_19744915_18 WHERE result = \"Safe\" AND public = 8"
} |
Name the karen when nicky is 2.5 | CREATE TABLE table_19744915_4 (karen VARCHAR, nicky VARCHAR) | {
"SQL_Query": "SELECT karen FROM table_19744915_4 WHERE nicky = \"2.5\""
} |
What is the capacity for the school that has the Owl Athletic Complex baseball stadium? | CREATE TABLE table_1974545_3 (capacity VARCHAR, baseball_stadium VARCHAR) | {
"SQL_Query": "SELECT capacity FROM table_1974545_3 WHERE baseball_stadium = \"Owl Athletic Complex\""
} |
What is the name of the softball stadium for the school that has Eastern Baseball Stadium? | CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, baseball_stadium VARCHAR) | {
"SQL_Query": "SELECT softball_stadium FROM table_1974545_3 WHERE baseball_stadium = \"Eastern Baseball Stadium\""
} |
What is the name of UMass Boston's softball stadium? | CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT softball_stadium FROM table_1974545_3 WHERE school = \"UMass Boston\""
} |
What is the name of Rhode Island College's softball stadium? | CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT softball_stadium FROM table_1974545_3 WHERE school = \"Rhode Island College\""
} |
How many basketball arenas are there that belong to a school with a capacity of 3,000? | CREATE TABLE table_1974545_3 (basketball_arena VARCHAR, capacity VARCHAR) | {
"SQL_Query": "SELECT COUNT(basketball_arena) FROM table_1974545_3 WHERE capacity = \"3,000\""
} |
What is the name of the baseball stadium for the school with the Murray Center basketball arena? | CREATE TABLE table_1974545_3 (baseball_stadium VARCHAR, basketball_arena VARCHAR) | {
"SQL_Query": "SELECT baseball_stadium FROM table_1974545_3 WHERE basketball_arena = \"The Murray Center\""
} |
Where is the Westfield State University located? | CREATE TABLE table_1974545_2 (location VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT location FROM table_1974545_2 WHERE institution = \"Westfield State University\""
} |
When was the school in Salem, Massachusetts located? | CREATE TABLE table_1974545_2 (founded VARCHAR, location VARCHAR) | {
"SQL_Query": "SELECT founded FROM table_1974545_2 WHERE location = \"Salem, Massachusetts\""
} |
What's the nickname of Westfield State University's students? | CREATE TABLE table_1974545_2 (nickname VARCHAR, institution VARCHAR) | {
"SQL_Query": "SELECT nickname FROM table_1974545_2 WHERE institution = \"Westfield State University\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.