source
stringlengths 17
113
| target
stringlengths 8
165
|
---|---|
give me the cities in virginia . | (city(A),loc(A,B),const(B,stateid(virginia))) |
what are the high points of states surrounding mississippi ? | (high_point(B,A),loc(A,B),state(B),next_to(B,C),const(C,stateid(mississippi))) |
name the rivers in arkansas . | (river(A),loc(A,B),const(B,stateid(arkansas))) |
name all the rivers in colorado . | (river(A),loc(A,B),const(B,stateid(colorado))) |
can you tell me the capital of texas ? | (capital(A),loc(A,B),const(B,stateid(texas))) |
could you tell me what is the highest point in the state of oregon ? | highest(A,(place(A),loc(A,B),state(B),const(B,stateid(oregon)))) |
count the states which have elevations lower than what alabama has ? | count(B,(state(B),loc(C,B),low_point(B,C),lower(C,D),low_point(E,D),const(E,stateid(alabama)),loc(D,E)),A) |
give me all the states of usa ? | (state(A),loc(A,B),const(B,countryid(usa))) |
give me the cities in texas ? | (city(A),loc(A,B),const(B,stateid(texas))) |
give me the cities in usa ? | (city(A),loc(A,B),const(B,countryid(usa))) |
give me the cities in virginia ? | (city(A),loc(A,B),const(B,stateid(virginia))) |
give me the cities which are in texas ? | (city(A),loc(A,B),const(B,stateid(texas))) |
give me the lakes in california ? | (lake(A),loc(A,B),const(B,stateid(california))) |
give me the largest state ? | largest(A,state(A)) |
give me the longest river that passes through the us ? | longest(A,(river(A),traverse(A,B),const(B,countryid(usa)))) |
give me the number of rivers in california ? | count(B,(river(B),loc(B,C),const(C,stateid(california))),A) |
give me the states that border utah ? | (state(A),next_to(A,B),const(B,stateid(utah))) |
how big is alaska ? | (size(B,A),const(B,stateid(alaska))) |
how big is massachusetts ? | (size(B,A),const(B,stateid(massachusetts))) |
how big is new mexico ? | (size(B,A),const(B,stateid('new mexico'))) |
how big is north dakota ? | (size(B,A),const(B,stateid('north dakota'))) |
how big is texas ? | (size(B,A),const(B,stateid(texas))) |
how big is the city of new york ? | (size(B,A),const(B,cityid('new york',_))) |
how high are the highest points of all the states ? | (elevation(B,A),highest(B,(place(B),loc(B,C),state(C)))) |
how high is guadalupe peak ? | (elevation(B,A),const(B,placeid('guadalupe peak'))) |
how high is mount mckinley ? | (elevation(B,A),const(B,placeid('mount mckinley'))) |
how high is the highest point in america ? | (elevation(B,A),highest(B,(place(B),loc(B,C),const(C,countryid(usa))))) |
how high is the highest point in montana ? | (elevation(B,A),highest(B,(place(B),loc(B,C),const(C,stateid(montana))))) |
how high is the highest point in the largest state ? | (elevation(B,A),highest(B,(place(B),loc(B,C),largest(C,state(C))))) |
how high is the highest point of alabama ? | (elevation(B,A),highest(B,(place(B),loc(B,C),const(C,stateid(alabama))))) |
how high is the highest point of delaware ? | (elevation(B,A),highest(B,(place(B),loc(B,C),const(C,stateid(delaware))))) |
how high is the highest point of florida ? | (elevation(B,A),highest(B,(place(B),loc(B,C),const(C,stateid(florida))))) |
how high is the highest point of louisiana ? | (elevation(B,A),highest(B,(place(B),loc(B,C),const(C,stateid(louisiana))))) |
how large is alaska ? | (size(B,A),const(B,stateid(alaska))) |
how large is texas ? | (size(B,A),const(B,stateid(texas))) |
how large is the largest city in alaska ? | (size(B,A),largest(B,(city(B),loc(B,C),const(C,stateid(alaska))))) |
how long is rio grande ? | (len(B,A),const(B,riverid('rio grande'))) |
how long is the colorado river ? | (len(B,A),const(B,riverid(colorado)),river(B)) |
how long is the delaware river ? | (len(B,A),const(B,riverid(delaware)),river(B)) |
how long is the longest river in california ? | (len(B,A),longest(B,(river(B),loc(B,C),const(C,stateid(california))))) |
how long is the longest river in the usa ? | (len(B,A),longest(B,(river(B),loc(B,C),const(C,countryid(usa))))) |
how long is the mississippi ? | (len(B,A),const(B,riverid(mississippi))) |
how long is the mississippi river ? | (len(B,A),const(B,riverid(mississippi)),river(B)) |
how long is the mississippi river in miles ? | (len(B,A),const(B,riverid(mississippi)),river(B)) |
how long is the missouri river ? | (len(B,A),const(B,riverid(missouri)),river(B)) |
how long is the north platte river ? | (len(B,A),const(B,riverid('north platte')),river(B)) |
how long is the ohio river ? | (len(B,A),const(B,riverid(ohio)),river(B)) |
how long is the rio grande river ? | (len(B,A),const(B,riverid('rio grande')),river(B)) |
how long is the shortest river in the usa ? | (len(B,A),shortest(B,(river(B),loc(B,C),const(C,countryid(usa))))) |
how many big cities are in pennsylvania ? | count(B,(major(B),city(B),loc(B,C),const(C,stateid(pennsylvania))),A) |
how many capitals does rhode island have ? | count(B,(capital(B),const(C,stateid('rhode island')),loc(B,C)),A) |
how many cities are in louisiana ? | count(B,(city(B),loc(B,C),const(C,stateid(louisiana))),A) |
how many cities are in montana ? | count(B,(city(B),loc(B,C),const(C,stateid(montana))),A) |
how many cities are there in the united states ? | count(B,(city(B),loc(B,C),const(C,countryid(usa))),A) |
how many cities are there in the us ? | count(B,(city(B),loc(B,C),const(C,countryid(usa))),A) |
how many cities are there in us ? | count(B,(city(B),loc(B,C),const(C,countryid(usa))),A) |
how many cities are there in usa ? | count(B,(city(B),loc(B,C),const(C,countryid(usa))),A) |
how many cities does texas have ? | count(B,(city(B),const(C,stateid(texas)),loc(B,C)),A) |
how many cities does the usa have ? | count(B,(city(B),const(C,countryid(usa)),loc(B,C)),A) |
how many cities named austin are there in the usa ? | count(B,(city(B),const(B,cityid(austin,_)),loc(B,C),const(C,countryid(usa))),A) |
how many citizens does the biggest city have in the usa ? | (population(B,A),largest(B,city(B))) |
how many citizens in alabama ? | (population(B,A),const(B,stateid(alabama))) |
how many citizens in boulder ? | (population(B,A),const(B,cityid(boulder,_))) |
how many citizens live in california ? | (population(B,A),const(B,stateid(california))) |
how many colorado rivers are there ? | count(B,(const(B,riverid(colorado)),river(B)),A) |
how many inhabitants does montgomery have ? | (population(B,A),const(B,cityid(montgomery,_))) |
how many major cities are in arizona ? | count(B,(major(B),city(B),loc(B,C),const(C,stateid(arizona))),A) |
how many major cities are in florida ? | count(B,(major(B),city(B),loc(B,C),const(C,stateid(florida))),A) |
how many major cities are in states bordering nebraska ? | count(B,(major(B),city(B),loc(B,C),state(C),next_to(C,D),const(D,stateid(nebraska))),A) |
how many major cities are in states bordering utah ? | count(B,(major(B),city(B),loc(B,C),state(C),next_to(C,D),const(D,stateid(utah))),A) |
how many major cities are in texas ? | count(B,(major(B),city(B),loc(B,C),const(C,stateid(texas))),A) |
how many major cities are there ? | count(B,(major(B),city(B)),A) |
how many major cities are there in oregon ? | count(B,(major(B),city(B),loc(B,C),const(C,stateid(oregon))),A) |
how many major rivers cross ohio ? | count(B,(major(B),river(B),traverse(B,C),const(C,stateid(ohio))),A) |
how many people are in the state of nevada ? | (population(B,A),const(B,stateid(nevada))) |
how many people are there in iowa ? | (population(B,A),const(B,stateid(iowa))) |
how many people are there in new york ? | (population(B,A),const(B,stateid('new york'))) |
how many people in boulder ? | (population(B,A),const(B,cityid(boulder,_))) |
how many people live in austin ? | (population(B,A),const(B,cityid(austin,_))) |
how many people live in austin texas ? | (population(B,A),const(B,cityid(austin,tx))) |
how many people live in california ? | (population(B,A),const(B,stateid(california))) |
how many people live in chicago ? | (population(B,A),const(B,cityid(chicago,_))) |
how many people live in detroit ? | (population(B,A),const(B,cityid(detroit,_))) |
how many people live in hawaii ? | (population(B,A),const(B,stateid(hawaii))) |
how many people live in houston ? | (population(B,A),const(B,cityid(houston,_))) |
how many people live in kalamazoo ? | (population(B,A),const(B,cityid(kalamazoo,_))) |
how many people live in kansas ? | (population(B,A),const(B,stateid(kansas))) |
how many people live in minneapolis minnesota ? | (population(B,A),const(B,cityid(minneapolis,mn))) |
how many people live in mississippi ? | (population(B,A),const(B,stateid(mississippi))) |
how many people live in montana ? | (population(B,A),const(B,stateid(montana))) |
how many people live in new hampshire ? | (population(B,A),const(B,stateid('new hampshire'))) |
how many people live in new mexico ? | (population(B,A),const(B,stateid('new mexico'))) |
how many people live in new york ? | (population(B,A),const(B,stateid('new york'))) |
how many people live in rhode island ? | (population(B,A),const(B,stateid('rhode island'))) |
how many people live in riverside ? | (population(B,A),const(B,cityid(riverside,_))) |
how many people live in san francisco ? | (population(B,A),const(B,cityid('san francisco',_))) |
how many people live in south dakota ? | (population(B,A),const(B,stateid('south dakota'))) |
how many people live in spokane washington ? | (population(B,A),const(B,cityid(spokane,wa))) |
how many people live in texas ? | (population(B,A),const(B,stateid(texas))) |
how many people live in the biggest city in new york state ? | (population(B,A),largest(B,(city(B),loc(B,C),const(C,stateid('new york')),state(C)))) |