question_id
stringlengths 11
60
| question_text
stringlengths 7
294
| decomposition
stringlengths 13
606
| operators
stringlengths 10
260
| split
stringclasses 1
value |
---|---|---|---|---|
ATIS_train_1580 | list nonstop flights from houston to dallas which arrive after 8pm | return flights ;return #1 that are nonstop ;return #2 from houston ;return #3 to dallas ;return #4 which arrive after 8pm | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1581 | how many american airline flights leave denver june tenth | return flights ;return #1 on american airlines ;return #2 from denver ;return #3 on june tenth ;return number of #4 | ['select', 'filter', 'filter', 'filter', 'aggregate'] | train |
ATIS_train_1582 | i would like the time your earliest flight from washington to philadelphia | return flights ;return #1 from washington ;return #2 to philadelphia ;return the earliest of #3 ;return the time of #4 | ['select', 'filter', 'filter', 'project', 'project'] | train |
ATIS_train_1583 | what delta flights from cincinnati to new york city arrive at new york city before 6pm on saturday | return flights ;return #1 on delta ;return #2 from cincinnati ;return #3 to new york city ;return #4 that arrive on saturday before 6pm | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1584 | please give me the prices for all flights from philadelphia to denver airport next sunday | return flights ;return #1 from philadelphia ;return #2 to denver airport ;return #3 next sunday ;return prices of #4 | ['select', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1585 | give me flights from atlanta to baltimore | return flights ;return #1 from atlanta ;return #2 to baltimore | ['select', 'filter', 'filter'] | train |
ATIS_train_1586 | what are the coach fares for flights from charlotte to newark tuesday afternoon | return flights ;return #1 in coach ;return #2 from charlotte ;return #3 to newark ;return #4 on tuesday afternoon ;return fares of #5 | ['select', 'filter', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1587 | show me any show me what the first class fares are of the flights from pittsburgh to san francisco on monday | return flights ;return #1 from pittsburgh ;return #2 to san francisco ;return #3 on monday ;return #4 that are first class ;return fares of #5 | ['select', 'filter', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1588 | where does continental fly to from chicago | return flights ;return #1 from chicago ;return #2 on continental ;return where #3 fly to | ['select', 'filter', 'filter', 'project'] | train |
ATIS_train_159 | list all american airlines from milwaukee to phoenix on saturday | return flights ;return #1 on american airlines ;return #2 from milwaukee ;return #3 to phoenix ;return #4 on saturday | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1590 | looking for flights in toronto to san diego | return flights ;return #1 from toronto ;return #2 to san diego | ['select', 'filter', 'filter'] | train |
ATIS_train_1591 | what kind of aircraft is used on the first class american airlines flight from philadelphia to san francisco stopping in dallas | return flights ;return #1 in first class ;return #2 on american airlines ;return #3 from philadelphia ;return #4 to san francisco ;return #5 stopping in dallas ;return aircraft used in #6 | ['select', 'filter', 'filter', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1592 | i need a flight from new york to montreal thursday may six arriving before noon | return flights ;return #1 from new york ;return #2 to montreal ;return #3 on thursday may six ;return #4 arriving before noon | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1593 | what flights from any city land at general mitchell international | return flights ;return #1 that land at general mitchell international | ['select', 'filter'] | train |
ATIS_train_1594 | i need a flight from new york to toronto thursday may six arriving by noon | return flights ;return #1 from new york ;return #2 to toronto ;return #3 on thursday may six ;return #4 that is arriving by noon | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1595 | i want to travel from philadelphia to san francisco with a stopover in dallas | return travel ;return #1 from philadelphia ;return #2 to san francisco ;return #3 with stopover in dallas | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1596 | round trip air fares from pittsburgh to philadelphia less than 1000 dollars | return flights ;return #1 that are round trip ;return #2 from pittsburgh ;return #3 to philadelphia ;return fares of #4 ;return #5 lower than 1000 dollars | ['select', 'filter', 'filter', 'filter', 'project', 'filter'] | train |
ATIS_train_1597 | list all american airline flights which leave phoenix on wednesday and stop at milwaukee | return flights ;return #1 on american airlines ;return #2 which leave phoenix ;return #3 on wednesday ;return #4 which stop in milwaukee | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1598 | show me all flights from indianapolis | return flights ;return #1 from indianapolis | ['select', 'filter'] | train |
ATIS_train_1599 | what are the flights from philadelphia to dallas on october first 1991 | return flights ;return #1 from philadelphia ;return #2 to dallas ;return #3 on october first 1991 | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_16 | pittsburgh to boston saturday | return flights ;return #1 from pittsburgh ;return #2 to boston ;return #3 on saturday | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_160 | i'd like information on flights between philadelphia and san francisco with a stop in dallas | return flights ;return #1 between philadelphia ;return #2 and san francisco ;return #3 with a stop in dallas | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1600 | i'd like to fly from denver to pittsburgh with a stop in atlanta | return flights ;return #1 from denver ;return #2 to pittsburgh ;return #3 with a stop in atlanta | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1601 | show me flights from denver to philadelphia | return flights ;return #1 from denver ;return #2 to philadelphia | ['select', 'filter', 'filter'] | train |
ATIS_train_1602 | show me the airlines that fly from san francisco to boston | return flights ;return #1 from san francisco ;return #2 to boston ;return airlines of #3 | ['select', 'filter', 'filter', 'project'] | train |
ATIS_train_1603 | i would like to plan a flight on american airlines from boston to denver | return flights ;return #1 on american airlines ;return #2 from boston ;return #3 to denver | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1604 | what are my choices of flights leaving early afternoon from minneapolis to indianapolis | return flights ;return #1 from minneapolis ;return #2 to indianapolis ;return #3 leaving early afternoon | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1606 | show me the flights from st. petersburg to toronto that arrive early in the morning | return flights ;return #1 from st. petersburg ;return #2 to toronto ;return #3 that arrive early in the morning | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1607 | please list all flights from san francisco to pittsburgh on sunday | return flights ;return #1 from san francisco ;return #2 to pittsburgh ;return #3 on sunday | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1608 | what are the prices of these flights | return flights ;return prices of #1 | ['select', 'project'] | train |
ATIS_train_161 | show me the fares from washington to oakland | return flights ;return #1 from washington ;return #2 to oakland ;return fares of #3 | ['select', 'filter', 'filter', 'project'] | train |
ATIS_train_1610 | what is the earliest morning flight leaving boston for washington | return flights ;return #1 from boston ;return #2 to washington ;return #3 in the morning ;return the earliest of #4 | ['select', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1611 | i'd like to find the cheapest one way fare from baltimore to denver | return flights ;return #1 from baltimore ;return #2 to denver ;return fares of #3 ;return #3 where #4 is the cheapest | ['select', 'filter', 'filter', 'project', 'comparative'] | train |
ATIS_train_1612 | list the total number of flights between all airports by delta | return flights ;return #1 on delta ;return #2 between all airports ;return number of #3 | ['select', 'filter', 'filter', 'aggregate'] | train |
ATIS_train_1613 | now i need flights leaving from atlanta and arriving in philadelphia on wednesday morning | return flights ;return #1 from atlanta ;return #2 that are arriving in philadelphia ;return #3 on wednesday morning | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1614 | please list flights between denver and boston | return flights ;return #1 between denver and boston | ['select', 'filter'] | train |
ATIS_train_1615 | ground transportation philadelphia | return ground transportations ;return #1 in philadelphia | ['select', 'filter'] | train |
ATIS_train_1616 | is there ground transportation from the atlanta airport to downtown atlanta | return the atlanta airport ;return ground transportations of #1 ;return #2 to downtown atlanta ;return number of #3 ;return if #4 is at least one | ['select', 'project', 'filter', 'aggregate', 'boolean'] | train |
ATIS_train_1617 | show me the flights from atlanta to denver on friday | return flights ;return #1 from atlanta ;return #2 to denver ;return #3 on friday | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1618 | united airlines flights stopping in denver before noon | return flights ;return #1 on united airlines ;return #2 stopping in denver ;return #3 before noon | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_162 | how many airlines fly from new york to los angeles by way of milwaukee | return flights ;return #1 from new york ;return #2 to los angeles ;return #3 by way of milwaukee ;return airlines of #4 ;return number of #5 | ['select', 'filter', 'filter', 'filter', 'project', 'aggregate'] | train |
ATIS_train_1621 | what flights from minneapolis to pittsburgh | return flights ;return #1 from minneapolis ;return #2 to pittsburgh | ['select', 'filter', 'filter'] | train |
ATIS_train_1622 | which airline can fly me from atlanta to denver to san francisco | return flights ;return #1 from atlanta ;return #2 to denver ;return #3 to san francisco ;return airlines of #4 | ['select', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1623 | list the flights from denver to san francisco after 2pm on a monday | return flights ;return #1 from denver ;return #2 to san francisco ;return #3 on a monday ;return #4 after 2pm | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1624 | what are all monday flights from denver to san francisco on united airlines | return flights ;return #1 on united airlines ;return #2 on monday ;return #3 from denver ;return #4 to san francisco | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1625 | what's the lowest round trip fare from denver to atlanta | return fares ;return #1 that are round trip ;return #2 from denver ;return #3 to atlanta ;return #4 that is lowest | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1626 | i need a flight from san francisco to boston that leaves after 10pm | return flights ;return #1 from san francisco ;return #2 to boston ;return #3 that leave after 10pm | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1627 | what ground transportation is available into washington | return transportation ;return #1 that is ground ;return #2 into washington | ['select', 'filter', 'filter'] | train |
ATIS_train_1628 | show all nonstop flights from boston to atlanta | return flights ;return #1 from boston ;return #2 to atlanta ;return #3 that are nonstop | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1629 | what is the cheapest ticket from baltimore to san francisco on friday august thirtieth | return flights ;return #1 from baltimore ;return #2 to san francisco ;return #3 on friday august thirtieth ;return tickets of #4 ;return price of #5 ;return #5 where #6 is the lowest | ['select', 'filter', 'filter', 'filter', 'project', 'project', 'comparative'] | train |
ATIS_train_163 | us 3724 baltimore to philadelphia what is the fare | return us 3724 ;return #1 from baltimore ;return #2 to philadelphia ;return fare of #3 | ['select', 'filter', 'filter', 'project'] | train |
ATIS_train_1630 | show all wednesday morning flights from denver to boston | return flights ;return #1 from denver ;return #2 to boston ;return #3 on wednesday morning | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1631 | shortest flights from nashville to st. petersburg | return flights ;return #1 from nashville ;return #2 to st. petersburg ;return the shortest of #3 | ['select', 'filter', 'filter', 'aggregate'] | train |
ATIS_train_1632 | what airlines fly from toronto to san diego with a stopover in denver | return flights ;return #1 from toronto ;return #2 to san diego ;return #3 with a stopover in denver ;return airlines of #4 | ['select', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1634 | show me the flights that go from san diego to newark by way of houston | return flights ;return #1 from san diego ;return #2 to newark ;return #3 by way of houston | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1635 | is there a nonstop flight from denver to san francisco | return flights ;return #1 that are nonstop ;return #2 from denver ;return #3 to san francisco ;return are there any #4 | ['select', 'filter', 'filter', 'filter', 'boolean'] | train |
ATIS_train_1636 | what flights takeoff and land at general mitchell international | return flights ;return #1 from general mitchell international ;return #1 to general mitchell international ;return #2 , #3 | ['select', 'filter', 'filter', 'union'] | train |
ATIS_train_1637 | okay does twa have a flight from dallas to san francisco | return flights ;return #1 on twa ;return #2 from dallas ;return #3 to san francisco | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1638 | show me ground transportation information for san francisco | return ground transportation ;return #1 in san francisco | ['select', 'filter'] | train |
ATIS_train_1639 | show flights from dallas to san francisco | return flights ;return #1 from dallas ;return #2 to san francisco | ['select', 'filter', 'filter'] | train |
ATIS_train_164 | what flights go from boston to washington next tuesday | return flights ;return #1 from boston ;return #2 to washington ;return #3 next tuesday | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1640 | please list the prices for a rental car in pittsburgh | return rental cars ;return #1 in pittsburgh ;return the price of #2 | ['select', 'filter', 'project'] | train |
ATIS_train_1641 | flights between milwaukee and orlando one way | return flights ;return #1 between milwaukee and orlando ;return #2 that are one way | ['select', 'filter', 'filter'] | train |
ATIS_train_1642 | give me the lowest fare from atlanta to denver on may seventh please | return flights ;return #1 from atlanta ;return #2 to denver ;return #3 on may seventh ;return fares of #4 ;return #5 that is the lowest | ['select', 'filter', 'filter', 'filter', 'project', 'filter'] | train |
ATIS_train_1643 | show me times for coach flights between boston and baltimore on wednesday | return flights ;return #1 from boston ;return #2 to baltimore ;return #3 on wednesday ;return #4 in coach ;return the time of #5 | ['select', 'filter', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1644 | how much does the american airlines flight 71 from dallas to san francisco cost | return flight 71 ;return #1 on american airlines ;return #2 from dallas ;return #3 to san francisco ;return how much does #4 cost | ['select', 'filter', 'filter', 'filter', 'project'] | train |
ATIS_train_1645 | show me the flights before 8am on august second from boston to denver on delta | return flights ;return #1 on delta ;return #2 from boston ;return #3 to denver ;return #4 on august second ;return #5 before 8am | ['select', 'filter', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1646 | what is the earliest flight from boston to denver | return flights ;return #1 from boston ;return #2 to denver ;return #3 that is the earliest | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1647 | boston to denver monday | return flights ;return #1 from boston ;return #2 to denver ;return #3 on monday | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1648 | all flights from boston to washington | return flights ;return #1 from boston ;return #2 to washington | ['select', 'filter', 'filter'] | train |
ATIS_train_1649 | what flights leave from newark to los angeles in the afternoon | return flights ;return #1 from newark ;return #2 to los angeles ;return #3 in the afternoon | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_165 | find me the cheapest flight from boston to washington | return flights ;return #1 from boston to washington ;return cheapness of #2 ;return #2 where #3 is cheapest | ['select', 'filter', 'project', 'comparative'] | train |
ATIS_train_1650 | what are flights between boston and pittsburgh on august tenth | return flights ;return #1 between boston ;return #2 and pittsburgh ;return #3 on august tenth | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1651 | what economy flights are available from dallas to baltimore on december seventeenth | return flights ;return #1 in economy ;return #2 from dallas ;return #3 to baltimore ;return #4 on december seventeenth | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1652 | please find me a flight between boston and philadelphia that arrives in philadelphia close to 5pm | return flights ;return #1 from boston ;return #2 that arrives in philadelphia ;return #3 close to 5pm | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1653 | i need a flight from san diego california to indianapolis indiana leaving in the afternoon on tuesday | return flights ;return #1 from san diego ;return #2 to indianapolis indiana ;return #3 leaving tuesday afternoon | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1655 | show me the cheapest one way fare from baltimore to dallas | return flights ;return #1 from baltimore ;return #2 to dallas ;return the fare of #3 ;return #3 where #4 is the cheapest | ['select', 'filter', 'filter', 'project', 'comparative'] | train |
ATIS_train_1656 | could you tell me what the abbreviation us stands for | return abbreviations ;return #1 equal to us ;return what #2 stands for | ['select', 'filter', 'project'] | train |
ATIS_train_1657 | list all flights from atlanta to baltimore thursday morning | return flights ;return #1 from atlanta ;return #2 to baltimore ;return #3 on thursday ;return #4 in the morning | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1658 | morning flight from dallas to atlanta | return flights ;return #1 from dallas ;return #2 to atlanta ;return #3 in the morning | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1659 | show me flights from all airports to love field | return flights ;return #1 from all airports ;return #2 to love field | ['select', 'filter', 'filter'] | train |
ATIS_train_166 | i want to know the cheapest way to fly from denver to oakland | return ways to fly ;return #1 from denver ;return #2 to oakland ;return #3 that is cheapest | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1660 | list the northwest airlines flights that leave denver before noon | return flights ;return #1 of northwest airlines ;return #2 that leave denver ;return #3 before noon | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1661 | can you please show me the flights from pittsburgh to boston on wednesday of next week that arrive before noon | return flights ;return #1 from pittsburgh ;return #2 to boston ;return #3 on next wednesday ;return #4 that arrive before noon | ['select', 'filter', 'filter', 'filter', 'filter'] | train |
ATIS_train_1662 | what flights depart from pittsburgh and arrive in oakland california | return flights ;return #1 from pittsburgh ;return #2 to oakland california | ['select', 'filter', 'filter'] | train |
ATIS_train_1663 | i need information on flights leaving dallas arriving in boston leaving dallas early in the morning | return flights ;return #1 from dallas ;return #2 to boston ;return #3 leaving in the morning | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1664 | what is the cheapest one way flight from atlanta to boston | return flights ;return #1 from atlanta ;return #2 to boston ;return #3 that are one way ;return price of #4 ;return #4 where #5 is the lowest | ['select', 'filter', 'filter', 'filter', 'project', 'comparative'] | train |
ATIS_train_1665 | i need a flight from dallas to san francisco | return flights ;return #1 from dallas to san francisco | ['select', 'filter'] | train |
ATIS_train_1666 | list flights between boston and san francisco that serve breakfast | return flights ;return #1 between boston ;return #2 and san francisco ;return #3 that serve breakfast | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1667 | what does ls stand for | return ls ;return what does #1 stand for | ['select', 'project'] | train |
ATIS_train_1668 | show me flights from atlanta to washington | return flights ;return #1 from atlanta ;return #2 to washington | ['select', 'filter', 'filter'] | train |
ATIS_train_1670 | can you list all flights leaving from st. louis and arriving in milwaukee | return flights ;return #1 from st. louis ;return #2 to milwaukee | ['select', 'filter', 'filter'] | train |
ATIS_train_1671 | what limousine service in toronto | return limousine service ;return #1 in toronto | ['select', 'filter'] | train |
ATIS_train_1672 | all flights from boston to washington dc on the tenth of november | return flights ;return #1 from boston ;return #2 to washington dc ;return #3 on tenth of november | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1673 | show me flights from boston to washington leaving july fifteen | return flights ;return #1 from boston ;return #2 to washington ;return #3 leaving july fifteen | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1674 | list the flights from san francisco to philadelphia on american airlines | return the flights ;return #1 on american airlines ;return #2 from san francisco ;return #3 to philadelphia | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1675 | where is mco | return mco ;return where is #1 | ['select', 'project'] | train |
ATIS_train_1676 | please show me airlines with flights from boston to denver | return flights ;return #1 from boston ;return #2 to denver ;return airlines of #3 | ['select', 'filter', 'filter', 'project'] | train |
ATIS_train_1677 | which flights go from pittsburgh to atlanta in the evening | return flights ;return #1 from pittsburgh ;return #2 to atlanta ;return #3 in the evening | ['select', 'filter', 'filter', 'filter'] | train |
ATIS_train_1678 | list all the flights from atlanta to charlotte north carolina that leave next monday | return flights ;return #1 from atlanta ;return #2 to charlotte north carolina ;return #3 that leave next monday | ['select', 'filter', 'filter', 'filter'] | train |