combined_text
stringlengths
106
1.05k
###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 WHERE census_2006_population > 425208.9417698913 AND administrative_capital = "Port Harcourt"###context:CREATE TABLE table_1966992...
###question:What is the administrative capital of LGA name Akuku-Toru?###answer: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 that has a 2006 census population of 249425?###answer: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 maximum 2006 census population of LGA name Opobo/Nkoro?###answer: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's the minimal enrollment of any of the schools?###answer:SELECT MIN(enrollment) FROM table_1969577_3###context:CREATE TABLE table_1969577_3 (enrollment INTEGER)
###question:When was the school whose students are nicknamed Rams founded?###answer:SELECT MAX(founded) FROM table_1969577_3 WHERE nickname = "Rams"###context:CREATE TABLE table_1969577_3 (founded INTEGER, 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"###context:CREATE TABLE table_1969577_3 (type VARCHAR, nickname VARCHAR)
###question:When was the school in Philadelphia, Pennsylvania founded?###answer:SELECT founded FROM table_1969577_3 WHERE location = "Philadelphia, Pennsylvania"###context:CREATE TABLE table_1969577_3 (founded VARCHAR, location 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"###context:CREATE TABLE table_19698421_1 (total_votes INTEGER, year 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###context:CREATE TABLE table_19698421_1 (change__percentage_points_ VARCHAR, average_voters_per_candidate VARCHAR)
###question:How many candidates were there in the year of 1987?###answer:SELECT number_of_candidates FROM table_19698421_1 WHERE year = "1987"###context:CREATE TABLE table_19698421_1 (number_of_candidates VARCHAR, year 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"###context:CREATE TABLE table_19704392_1 (modified_torque__lb_ft_ VARCHAR, standard_hp 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"###context:CREATE TABLE table_19704392_1 (rpm INTEGER, 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"###context:CREATE TABLE table_19704392_1 (rpm VARCHAR, standard_speed__6th_gear_ 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 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_...
###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_ = "98"###context:CREATE TABLE table_19704392_1 (modified_speed__6th_gear_ INTEGER, standard_speed__6th_gear_ 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"###context:CREATE TABLE table_19704392_1 (modified_hp VARCHAR, standard_torque__lb_ft_ VARCHAR)
###question:how many assists did the player who played 195 minutes make###answer:SELECT assists FROM table_19722233_5 WHERE minutes = 195###context:CREATE TABLE table_19722233_5 (assists VARCHAR, minutes VARCHAR)
###question:what is the lowest number of blocks###answer:SELECT MIN(blocks) FROM table_19722233_5###context:CREATE TABLE table_19722233_5 (blocks INTEGER)
###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###context:CREATE TABLE table_19722233_5 (points INTEGER, blocks VARCHAR)
###question:how many times did debbie black block###answer:SELECT blocks FROM table_19722233_5 WHERE player = "Debbie Black"###context:CREATE TABLE table_19722233_5 (blocks VARCHAR, player 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###context:CREATE TABLE table_19722233_5 (field_goals INTEGER, assists VARCHAR)
###question:how many assists did the player who scored 251 points make###answer:SELECT assists FROM table_19722233_5 WHERE points = 251###context:CREATE TABLE table_19722233_5 (assists VARCHAR, points 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"###context:CREATE TABLE table_1971734_1 (prod__number VARCHAR, filmed VARCHAR)
###question:What's the highest enrollment among the schools?###answer:SELECT MAX(enrollment) FROM table_1971074_1###context:CREATE TABLE table_1971074_1 (enrollment INTEGER)
###question:When did the school from Logan Township, Pennsylvania join the Conference?###answer:SELECT joined FROM table_1971074_1 WHERE location = "Logan Township, Pennsylvania"###context:CREATE TABLE table_1971074_1 (joined VARCHAR, location VARCHAR)
###question:When was the private/non-sectarian school founded?###answer:SELECT founded FROM table_1971074_1 WHERE type = "Private/Non-sectarian"###context:CREATE TABLE table_1971074_1 (founded VARCHAR, type VARCHAR)
###question:Where is the school whose students are nicknamed Panthers located?###answer:SELECT location FROM table_1971074_1 WHERE nickname = "Panthers"###context:CREATE TABLE table_1971074_1 (location 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"###context:CREATE TABLE table_1971074_1 (enrollment VARCHAR, nickname 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"###context:CREATE TABLE table_1971074_1 (joined VARCHAR, location 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"###context:CREATE TABLE table_19716903_1 (isolation VARCHAR, mountain_peak VARCHAR)
###question:How many steals did Nicole Levandusky make?###answer:SELECT steals FROM table_19722664_5 WHERE player = "Nicole Levandusky"###context:CREATE TABLE table_19722664_5 (steals VARCHAR, player VARCHAR)
###question:How many rebounds did Rhonda Mapp make?###answer:SELECT MAX(rebounds) FROM table_19722664_5 WHERE player = "Rhonda Mapp"###context:CREATE TABLE table_19722664_5 (rebounds 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"###context:CREATE TABLE table_19722664_5 (assists INTEGER, player VARCHAR)
###question:What is the maximum number of blocks where rebounds equal 35?###answer:SELECT MAX(blocks) FROM table_19722664_5 WHERE rebounds = 35###context:CREATE TABLE table_19722664_5 (blocks INTEGER, rebounds VARCHAR)
###question:How many assists did Delisha Milton-Jones make?###answer:SELECT assists FROM table_19722664_5 WHERE player = "DeLisha Milton-Jones"###context:CREATE TABLE table_19722664_5 (assists VARCHAR, player VARCHAR)
###question:Name the total apps for eddie carr###answer: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 fa cup apps for arthur morton###answer: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 position for billy price###answer:SELECT position FROM table_19730892_1 WHERE name = "Billy Price"###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"###context:CREATE TABLE table_19730892_1 (position VARCHAR, name VARCHAR)
###question:Name the nation where jeff barker is from###answer:SELECT nation FROM table_19730892_1 WHERE name = "Jeff Barker"###context:CREATE TABLE table_19730892_1 (nation 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"###context:CREATE TABLE table_19730892_1 (fa_cup_apps VARCHAR, name VARCHAR)
###question:Name the school that was founded in 1950###answer:SELECT institution FROM table_1973648_1 WHERE founded = 1950###context:CREATE TABLE table_1973648_1 (institution VARCHAR, founded VARCHAR)
###question:Name the most founded for sea gulls###answer:SELECT MAX(founded) FROM table_1973648_1 WHERE nickname = "Sea Gulls"###context:CREATE TABLE table_1973648_1 (founded INTEGER, nickname VARCHAR)
###question:Name the location for eagles###answer:SELECT location FROM table_1973648_1 WHERE nickname = "Eagles"###context:CREATE TABLE table_1973648_1 (location VARCHAR, nickname VARCHAR)
###question:Name the enrollment for 2007-08###answer:SELECT enrollment FROM table_1973648_1 WHERE joined = "2007-08"###context:CREATE TABLE table_1973648_1 (enrollment VARCHAR, joined VARCHAR)
###question:Name the least new points for steffi graf###answer: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 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"###context:CREATE TABLE table_1973321_5 (points INTEGER, status 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"###context:CREATE TABLE table_197286_4 (further_cities VARCHAR, country VARCHAR, direction VARCHAR)
###question:Name the distance from north###answer:SELECT distance FROM table_197286_4 WHERE direction = "North"###context:CREATE TABLE table_197286_4 (distance VARCHAR, direction VARCHAR)
###question:Name the further cities for east romania###answer: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 number of direction for debrecen###answer:SELECT COUNT(direction) FROM table_197286_4 WHERE further_cities = "Debrecen"###context:CREATE TABLE table_197286_4 (direction VARCHAR, further_cities 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###context:CREATE TABLE table_1973816_1 (nickname VARCHAR, founded 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"###context:CREATE TABLE table_1973816_1 (location VARCHAR, institution 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"###context:CREATE TABLE table_1973842_1 (joined VARCHAR, location VARCHAR)
###question:What is the type of the school whose students' nickname is tigers?###answer:SELECT type FROM table_1973842_1 WHERE nickname = "Tigers"###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"###context:CREATE TABLE table_1973842_1 (type VARCHAR, nickname VARCHAR)
###question:What school is located in Chestnut Hill, Massachusetts?###answer:SELECT institution FROM table_1973842_1 WHERE location = "Chestnut Hill, Massachusetts"###context:CREATE TABLE table_1973842_1 (institution VARCHAR, location VARCHAR)
###question:What type is the school located in Macon, Georgia?###answer:SELECT type FROM table_1973842_1 WHERE location = "Macon, Georgia"###context:CREATE TABLE table_1973842_1 (type 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"###context:CREATE TABLE table_1973842_2 (nickname VARCHAR, location VARCHAR)
###question:Where is the school with nickname Tigers located?###answer:SELECT location FROM table_1973842_2 WHERE nickname = "Tigers"###context:CREATE TABLE table_1973842_2 (location VARCHAR, nickname 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###context:CREATE TABLE table_1973842_2 (nickname VARCHAR, joined VARCHAR)
###question:When was Daniel Webster College founded?###answer:SELECT founded FROM table_1973816_2 WHERE institution = "Daniel Webster College"###context:CREATE TABLE table_1973816_2 (founded VARCHAR, institution VARCHAR)
###question:Where is Southern Vermont College located?###answer:SELECT location FROM table_1973816_2 WHERE institution = "Southern Vermont College"###context:CREATE TABLE table_1973816_2 (location VARCHAR, institution VARCHAR)
###question:In what year did the school with enrollment of 650 leave?###answer:SELECT left FROM table_1973816_2 WHERE enrollment = 650###context:CREATE TABLE table_1973816_2 (left VARCHAR, enrollment 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"###context:CREATE TABLE table_19741316_1 (races INTEGER, position VARCHAR)
###question:What is the lowest number of wins of a team?###answer:SELECT MIN(wins) FROM table_19741316_1###context:CREATE TABLE table_19741316_1 (wins INTEGER)
###question:Name the institution for statesmen###answer:SELECT institution FROM table_1974482_1 WHERE nickname = "Statesmen"###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"###context:CREATE TABLE table_1974482_1 (institution VARCHAR, nickname VARCHAR)
###question:Name the type for hobart college###answer:SELECT type FROM table_1974482_1 WHERE institution = "Hobart College"###context:CREATE TABLE table_1974482_1 (type VARCHAR, institution VARCHAR)
###question:Name the location for 1829###answer:SELECT location FROM table_1974482_1 WHERE founded = 1829###context:CREATE TABLE table_1974482_1 (location VARCHAR, founded VARCHAR)
###question:Name the location of statesmen###answer:SELECT location FROM table_1974482_1 WHERE nickname = "Statesmen"###context:CREATE TABLE table_1974482_1 (location VARCHAR, nickname 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"###context:CREATE TABLE table_197446_1 (location VARCHAR, term_ended 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"###context:CREATE TABLE table_197446_1 (branch 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"###context:CREATE TABLE table_197446_1 (elected VARCHAR, term_began 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"###context:CREATE TABLE table_197446_1 (office 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"###context:CREATE TABLE table_197446_1 (term_began VARCHAR, term_ended 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###context:CREATE TABLE table_19744915_22 (total VARCHAR, rank VARCHAR)
###question:What couple had vote percentage of 21.843%?###answer:SELECT couple FROM table_19744915_22 WHERE vote_percentage = "21.843%"###context:CREATE TABLE table_19744915_22 (couple VARCHAR, vote_percentage 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###context:CREATE TABLE table_19744915_22 (judges INTEGER, rank VARCHAR)
###question:What couple had less than 2.0 points from the public?###answer:SELECT couple FROM table_19744915_22 WHERE public < 2.0###context:CREATE TABLE table_19744915_22 (couple VARCHAR, public INTEGER)
###question:What was the total result for couple Ellery and Frankie?###answer:SELECT COUNT(result) FROM table_19744915_17 WHERE couple = "Ellery and Frankie"###context:CREATE TABLE table_19744915_17 (result VARCHAR, couple 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%"###context:CREATE TABLE table_19744915_17 (rank INTEGER, vote_percentage VARCHAR)
###question:If the total is 17, what was the maximum rank amount?###answer:SELECT MAX(rank) FROM table_19744915_17 WHERE total = 17###context:CREATE TABLE table_19744915_17 (rank INTEGER, total 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"###context:CREATE TABLE table_19744915_17 (vote_percentage VARCHAR, couple VARCHAR)
###question:When 9 is the rank who are the couple?###answer:SELECT couple FROM table_19744915_18 WHERE rank = 9###context:CREATE TABLE table_19744915_18 (couple VARCHAR, rank 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"###context:CREATE TABLE table_19744915_18 (rank 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"###context:CREATE TABLE table_19744915_18 (total INTEGER, couple VARCHAR)
###question:When 8 is the public what are the results?###answer: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 and the result is safe what is the highest rank?###answer: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:Name the karen when nicky is 2.5###answer:SELECT karen FROM table_19744915_4 WHERE nicky = "2.5"###context:CREATE TABLE table_19744915_4 (karen VARCHAR, nicky 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"###context:CREATE TABLE table_1974545_3 (capacity 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"###context:CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, baseball_stadium VARCHAR)
###question:What is the name of UMass Boston's softball stadium?###answer: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 Rhode Island College's softball stadium?###answer:SELECT softball_stadium FROM table_1974545_3 WHERE school = "Rhode Island College"###context:CREATE TABLE table_1974545_3 (softball_stadium VARCHAR, school 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"###context:CREATE TABLE table_1974545_3 (basketball_arena VARCHAR, capacity 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"###context:CREATE TABLE table_1974545_3 (baseball_stadium VARCHAR, basketball_arena VARCHAR)
###question:Where is the Westfield State University located?###answer:SELECT location FROM table_1974545_2 WHERE institution = "Westfield State University"###context:CREATE TABLE table_1974545_2 (location VARCHAR, institution VARCHAR)
###question:When was the school in Salem, Massachusetts located?###answer:SELECT founded FROM table_1974545_2 WHERE location = "Salem, Massachusetts"###context:CREATE TABLE table_1974545_2 (founded VARCHAR, location VARCHAR)
###question:What's the nickname of Westfield State University's students?###answer:SELECT nickname FROM table_1974545_2 WHERE institution = "Westfield State University"###context:CREATE TABLE table_1974545_2 (nickname VARCHAR, institution VARCHAR)