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