source
stringlengths 17
113
| target
stringlengths 8
165
|
---|---|
what major rivers run through illinois ?
|
(major(A),river(A),traverse(A,B),const(B,stateid(illinois)))
|
what mountains are in alaska ?
|
(mountain(A),loc(A,B),const(B,stateid(alaska)))
|
what river flows through kansas ?
|
(river(A),traverse(A,B),const(B,stateid(kansas)))
|
what river flows through texas ?
|
(river(A),traverse(A,B),const(B,stateid(texas)))
|
what river flows through the most states ?
|
most(A,B,(river(A),traverse(A,B),state(B)))
|
what river is the longest one in the united states ?
|
longest(A,(river(A),loc(A,B),const(B,countryid(usa))))
|
what river runs through illinois ?
|
(river(A),traverse(A,B),const(B,stateid(illinois)))
|
what river runs through the most states ?
|
most(A,B,(river(A),traverse(A,B),state(B)))
|
what river runs through the state with the most cities ?
|
(river(A),traverse(A,B),most(B,C,(state(B),loc(C,B),city(C))))
|
what river runs through virginia ?
|
(river(A),traverse(A,B),const(B,stateid(virginia)))
|
what river traverses the most states ?
|
most(A,B,(river(A),traverse(A,B),state(B)))
|
what river traverses the state which borders the most states ?
|
(river(A),traverse(A,B),most(B,C,(state(B),next_to(B,C),state(C))))
|
what rivers are in nevada ?
|
(river(A),loc(A,B),const(B,stateid(nevada)))
|
what rivers are in new mexico ?
|
(river(A),loc(A,B),const(B,stateid('new mexico')))
|
what rivers are in oregon ?
|
(river(A),loc(A,B),const(B,stateid(oregon)))
|
what rivers are in states that border texas ?
|
(river(A),loc(A,B),state(B),next_to(B,C),const(C,stateid(texas)))
|
what rivers are in texas ?
|
(river(A),loc(A,B),const(B,stateid(texas)))
|
what rivers are in utah ?
|
(river(A),loc(A,B),const(B,stateid(utah)))
|
what rivers are there in texas ?
|
(river(A),loc(A,B),const(B,stateid(texas)))
|
what rivers do not run through tennessee ?
|
(river(A),\+ (traverse(A,B),const(B,stateid(tennessee))))
|
what rivers flow though colorado ?
|
(river(A),traverse(A,B),const(B,stateid(colorado)))
|
what rivers flow through missouri ?
|
(river(A),traverse(A,B),const(B,stateid(missouri)))
|
what rivers flow through states that alabama borders ?
|
(river(A),traverse(A,B),state(B),const(C,stateid(alabama)),next_to(C,B))
|
what rivers flow through states that border the state with the largest population ?
|
(river(A),traverse(A,B),state(B),next_to(B,C),largest(D,(state(C),population(C,D))))
|
what rivers flow through the largest state ?
|
(river(A),traverse(A,B),largest(B,state(B)))
|
what rivers flow through the state with the largest population ?
|
(river(A),traverse(A,B),largest(C,(state(B),population(B,C))))
|
what rivers run through arizona ?
|
(river(A),traverse(A,B),const(B,stateid(arizona)))
|
what rivers run through austin texas ?
|
(river(A),traverse(A,B),const(B,cityid(austin,tx)))
|
what rivers run through colorado ?
|
(river(A),traverse(A,B),const(B,stateid(colorado)))
|
what rivers run through louisiana ?
|
(river(A),traverse(A,B),const(B,stateid(louisiana)))
|
what rivers run through maine ?
|
(river(A),traverse(A,B),const(B,stateid(maine)))
|
what rivers run through new york ?
|
(river(A),traverse(A,B),const(B,stateid('new york')))
|
what rivers run through the state with the lowest point in the usa ?
|
(river(A),traverse(A,B),state(B),loc(C,B),lowest(C,(place(C),loc(C,D),const(D,countryid(usa)))))
|
what rivers run through the states that border the state with the capital atlanta ?
|
(river(A),traverse(A,B),state(B),next_to(B,C),state(C),loc(D,C),capital(D),const(D,cityid(atlanta,_)))
|
what rivers run through west virginia ?
|
(river(A),traverse(A,B),const(B,stateid('west virginia')))
|
what rivers traverses the state which borders the most states ?
|
(river(A),traverse(A,B),most(B,C,(state(B),next_to(B,C),state(C))))
|
what state bordering nevada has the largest population ?
|
largest(B,(state(A),next_to(A,C),const(C,stateid(nevada)),population(A,B)))
|
what state borders michigan ?
|
(state(A),next_to(A,B),const(B,stateid(michigan)))
|
what state borders most other states ?
|
most(A,B,(state(A),next_to(A,B),state(B)))
|
what state borders new york ?
|
(state(A),next_to(A,B),const(B,stateid('new york')))
|
what state borders the least states ?
|
fewest(A,B,(state(A),next_to(A,B),state(B)))
|
what state borders the least states excluding alaska and excluding hawaii ?
|
fewest(A,B,(state(A),next_to(A,B),\+const(A,stateid(alaska)),\+const(A,stateid(hawaii))))
|
what state borders the most states ?
|
most(A,B,(state(A),next_to(A,B),state(B)))
|
what state borders the state with the smallest population ?
|
(state(A),next_to(A,B),smallest(C,(state(B),population(B,C))))
|
what state contains the highest point in the us ?
|
(state(A),loc(B,A),highest(B,(place(B),loc(B,C),const(C,countryid(usa)))))
|
what state contains the highest point of those the colorado river traverses ?
|
(state(A),loc(B,A),highest(B,(place(B),loc(B,C),state(C),const(D,riverid(colorado)),river(D),traverse(D,C))))
|
what state has highest elevation ?
|
(state(A),loc(B,A),highest(B,place(B)))
|
what state has no rivers ?
|
(state(A),\+ (loc(B,A),river(B)))
|
what state has the capital salem ?
|
(state(A),loc(B,A),capital(B),const(B,cityid(salem,_)))
|
what state has the city flint ?
|
(state(A),loc(B,A),city(B),const(B,cityid(flint,_)))
|
what state has the city with the largest population ?
|
(state(A),loc(B,A),largest(C,(city(B),population(B,C))))
|
what state has the city with the most population ?
|
(state(A),loc(B,A),largest(C,(city(B),population(B,C))))
|
what state has the greatest population density ?
|
largest(B,(state(A),density(A,B)))
|
what state has the highest elevation ?
|
highest(B,(state(A),loc(B,A),place(B)))
|
what state has the highest population ?
|
largest(B,(state(A),population(A,B)))
|
what state has the highest population density ?
|
largest(B,(state(A),density(A,B)))
|
what state has the largest area ?
|
largest(B,(state(A),area(A,B)))
|
what state has the largest capital ?
|
(state(A),loc(B,A),largest(B,capital(B)))
|
what state has the largest city ?
|
largest(B,(state(A),loc(B,A),city(B)))
|
what state has the largest population ?
|
largest(B,(state(A),population(A,B)))
|
what state has the largest population density ?
|
largest(B,(state(A),density(A,B)))
|
what state has the largest urban population ?
|
largest(B,(state(A),population(A,B)))
|
what state has the least population density ?
|
smallest(B,(state(A),density(A,B)))
|
what state has the longest river ?
|
(state(A),loc(B,A),longest(B,river(B)))
|
what state has the lowest population density ?
|
smallest(B,(state(A),density(A,B)))
|
what state has the most cities ?
|
most(A,B,(state(A),loc(B,A),city(B)))
|
what state has the most major cities ?
|
most(A,B,(state(A),loc(B,A),major(B),city(B)))
|
what state has the most major rivers running through it ?
|
most(A,B,(state(A),loc(B,A),major(B),river(B),traverse(B,A)))
|
what state has the most people ?
|
largest(B,(state(A),population(A,B)))
|
what state has the most rivers ?
|
most(A,B,(state(A),loc(B,A),river(B)))
|
what state has the most rivers running through it ?
|
most(A,B,(state(A),loc(B,A),river(B),traverse(B,A)))
|
what state has the shortest river ?
|
(state(A),loc(B,A),shortest(B,river(B)))
|
what state has the smallest area ?
|
smallest(B,(state(A),area(A,B)))
|
what state has the smallest capital ?
|
(state(A),loc(B,A),smallest(B,capital(B)))
|
what state has the smallest population ?
|
smallest(B,(state(A),population(A,B)))
|
what state has the smallest population density ?
|
smallest(B,(state(A),density(A,B)))
|
what state has the smallest urban population ?
|
smallest(B,(state(A),population(A,B)))
|
what state has the sparsest population density ?
|
smallest(B,(state(A),density(A,B)))
|
what state is austin in ?
|
(state(A),const(B,cityid(austin,_)),loc(B,A))
|
what state is austin the capital of ?
|
(state(A),const(B,cityid(austin,_)),capital(B),loc(B,A))
|
what state is boston in ?
|
(state(A),const(B,cityid(boston,_)),loc(B,A))
|
what state is columbus the capital of ?
|
(state(A),const(B,cityid(columbus,_)),capital(B),loc(B,A))
|
what state is dallas in ?
|
(state(A),const(B,cityid(dallas,_)),loc(B,A))
|
what state is des moines located in ?
|
(state(A),const(B,cityid('des moines',_)),loc(B,A))
|
what state is miami in ?
|
(state(A),const(B,cityid(miami,_)),loc(B,A))
|
what state is pittsburgh in ?
|
(state(A),const(B,cityid(pittsburgh,_)),loc(B,A))
|
what state is the biggest ?
|
largest(A,state(A))
|
what state is the largest in population ?
|
largest(B,(state(A),population(A,B)))
|
what state is the state with the most rivers ?
|
(state(A),most(A,B,(state(A),loc(B,A),river(B))))
|
what state that borders texas has the highest population ?
|
largest(B,(state(A),next_to(A,C),const(C,stateid(texas)),population(A,B)))
|
what state that borders texas is the largest ?
|
largest(A,(state(A),next_to(A,B),const(B,stateid(texas))))
|
what state which the mississippi runs through has the largest population ?
|
largest(B,(state(A),const(C,riverid(mississippi)),traverse(C,A),population(A,B)))
|
what states are next to arizona ?
|
(state(A),next_to(A,B),const(B,stateid(arizona)))
|
what states are next to texas ?
|
(state(A),next_to(A,B),const(B,stateid(texas)))
|
what states are next to the mississippi ?
|
(state(A),next_to(A,B),const(B,stateid(mississippi)))
|
what states border alaska ?
|
(state(A),next_to(A,B),const(B,stateid(alaska)))
|
what states border arkansas ?
|
(state(A),next_to(A,B),const(B,stateid(arkansas)))
|
what states border delaware ?
|
(state(A),next_to(A,B),const(B,stateid(delaware)))
|
what states border florida ?
|
(state(A),next_to(A,B),const(B,stateid(florida)))
|
what states border georgia ?
|
(state(A),next_to(A,B),const(B,stateid(georgia)))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.