source
stringlengths 17
113
| target
stringlengths 8
165
|
---|---|
how many people live in the capital of georgia ?
|
(population(B,A),capital(B),loc(B,C),const(C,stateid(georgia)))
|
how many people live in the capital of texas ?
|
(population(B,A),capital(B),loc(B,C),const(C,stateid(texas)))
|
how many people live in the smallest state bordering wyoming ?
|
(population(B,A),smallest(B,(state(B),next_to(B,C),const(C,stateid(wyoming)))))
|
how many people live in the state with the largest population density ?
|
(population(B,A),largest(C,(state(B),density(B,C))))
|
how many people live in the united states ?
|
(population(B,A),const(B,countryid(usa)))
|
how many people live in washington ?
|
(population(B,A),const(B,stateid(washington)))
|
how many people live in washington dc ?
|
(population(B,A),const(B,cityid(washington,dc)))
|
how many people lived in austin ?
|
(population(B,A),const(B,cityid(austin,_)))
|
how many people reside in utah ?
|
(population(B,A),const(B,stateid(utah)))
|
how many people stay in utah ?
|
(population(B,A),const(B,stateid(utah)))
|
how many residents live in texas ?
|
(population(B,A),const(B,stateid(texas)))
|
how many rivers are called colorado ?
|
count(B,(river(B),const(B,riverid(colorado))),A)
|
how many rivers are found in colorado ?
|
count(B,(river(B),loc(B,C),const(C,stateid(colorado))),A)
|
how many rivers are in colorado ?
|
count(B,(river(B),loc(B,C),const(C,stateid(colorado))),A)
|
how many rivers are in iowa ?
|
count(B,(river(B),loc(B,C),const(C,stateid(iowa))),A)
|
how many rivers are in missouri ?
|
count(B,(river(B),loc(B,C),const(C,stateid(missouri))),A)
|
how many rivers are in new york ?
|
count(B,(river(B),loc(B,C),const(C,stateid('new york'))),A)
|
how many rivers are in the state that has the most rivers ?
|
count(B,(river(B),loc(B,C),most(C,D,(state(C),loc(D,C),river(D)))),A)
|
how many rivers are in the state with the highest point ?
|
count(B,(river(B),loc(B,C),state(C),loc(D,C),highest(D,place(D))),A)
|
how many rivers are in the state with the largest population ?
|
count(B,(river(B),loc(B,C),largest(D,(state(C),population(C,D)))),A)
|
how many rivers are there in idaho ?
|
count(B,(river(B),loc(B,C),const(C,stateid(idaho))),A)
|
how many rivers are there in texas ?
|
count(B,(river(B),loc(B,C),const(C,stateid(texas))),A)
|
how many rivers are there in us ?
|
count(B,(river(B),loc(B,C),const(C,countryid(usa))),A)
|
how many rivers do not traverse the state with the capital albany ?
|
count(B,(river(B),\+ (traverse(B,C),state(C),loc(D,C),capital(D),const(D,cityid(albany,_)))),A)
|
how many rivers does alaska have ?
|
count(B,(river(B),const(C,stateid(alaska)),loc(B,C)),A)
|
how many rivers does colorado have ?
|
count(B,(river(B),const(C,stateid(colorado)),loc(B,C)),A)
|
how many rivers in texas are longer than the red ?
|
count(B,(river(B),loc(B,C),const(C,stateid(texas)),longer(B,D),const(D,riverid(red))),A)
|
how many rivers in washington ?
|
count(B,(river(B),loc(B,C),const(C,stateid(washington))),A)
|
how many rivers run through texas ?
|
count(B,(river(B),traverse(B,C),const(C,stateid(texas))),A)
|
how many rivers run through the states bordering colorado ?
|
count(B,(river(B),traverse(B,C),state(C),next_to(C,D),const(D,stateid(colorado))),A)
|
how many square kilometers in the us ?
|
(area(B,A),const(B,countryid(usa)))
|
how many states are in the united states ?
|
count(B,(state(B),loc(B,C),const(C,countryid(usa))),A)
|
how many states are in the usa ?
|
count(B,(state(B),loc(B,C),const(C,countryid(usa))),A)
|
how many states are next to major rivers ?
|
count(B,(state(B),next_to(B,C),major(C),river(C)),A)
|
how many states are there ?
|
count(B,state(B),A)
|
how many states are there in the usa ?
|
count(B,(state(B),loc(B,C),const(C,countryid(usa))),A)
|
how many states are there in united states ?
|
count(B,(state(B),loc(B,C),const(C,countryid(usa))),A)
|
how many states border alaska ?
|
count(B,(state(B),next_to(B,C),const(C,stateid(alaska))),A)
|
how many states border at least one other state ?
|
count(B,(state(B),next_to(B,C),state(C)),A)
|
how many states border colorado and border new mexico ?
|
count(B,(state(B),next_to(B,C),const(C,stateid(colorado)),next_to(B,D),const(D,stateid('new mexico'))),A)
|
how many states border hawaii ?
|
count(B,(state(B),next_to(B,C),const(C,stateid(hawaii))),A)
|
how many states border iowa ?
|
count(B,(state(B),next_to(B,C),const(C,stateid(iowa))),A)
|
how many states border on the state whose capital is boston ?
|
count(B,(state(B),next_to(B,C),state(C),loc(D,C),capital(D),const(D,cityid(boston,_))),A)
|
how many states border tennessee ?
|
count(B,(state(B),next_to(B,C),const(C,stateid(tennessee))),A)
|
how many states border texas ?
|
count(B,(state(B),next_to(B,C),const(C,stateid(texas))),A)
|
how many states border the largest state ?
|
count(B,(state(B),next_to(B,C),largest(C,state(C))),A)
|
how many states border the mississippi river ?
|
count(B,(state(B),next_to(B,C),const(C,riverid(mississippi)),river(C)),A)
|
how many states border the state that borders the most states ?
|
count(B,(state(B),next_to(B,C),most(C,D,(state(C),next_to(C,D),state(D)))),A)
|
how many states border the state with the largest population ?
|
count(B,(state(B),next_to(B,C),largest(D,(state(C),population(C,D)))),A)
|
how many states do not have rivers ?
|
count(B,(state(B),\+ (loc(C,B),river(C))),A)
|
how many states does iowa border ?
|
count(B,(state(B),const(C,stateid(iowa)),next_to(C,B)),A)
|
how many states does missouri border ?
|
count(B,(state(B),const(C,stateid(missouri)),next_to(C,B)),A)
|
how many states does tennessee border ?
|
count(B,(state(B),const(C,stateid(tennessee)),next_to(C,B)),A)
|
how many states does the colorado river flow through ?
|
count(B,(state(B),const(C,riverid(colorado)),river(C),traverse(C,B)),A)
|
how many states does the colorado river run through ?
|
count(B,(state(B),const(C,riverid(colorado)),river(C),traverse(C,B)),A)
|
how many states does the mississippi river run through ?
|
count(B,(state(B),const(C,riverid(mississippi)),river(C),traverse(C,B)),A)
|
how many states does the mississippi run through ?
|
count(B,(state(B),const(C,riverid(mississippi)),traverse(C,B)),A)
|
how many states does the missouri river run through ?
|
count(B,(state(B),const(C,riverid(missouri)),river(C),traverse(C,B)),A)
|
how many states does usa have ?
|
count(B,(state(B),const(C,countryid(usa)),loc(B,C)),A)
|
how many states have a city called rochester ?
|
count(B,(state(B),loc(C,B),const(C,cityid(rochester,_))),A)
|
how many states have a city named springfield ?
|
count(B,(state(B),loc(C,B),const(C,cityid(springfield,_))),A)
|
how many states have a higher point than the highest point of the state with the largest capital city in the us ?
|
count(B,(state(B),loc(C,B),higher(C,D),place(C),highest(D,(place(D),loc(D,E),state(E),loc(F,E),largest(F,(capital(F),city(F),loc(F,G),const(G,countryid(usa))))))),A)
|
how many states have cites named austin ?
|
count(B,(state(B),loc(C,B),city(C),const(C,cityid(austin,_))),A)
|
how many states have cities or towns named springfield ?
|
count(B,(state(B),loc(C,B),city(C),const(C,cityid(springfield,_))),A)
|
how many states have major rivers ?
|
count(B,(state(B),loc(C,B),major(C),river(C)),A)
|
how many states in the us does the shortest river run through ?
|
count(B,(state(B),loc(B,C),const(C,countryid(usa)),shortest(D,river(D)),traverse(D,B)),A)
|
how much population does texas have ?
|
(population(B,A),const(B,stateid(texas)))
|
how tall is mount mckinley ?
|
(elevation(B,A),const(B,placeid('mount mckinley')))
|
how tall is the highest point in montana ?
|
(elevation(B,A),highest(B,(place(B),loc(B,C),const(C,stateid(montana)))))
|
in what state is mount mckinley ?
|
(loc(B,A),state(A),const(B,placeid('mount mckinley')))
|
in which state does the highest point in usa exist ?
|
(loc(B,A),state(A),highest(B,(place(B),loc(B,C),const(C,countryid(usa)))))
|
in which state is rochester ?
|
(loc(B,A),state(A),const(B,cityid(rochester,_)))
|
iowa borders how many states ?
|
count(B,(const(C,stateid(iowa)),next_to(C,B),state(B)),A)
|
list the states ?
|
state(A)
|
name all the lakes of us ?
|
(lake(A),loc(A,B),const(B,countryid(usa)))
|
name all the rivers in colorado ?
|
(river(A),loc(A,B),const(B,stateid(colorado)))
|
name the 50 capitals in the usa ?
|
(capital(A),loc(A,B),const(B,countryid(usa)))
|
name the longest river in us ?
|
longest(A,(river(A),loc(A,B),const(B,countryid(usa))))
|
name the major lakes in michigan ?
|
(major(A),lake(A),loc(A,B),const(B,stateid(michigan)))
|
name the major rivers in florida ?
|
(major(A),river(A),loc(A,B),const(B,stateid(florida)))
|
name the rivers in arkansas ?
|
(river(A),loc(A,B),const(B,stateid(arkansas)))
|
name the states which have no surrounding states ?
|
(state(A),\+ (next_to(A,B),state(B)))
|
number of citizens in boulder ?
|
(population(B,A),const(B,cityid(boulder,_)))
|
number of people in boulder ?
|
(population(B,A),const(B,cityid(boulder,_)))
|
number of states bordering iowa ?
|
count(B,(state(B),next_to(B,C),const(C,stateid(iowa))),A)
|
of the states washed by the mississippi river which has the lowest point ?
|
lowest(B,(state(A),traverse(C,A),const(C,riverid(mississippi)),loc(B,A),place(B)))
|
people in boulder ?
|
(population(B,A),const(B,cityid(boulder,_)))
|
population of boulder ?
|
(population(B,A),const(B,cityid(boulder,_)))
|
rivers in new york ?
|
(river(A),loc(A,B),const(B,stateid('new york')))
|
sacramento is the capital of which state ?
|
(const(B,cityid(sacramento,_)),capital(B),loc(B,A),state(A))
|
san antonio is in what state ?
|
(const(B,cityid('san antonio',_)),loc(B,A),state(A))
|
show major cities in colorado ?
|
(major(A),city(A),loc(A,B),const(B,stateid(colorado)))
|
show me all the major lakes in the us ?
|
(major(A),lake(A),loc(A,B),const(B,countryid(usa)))
|
state the state with the largest area ?
|
(state(A),largest(B,(state(A),area(A,B))))
|
states bordering iowa ?
|
(state(A),next_to(A,B),const(B,stateid(iowa)))
|
tell me what cities are in texas ?
|
(city(A),loc(A,B),const(B,stateid(texas)))
|
through which states does the longest river in texas run ?
|
(longest(B,(river(B),loc(B,C),const(C,stateid(texas)))),traverse(B,A))
|
through which states does the mississippi flow ?
|
(state(A),const(B,riverid(mississippi)),traverse(B,A))
|
through which states does the mississippi run ?
|
(state(A),const(B,riverid(mississippi)),traverse(B,A))
|
what are all the rivers in texas ?
|
(river(A),loc(A,B),const(B,stateid(texas)))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.