db_id
stringclasses
146 values
query
stringlengths
18
577
question
stringlengths
3
224
index
int64
0
7k
geo
SELECT highest_point FROM highlow WHERE state_name = "texas";
what is the high point of texas
200
geo
SELECT highest_point FROM highlow WHERE state_name = "texas";
what is the highest mountain in texas
201
geo
SELECT highest_point FROM highlow WHERE state_name = "texas";
could you tell me what is the highest point in the state of texas
202
geo
SELECT state_name FROM state WHERE state_name NOT IN ( SELECT state_name FROM border_info );
what states have no bordering state
203
geo
SELECT state_name FROM state WHERE state_name NOT IN ( SELECT state_name FROM border_info );
name the states which have no surrounding states
204
geo
SELECT state_name FROM state WHERE state_name NOT IN ( SELECT state_name FROM border_info );
which states border no other states
205
geo
SELECT area FROM state WHERE density = ( SELECT MIN ( density ) FROM state );
what is the area of the state with the smallest population density
206
geo
SELECT COUNT ( state_name ) FROM highlow WHERE lowest_elevation < ( SELECT lowest_elevation FROM highlow WHERE state_name = "alabama" );
count the states which have elevations lower than what alabama has
207
geo
SELECT highest_elevation FROM highlow WHERE highest_point = "guadalupe peak";
how high is guadalupe peak
208
geo
SELECT highest_elevation FROM highlow WHERE highest_point = "guadalupe peak";
how tall is guadalupe peak
209
geo
SELECT highest_elevation FROM highlow WHERE highest_point = "guadalupe peak";
what is the maximum elevation of guadalupe peak
210
geo
SELECT MAX ( highest_elevation ) FROM highlow;
how high is the highest point in america
211
geo
SELECT MAX ( highest_elevation ) FROM highlow;
what is the highest elevation in the united states
212
geo
SELECT MAX ( highest_elevation ) FROM highlow;
what is the elevation of the highest point in the usa
213
geo
SELECT MAX ( highest_elevation ) FROM highlow;
what is the height of the highest point in the usa
214
geo
SELECT LENGTH FROM river WHERE river_name = "rio grande";
how long is the rio grande river
215
geo
SELECT LENGTH FROM river WHERE river_name = "rio grande";
what is the length of the rio grande river
216
geo
SELECT LENGTH FROM river WHERE river_name = "rio grande";
what length is the rio grande
217
geo
SELECT LENGTH FROM river WHERE river_name = "rio grande";
how long is the rio grande
218
geo
SELECT LENGTH FROM river WHERE river_name = "rio grande";
how long is the rio grande river in miles
219
geo
SELECT LENGTH FROM river WHERE river_name = "rio grande";
how long is rio grande
220
geo
SELECT LENGTH FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
how long is the longest river in texas
221
geo
SELECT LENGTH FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" ) AND traverse = "texas";
what is the length of the longest river that runs through texas
222
geo
SELECT COUNT ( capital ) FROM state WHERE state_name = "rhode island";
how many capitals does rhode island have
223
geo
SELECT COUNT ( city_name ) FROM city;
how many cities are there in the united states
224
geo
SELECT COUNT ( city_name ) FROM city;
how many cities does the usa have
225
geo
SELECT COUNT ( city_name ) FROM city;
how many cities are there in the us
226
geo
SELECT COUNT ( city_name ) FROM city;
how many cities are there in usa
227
geo
SELECT COUNT ( city_name ) FROM city;
how many cities are there in us
228
geo
SELECT COUNT ( city_name ) FROM city WHERE population > 150000;
how many major cities are there
229
geo
SELECT population FROM city WHERE population = ( SELECT MAX ( population ) FROM city );
how many citizens does the biggest city have in the usa
230
geo
SELECT COUNT ( river_name ) FROM river WHERE river_name = "colorado";
how many colorado rivers are there
231
geo
SELECT COUNT ( river_name ) FROM river WHERE river_name = "colorado";
how many rivers are called colorado
232
geo
SELECT population FROM city WHERE city_name = "seattle" AND state_name = "washington";
what is the population of seattle washington
233
geo
SELECT population FROM city WHERE city_name = "seattle" AND state_name = "washington";
how many people live in seattle washington
234
geo
SELECT population FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "alaska" ) AND state_name = "alaska";
how many people live in the biggest city in alaska state
235
geo
SELECT population FROM city WHERE population = ( SELECT MAX ( population ) FROM city WHERE state_name = "alaska" ) AND state_name = "alaska";
how large is the largest city in alaska
236
geo
SELECT population FROM city WHERE city_name = ( SELECT capital FROM state WHERE state_name = "texas" );
how many people live in the capital of texas
237
geo
SELECT population FROM city WHERE city_name = ( SELECT capital FROM state WHERE state_name = "texas" );
what is the size of the capital of texas
238
geo
SELECT SUM ( population ) FROM state;
how many people live in the united states
239
geo
SELECT SUM ( population ) FROM state;
what is the combined population of all 50 states
240
geo
SELECT COUNT ( state_name ) FROM state;
how many states are in the usa
241
geo
SELECT COUNT ( state_name ) FROM state;
how many states are there
242
geo
SELECT COUNT ( state_name ) FROM state;
how many states are there in the usa
243
geo
SELECT COUNT ( state_name ) FROM state;
how many states does usa have
244
geo
SELECT COUNT ( state_name ) FROM state;
how many states are in the united states
245
geo
SELECT COUNT ( state_name ) FROM state;
how many states are there in united states
246
geo
SELECT COUNT ( border ) FROM border_info WHERE state_name = "kentucky";
how many states border kentucky
247
geo
SELECT COUNT ( border ) FROM border_info WHERE state_name = "kentucky";
how many states does kentucky border
248
geo
SELECT COUNT ( border ) FROM border_info WHERE state_name = "kentucky";
kentucky borders how many states
249
geo
SELECT COUNT ( border ) FROM border_info WHERE state_name = "kentucky";
number of states bordering kentucky
250
geo
SELECT COUNT ( border ) FROM border_info WHERE state_name = "kentucky";
what is the number of neighboring states for kentucky
251
geo
SELECT COUNT ( border ) FROM border_info WHERE state_name IN ( SELECT state_name FROM state WHERE population = ( SELECT MAX ( population ) FROM state ) );
how many states border the state with the largest population
252
geo
SELECT COUNT ( DISTINCT state_name ) FROM state WHERE state_name NOT IN ( SELECT traverse FROM river );
how many states do not have rivers
253
geo
SELECT COUNT ( state_name ) FROM highlow WHERE highest_elevation > ( SELECT highest_elevation FROM highlow WHERE state_name = ( SELECT state_name FROM state WHERE capital = ( SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city ) ) ) );
how many states have a higher point than the highest point of the state with the largest capital city in the us
254
geo
SELECT river_name FROM river WHERE LENGTH > 750 AND traverse = "illinois";
name the major rivers in illinois
255
geo
SELECT river_name FROM river WHERE LENGTH > 750 AND traverse = "illinois";
what are the major rivers in illinois
256
geo
SELECT river_name FROM river WHERE LENGTH > 750 AND traverse = "illinois";
what are major rivers in illinois
257
geo
SELECT river_name FROM river WHERE LENGTH > 750 AND traverse = "illinois";
what major rivers run through illinois
258
geo
SELECT traverse FROM river WHERE LENGTH = ( SELECT MAX ( LENGTH ) FROM river WHERE traverse = "texas" );
through which states does the longest river in texas run
259
geo
SELECT capital FROM state WHERE state_name = "texas";
what are the capital city in texas
260
geo
SELECT capital FROM state WHERE state_name = "texas";
what is the capital of texas
261
geo
SELECT capital FROM state WHERE state_name = "texas";
what is the capital of the texas state
262
geo
SELECT capital FROM state WHERE state_name = "texas";
what is capital of texas
263
geo
SELECT capital FROM state WHERE state_name = "texas";
what is the capital of the state texas
264
geo
SELECT capital FROM state WHERE state_name = "texas";
can you tell me the capital of texas
265
geo
SELECT t2.capital FROM state AS t2 JOIN border_info AS t1 ON t2.state_name = t1.border WHERE t1.state_name = "texas";
what are the capitals of states that border texas
266
geo
SELECT t2.capital FROM state AS t2 JOIN border_info AS t1 ON t2.state_name = t1.border WHERE t1.state_name = "texas";
what are the capital cities of the states which border texas
267
geo
SELECT t2.capital FROM state AS t2 JOIN border_info AS t1 ON t2.state_name = t1.border WHERE t1.state_name = "texas";
what are the capitals of the states that border texas
268
geo
SELECT t2.capital FROM state AS t2 JOIN border_info AS t1 ON t2.state_name = t1.border WHERE t1.state_name = "texas";
which capitals are in the states that border texas
269
geo
SELECT city_name FROM city WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the cities in states through which the mississippi runs
270
geo
SELECT city_name FROM city WHERE state_name IN ( SELECT state_name FROM highlow WHERE highest_elevation = ( SELECT MAX ( highest_elevation ) FROM highlow ) );
what are the cities of the state with the highest point
271
geo
SELECT highest_point FROM highlow;
what are the highest points of all the states
272
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name = "kansas";
what are the major cities in kansas
273
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name = "kansas";
what are the major cities in the state of kansas
274
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name = "kansas";
what major cities are located in kansas
275
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name = "kansas";
show major cities in kansas
276
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name = "kansas";
what are the names of the major cities in kansas
277
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name = "kansas";
what are the major cities of kansas
278
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name = "kansas";
what is the major cities in kansas
279
geo
SELECT city_name FROM city WHERE population > 150000 AND state_name IN ( SELECT traverse FROM river WHERE LENGTH > 750 AND river_name = "mississippi" );
what are the major cities in states through which the mississippi runs
280
geo
SELECT city_name FROM city WHERE population > 150000;
what are the major cities in the usa
281
geo
SELECT city_name FROM city WHERE population > 150000;
what are the major cities of the united states
282
geo
SELECT city_name FROM city WHERE population > 150000;
what are the major cities of the us
283
geo
SELECT density FROM state;
what are the population densities of each us state
284
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of states through which the mississippi river run
285
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of states through which the mississippi runs
286
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of the states through which the mississippi runs
287
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of states through which the mississippi river runs
288
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of the states through which the mississippi run
289
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of the states through which the mississippi river run
290
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of states through which the mississippi run
291
geo
SELECT population FROM state WHERE state_name IN ( SELECT traverse FROM river WHERE river_name = "mississippi" );
what are the populations of the states through which the mississippi river runs
292
geo
SELECT t2.population FROM state AS t2 JOIN border_info AS t1 ON t2.state_name = t1.border WHERE t1.state_name = "texas";
what are the populations of states which border texas
293
geo
SELECT population FROM city WHERE population > 150000 AND state_name = "wisconsin";
what are the populations of the major cities of wisconsin
294
geo
SELECT population FROM city WHERE population > 150000 AND state_name = "wisconsin";
what are the populations of all the major cities in wisconsin
295
geo
SELECT population FROM city WHERE population > 150000 AND state_name = "wisconsin";
what is the population of the major cities in wisconsin
296
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city );
what city has the most people
297
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city );
what city in the united states has the highest population density
298
geo
SELECT city_name FROM city WHERE population = ( SELECT MAX ( population ) FROM city );
what is the most populous city
299