Search is not available for this dataset
db_id
stringlengths
3
31
query
stringlengths
20
523
question
stringlengths
3
224
schema
stringlengths
589
322M
query_res
stringlengths
0
363k
culture_company
SELECT title , director FROM movie WHERE YEAR <= 2000 ORDER BY gross_worldwide DESC LIMIT 1
Return the title and director of the movie released in the year 2000 or earlier that had the highest worldwide gross.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('The Whole Nine Yards', 'Jonathan Lynn')
culture_company
SELECT director FROM movie WHERE YEAR = 2000 INTERSECT SELECT director FROM movie WHERE YEAR = 1999
Show all director names who have a movie in both year 1999 and 2000.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Anthony Hickox',)
culture_company
SELECT director FROM movie WHERE YEAR = 2000 INTERSECT SELECT director FROM movie WHERE YEAR = 1999
Which directors had a movie both in the year 1999 and 2000?
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Anthony Hickox',)
culture_company
SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000
Show all director names who have a movie in the year 1999 or 2000.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Troy Duffy',) ('John Swanbeck',) ('Anthony Hickox',) ('Anthony Hickox',) ('Jonathan Lynn',) ('Roger Christian',) ('Stephen Kay',) ('Christian Duguay',) ('Damian Lee',)
culture_company
SELECT director FROM movie WHERE YEAR = 1999 OR YEAR = 2000
Which directors had a movie in either 1999 or 2000?
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Troy Duffy',) ('John Swanbeck',) ('Anthony Hickox',) ('Anthony Hickox',) ('Jonathan Lynn',) ('Roger Christian',) ('Stephen Kay',) ('Christian Duguay',) ('Damian Lee',)
culture_company
SELECT avg(budget_million) , max(budget_million) , min(budget_million) FROM movie WHERE YEAR < 2000
What is the average, maximum, and minimum budget for all movies before 2000.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
(6.0, 7.0, 5.0)
culture_company
SELECT avg(budget_million) , max(budget_million) , min(budget_million) FROM movie WHERE YEAR < 2000
Return the average, maximum, and minimum budgets in millions for movies made before the year 2000.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
(6.0, 7.0, 5.0)
culture_company
SELECT T1.company_name FROM culture_company AS T1 JOIN book_club AS T2 ON T1.book_club_id = T2.book_club_id WHERE T2.publisher = 'Alyson'
List all company names with a book published by Alyson.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Culture China',)
culture_company
SELECT T1.company_name FROM culture_company AS T1 JOIN book_club AS T2 ON T1.book_club_id = T2.book_club_id WHERE T2.publisher = 'Alyson'
What are all the company names that have a book published by Alyson?
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Culture China',)
culture_company
SELECT T1.title , T3.book_title FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id JOIN book_club AS T3 ON T3.book_club_id = T2.book_club_id WHERE T2.incorporated_in = 'China'
Show the movie titles and book titles for all companies in China.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('The Big Kahuna', 'Goldenboy') ('Storm Catcher', 'Death Takes the Stage')
culture_company
SELECT T1.title , T3.book_title FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id JOIN book_club AS T3 ON T3.book_club_id = T2.book_club_id WHERE T2.incorporated_in = 'China'
What are the titles of movies and books corresponding to companies incorporated in China?
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('The Big Kahuna', 'Goldenboy') ('Storm Catcher', 'Death Takes the Stage')
culture_company
SELECT T2.company_name FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id WHERE T1.year = 1999
Show all company names with a movie directed in year 1999.
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Culture China',) ('Culture China Cargo',)
culture_company
SELECT T2.company_name FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id WHERE T1.year = 1999
What are all company names that have a corresponding movie directed in the year 1999?
PRAGMA foreign_keys = ON; CREATE TABLE "book_club" ( "book_club_id" int, "Year" int, "Author_or_Editor" text, "Book_Title" text, "Publisher" text, "Category" text, "Result" text, PRIMARY KEY ("book_club_id") ); INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); INSE...
('Culture China',) ('Culture China Cargo',)
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what is the biggest city in wyoming
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what wyoming city has the largest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what is the largest city in wyoming
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
where is the most populated area of wyoming
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
which city in wyoming has the largest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what cities in wyoming have the highest number of citizens
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what cities in wyoming have the highest populations
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what is the most populous city in wyoming
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what is the largest city in wyoming by population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what is the largest city of wyoming
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "wyoming" ) AND state_name = "wyoming";
what is the city in wyoming with the largest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT river_name FROM river WHERE traverse IN ( SELECT state_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city ) );
which rivers run through the state with the largest city in the us
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT area FROM state WHERE state_name = "new mexico";
how big is new mexico
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT area FROM state WHERE state_name = "new mexico";
what is the area of new mexico
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT area FROM state WHERE state_name = "new mexico";
how large is new mexico
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT area FROM state WHERE state_name = "new mexico";
what is the area of the new mexico state
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT area FROM state WHERE state_name = "new mexico";
what is the size of new mexico
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT area FROM state WHERE state_name = "new mexico";
what is the area of new mexico in square kilometers
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many people live in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many people reside in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many residents live in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how much population does california have
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
what are the population of california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
what is the population of california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many people are in the state of california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
what can you tell me about the population of california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many people are there in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many citizens in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many people stay in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT population FROM state WHERE state_name = "california";
how many citizens live in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MIN ( population ) FROM state );
what state has the smallest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MIN ( population ) FROM state );
what is the least populous state
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MIN ( population ) FROM state );
what is the state with the lowest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE state_name = "texas";
give me the cities in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE state_name = "texas";
tell me what cities are in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE state_name = "texas";
what cities are located in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE state_name = "texas";
what are the cities in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE state_name = "texas";
what cities in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT city_name FROM city WHERE state_name = "texas";
give me the cities which are in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT area FROM state WHERE capital = "albany";
what is the area of the state with the capital albany
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT lake_name FROM lake WHERE state_name = "california";
give me the lakes in california
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT lake_name FROM lake WHERE area > 750 AND state_name = "michigan";
name the major lakes in michigan
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state;
what are the states
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state;
list the states
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state;
give me all the states of usa
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
which states do ohio river flow through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
what states does the ohio river run through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
what states border the ohio river
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
which states border the ohio river
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
what states does the ohio run through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
where is the ohio river
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
which states does the ohio river run through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
which states does the ohio run through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
which states does the ohio river pass through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
what are the states that the ohio run through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
which state has the ohio river
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
what states have rivers named ohio
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
through which states does the ohio flow
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
what states are next to the ohio
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
through which states does the ohio run
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT traverse FROM river WHERE river_name = "ohio";
what states does the ohio river go through
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
what state has the largest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
what is the most populous state
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
what state is the largest in population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
which state has the biggest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
which state has the greatest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
which state has the most population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
what state has the most people
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
which state has the most people
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
what is the most populous state in the us
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state );
what state has the highest population
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT lowest_elevation FROM highlow WHERE state_name = "pennsylvania";
what is the lowest elevation in pennsylvania
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT highest_point , state_name FROM highlow WHERE lowest_elevation = 0;
what is the highest point in each state whose lowest point is sea level
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT LENGTH FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river );
what is the length of the longest river in the usa
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT LENGTH FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river );
how long is the longest river in the usa
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT river_name FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
what is the longest river flowing through texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT river_name FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
what is the largest river in texas state
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT river_name FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
what is the longest river in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT river_name FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
what is the biggest river in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT river_name FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
what is the longest river that flows through texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT river_name FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
what are the biggest rivers in texas
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
geo
SELECT COUNT ( river_name ) FROM river WHERE traverse = "idaho";
how many rivers are in idaho
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
(0,)
geo
SELECT COUNT ( river_name ) FROM river WHERE traverse = "idaho";
give me the number of rivers in idaho
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
(0,)
geo
SELECT COUNT ( river_name ) FROM river WHERE traverse = "idaho";
how many rivers does idaho have
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
(0,)
geo
SELECT COUNT ( river_name ) FROM river WHERE traverse = "idaho";
how many rivers are there in idaho
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
(0,)
geo
SELECT COUNT ( river_name ) FROM river WHERE traverse = "idaho";
how many rivers run through idaho
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
(0,)
geo
SELECT COUNT ( river_name ) FROM river WHERE traverse = "idaho";
how many rivers are found in idaho
PRAGMA foreign_keys = ON; CREATE TABLE `state` ( `state_name` text , `population` integer DEFAULT NULL , `area` double DEFAULT NULL , `country_name` varchar(3) NOT NULL DEFAULT '' , `capital` text , `density` double DEFAULT NULL , PRIMARY KEY (`state_name`) ); CREATE TABLE `city` ( `city_name` text , `popu...
(0,)