question_id stringlengths 11 60 | question_text stringlengths 7 294 | decomposition stringlengths 13 606 | operators stringlengths 10 260 | split stringclasses 1
value | program stringlengths 20 771 |
|---|---|---|---|---|---|
ATIS_train_2538 | list all flights from orlando to kansas city then to minneapolis | return flights ;return #1 from orlando ;return #2 to kansas city ;return #3 to minneapolis | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from orlando']", "FILTER['#2', 'to kansas city']", "FILTER['#3', 'to minneapolis']"] |
ATIS_train_2539 | all the flights from baltimore to san francisco | return flights ;return #1 from baltimore ;return #2 to san francisco | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from baltimore']", "FILTER['#2', 'to san francisco']"] |
ATIS_train_2541 | what is the smallest aircraft available to fly on from pittsburgh to baltimore | return aircraft ;return #1 available to fly on ;return #2 from pittsburgh ;return #3 to baltimore ;return the smallest of #4 | ['select', 'filter', 'filter', 'filter', 'aggregate'] | train | ["SELECT['aircraft']", "FILTER['#1', 'available to fly on']", "FILTER['#2', 'from pittsburgh']", "FILTER['#3', 'to baltimore']", "AGGREGATE['min', '#4']"] |
ATIS_train_2542 | i need a connecting flight on continental on june fifth from chicago to seattle | return flights ;return connecting of #1 ;return #2 on continental ;return #3 on june fifth ;return #4 from chicago ;return #5 to seattle | ['select', 'project', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "PROJECT['connecting of #REF', '#1']", "FILTER['#2', 'on continental']", "FILTER['#3', 'on june fifth']", "FILTER['#4', 'from chicago']", "FILTER['#5', 'to seattle']"] |
ATIS_train_2543 | on november twenty third what flights go from atlanta to denver on delta airlines | return flights ;return #1 on delta airlines ;return #2 from atlanta ;return #3 to denver ;return #4 on november twenty third | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on delta airlines']", "FILTER['#2', 'from atlanta']", "FILTER['#3', 'to denver']", "FILTER['#4', 'on november twenty third']"] |
ATIS_train_2544 | what airlines fly from dallas to baltimore | return flights ;return #1 from dallas ;return #2 to baltimore ;return the airlines of #3 | ['select', 'filter', 'filter', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'from dallas']", "FILTER['#2', 'to baltimore']", "PROJECT['the airlines of #REF', '#3']"] |
ATIS_train_2545 | what airlines fly between boston and san francisco and stop in denver | return airlines ;return #1 fly from boston ;return #2 fly to san francisco ;return #1 fly from san francisco ;return #4 fly to boston ;return #3 , #5 ;return #6 that stop in denver | ['select', 'filter', 'filter', 'filter', 'filter', 'union', 'filter'] | train | ["SELECT['airlines']", "FILTER['#1', 'fly from boston']", "FILTER['#2', 'fly to san francisco']", "FILTER['#1', 'fly from san francisco']", "FILTER['#4', 'fly to boston']", "UNION['#3', '#5']", "FILTER['#6', 'that stop in denver']"] |
ATIS_train_2546 | i'd like flights on american from philadelphia to dallas arriving before 1145am | return flights ;return #1 on american ;return #2 from philadelphia ;return #3 to dallas ;return #4 arriving before 1145am | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on american']", "FILTER['#2', 'from philadelphia']", "FILTER['#3', 'to dallas']", "FILTER['#4', 'arriving before 1145am']"] |
ATIS_train_2547 | what flights are available from denver to philadelphia on wednesday | return flights ;return #1 from denver ;return #2 to philadelphia ;return #3 on wednesday | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to philadelphia']", "FILTER['#3', 'on wednesday']"] |
ATIS_train_2548 | i would like to fly from denver to boston | return flights ;return #1 from denver ;return #2 to boston | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to boston']"] |
ATIS_train_2549 | what is the lowest cost fare that delta has between boston and san francisco | return flights ;return #1 on delta ;return #2 between boston ;return #3 and san francisco ;return fares of #4 ;return #4 where #5 is lowest | ['select', 'filter', 'filter', 'filter', 'project', 'superlative'] | train | ["SELECT['flights']", "FILTER['#1', 'on delta']", "FILTER['#2', 'between boston']", "FILTER['#3', 'and san francisco']", "PROJECT['fares of #REF', '#4']", "SUPERLATIVE['min', '#4', '#5']"] |
ATIS_train_255 | please list all first class flights on united from denver to baltimore | return flights ;return #1 in first class ;return #2 on united ;return #3 from denver ;return #4 to baltimore | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'in first class']", "FILTER['#2', 'on united']", "FILTER['#3', 'from denver']", "FILTER['#4', 'to baltimore']"] |
ATIS_train_2550 | what does fare code y mean | return fare code y ;return what does #1 mean | ['select', 'project'] | train | ["SELECT['fare code y']", "PROJECT['what does #REF mean', '#1']"] |
ATIS_train_2551 | flights on sunday from tampa to charlotte | return flights ;return #1 on sunday ;return #2 from tampa ;return #3 to charlotte | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on sunday']", "FILTER['#2', 'from tampa']", "FILTER['#3', 'to charlotte']"] |
ATIS_train_2552 | give me the earliest flight tomorrow on northwest airlines from st. petersburg to milwaukee | return flights ;return #1 on northwest airlines ;return #2 from st. petersburg ;return #3 to milwaukee ;return #4 that is the earliest ;return #5 tomorrow | ['select', 'filter', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on northwest airlines']", "FILTER['#2', 'from st. petersburg']", "FILTER['#3', 'to milwaukee']", "FILTER['#4', 'that is the earliest']", "FILTER['#5', 'tomorrow']"] |
ATIS_train_2553 | give me the list of flights for continental between denver and boston | return flights ;return #1 on continental ;return #2 between denver ;return #3 and boston | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on continental']", "FILTER['#2', 'between denver']", "FILTER['#3', 'and boston']"] |
ATIS_train_2554 | sunday flights from new york city to las vegas | return flights ;return #1 from new york city ;return #2 to las vegas ;return #3 on sunday | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from new york city']", "FILTER['#2', 'to las vegas']", "FILTER['#3', 'on sunday']"] |
ATIS_train_2555 | i'd like information on continental airlines flights from washington to philadelphia | return flights ;return #1 from continental airlines ;return #2 from washington ;return #3 to philadelphia | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from continental airlines']", "FILTER['#2', 'from washington']", "FILTER['#3', 'to philadelphia']"] |
ATIS_train_2556 | what airline is the flight originating in atlanta on november seventh at noon and arriving in san francisco at 210pm | return flights ;return #1 from atlanta ;return #2 to san francisco ;return #3 on november seventh ;return #4 originating at noon ;return #5 arriving at 210pm | ['select', 'filter', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from atlanta']", "FILTER['#2', 'to san francisco']", "FILTER['#3', 'on november seventh']", "FILTER['#4', 'originating at noon']", "FILTER['#5', 'arriving at 210pm']"] |
ATIS_train_2557 | show departures from atlanta for american | return flights ;return #1 on american ;return #2 from atlanta | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on american']", "FILTER['#2', 'from atlanta']"] |
ATIS_train_2558 | all flights from baltimore to philadelphia less than 1000 dollars | return flights ;return #1 from baltimore ;return #2 to philadelphia ;return #3 that are less than 1000 dollars | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from baltimore']", "FILTER['#2', 'to philadelphia']", "FILTER['#3', 'that are less than 1000 dollars']"] |
ATIS_train_2559 | show me all flights from charlotte | return flights ;return #1 from charlotte | ['select', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from charlotte']"] |
ATIS_train_256 | what are all flights from boston to denver | return flights ;return #1 from boston ;return #2 to denver | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from boston']", "FILTER['#2', 'to denver']"] |
ATIS_train_2561 | sfo to denver on monday november eleventh 1991 | return flights ;return #1 from sfo ;return #2 to denver ;return #3 on monday november eleventh 1991 | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from sfo']", "FILTER['#2', 'to denver']", "FILTER['#3', 'on monday november eleventh 1991']"] |
ATIS_train_2562 | is there a direct flight from atlanta to philadelphia that arrives in philadelphia around 12 noon | return flights ;return #1 that are direct ;return #2 from atlanta ;return #3 to philadelphia ;return #4 that arrives around 12 noon | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'that are direct']", "FILTER['#2', 'from atlanta']", "FILTER['#3', 'to philadelphia']", "FILTER['#4', 'that arrives around 12 noon']"] |
ATIS_train_2563 | what flight leaves dallas for atlanta on august twenty seventh in the evening | return flights ;return #1 from dallas ;return #2 to atlanta ;return #3 on the twenty seventh ;return #4 in the evening | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from dallas']", "FILTER['#2', 'to atlanta']", "FILTER['#3', 'on the twenty seventh']", "FILTER['#4', 'in the evening']"] |
ATIS_train_2564 | show me all flights from new york to miami on a tuesday with round trip fare less than 932 dollars | return flights ;return #1 from new york ;return #2 to miami ;return #3 on a tuesday ;return round trip fares of #4 ;return #4 where #5 is less than 932 dollars | ['select', 'filter', 'filter', 'filter', 'project', 'comparative'] | train | ["SELECT['flights']", "FILTER['#1', 'from new york']", "FILTER['#2', 'to miami']", "FILTER['#3', 'on a tuesday']", "PROJECT['round trip fares of #REF', '#4']", "COMPARATIVE['#4', '#5', 'is less than 932 dollars']"] |
ATIS_train_2565 | all round trip flights between new york and miami coach fare | return flights ;return #1 equal round trips ;return #2 from new york ;return #3 to miami ;return #4 with coach fare | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'equal round trips']", "FILTER['#2', 'from new york']", "FILTER['#3', 'to miami']", "FILTER['#4', 'with coach fare']"] |
ATIS_train_2566 | and flight from oakland to boston leaving after midnight | return flights ;return #1 from oakland ;return #2 to boston ;return #3 leaving after midnight | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from oakland']", "FILTER['#2', 'to boston']", "FILTER['#3', 'leaving after midnight']"] |
ATIS_train_2569 | how many flights does delta have with a class of service code f | return flights ;return #1 of delta ;return #2 with service code f ;return number of #3 | ['select', 'filter', 'filter', 'aggregate'] | train | ["SELECT['flights']", "FILTER['#1', 'of delta']", "FILTER['#2', 'with service code f']", "AGGREGATE['count', '#3']"] |
ATIS_train_257 | i want to arrive in detroit around 6pm and i'm leaving from chicago | return flights ;return #1 from chicago ;return #2 to detroit ;return #3 arrive around 6pm | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from chicago']", "FILTER['#2', 'to detroit']", "FILTER['#3', 'arrive around 6pm']"] |
ATIS_train_2570 | does continental fly from denver to san francisco | return flights ;return #1 on continental ;return #2 from denver ;return #3 to san francisco ;return number of #4 ;return if #5 is at least one | ['select', 'filter', 'filter', 'filter', 'aggregate', 'boolean'] | train | ["SELECT['flights']", "FILTER['#1', 'on continental']", "FILTER['#2', 'from denver']", "FILTER['#3', 'to san francisco']", "AGGREGATE['count', '#4']", "BOOLEAN['#5', 'is at least one']"] |
ATIS_train_2572 | flight will start from boston | return flights ;return #1 that will start from boston | ['select', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'that will start from boston']"] |
ATIS_train_2575 | list flights from pittsburgh to san francisco | return flights ;return #1 from pittsburgh ;return #2 to san francisco | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from pittsburgh']", "FILTER['#2', 'to san francisco']"] |
ATIS_train_2576 | show me all flights to dallas that are less than 1500 dollars round trip | return flights ;return #1 to dallas ;return round trip price in dollars of #2 ;return #2 where #3 is lower than 1500 dollars | ['select', 'filter', 'project', 'comparative'] | train | ["SELECT['flights']", "FILTER['#1', 'to dallas']", "PROJECT['round trip price in dollars of #REF', '#2']", "COMPARATIVE['#2', '#3', 'is lower than 1500 dollars']"] |
ATIS_train_2577 | what's the difference between fare code q and fare code b | return fare code ;return #1 q ;return #1 b ;return difference between #2 , #3 | ['select', 'filter', 'filter', 'arithmetic'] | train | ["SELECT['fare code']", "FILTER['#1', 'q']", "FILTER['#1', 'b']", "ARITHMETIC['difference', '#2', '#3']"] |
ATIS_train_2578 | what is fare code f | return fare code f ;return what is #1 | ['select', 'project'] | train | ["SELECT['fare code f']", "PROJECT['what is #REF', '#1']"] |
ATIS_train_2579 | show me the flights from denver to baltimore or washington dc that arrive before or around noon | return flights ;return #1 from denver ;return #2 to baltimore ;return #2 to washington dc ;return #3 or #4 ;return #5 that arrive before noon ;return #5 that arrive around noon ;return #6 or #7 | ['select', 'filter', 'filter', 'filter', 'union', 'filter', 'filter', 'union'] | train | ["SELECT['flights']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to baltimore']", "FILTER['#2', 'to washington dc']", "UNION['#3', '#4']", "FILTER['#5', 'that arrive before noon']", "FILTER['#5', 'that arrive around noon']", "UNION['#6', '#7']"] |
ATIS_train_258 | please show me flights from boston to denver with a stopover in philadelphia | return flights ;return #1 from boston ;return #2 to denver ;return #3 with a stopover in philadelphia | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from boston']", "FILTER['#2', 'to denver']", "FILTER['#3', 'with a stopover in philadelphia']"] |
ATIS_train_2580 | flights from newark to cleveland | return flights ;return #1 from newark ;return #2 to cleveland | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from newark']", "FILTER['#2', 'to cleveland']"] |
ATIS_train_2581 | san francisco to denver tuesday | return flights ;return #1 from san francisco ;return #2 to denver ;return #3 on tuesday | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from san francisco']", "FILTER['#2', 'to denver']", "FILTER['#3', 'on tuesday']"] |
ATIS_train_2582 | which airlines have daily flights from boston to dallas | return flights ;return #1 from boston ;return #2 to dallas ;return #3 that are daily ;return airlines of #4 | ['select', 'filter', 'filter', 'filter', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'from boston']", "FILTER['#2', 'to dallas']", "FILTER['#3', 'that are daily']", "PROJECT['airlines of #REF', '#4']"] |
ATIS_train_2583 | show me all daily flights out of boston that have coach class | return flights ;return #1 out of boston ;return #2 that are daily ;return #3 that have coach class | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'out of boston']", "FILTER['#2', 'that are daily']", "FILTER['#3', 'that have coach class']"] |
ATIS_train_2584 | does delta fly from atlanta to san francisco | return flights ;return #1 from atlanta ;return #2 to san francisco ;return #3 with delta ;return number of #4 ;return is #5 more than zero | ['select', 'filter', 'filter', 'filter', 'aggregate', 'boolean'] | train | ["SELECT['flights']", "FILTER['#1', 'from atlanta']", "FILTER['#2', 'to san francisco']", "FILTER['#3', 'with delta']", "AGGREGATE['count', '#4']", "BOOLEAN['#5', 'more than zero']"] |
ATIS_train_2585 | are there wednesday morning flights between pittsburgh and boston | return flights ;return #1 between pittsburgh ;return #2 and bostons ;return #3 on wednesday morning | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'between pittsburgh']", "FILTER['#2', 'and bostons']", "FILTER['#3', 'on wednesday morning']"] |
ATIS_train_2586 | are there any flights before 12 noon on june fifteenth from long beach to columbus | return flights ;return #1 that is before 12 noon ;return #2 that is on june fifteenth ;return #3 that is from long beach ;return #4 that is to columbus ;return number of #5 ;return is #6 more than zero | ['select', 'filter', 'filter', 'filter', 'filter', 'aggregate', 'boolean'] | train | ["SELECT['flights']", "FILTER['#1', 'that is before 12 noon']", "FILTER['#2', 'that is on june fifteenth']", "FILTER['#3', 'that is from long beach']", "FILTER['#4', 'that is to columbus']", "AGGREGATE['count', '#5']", "BOOLEAN['#6', 'more than zero']"] |
ATIS_train_2587 | show me the earliest nonstop flight from dallas to houston | return flights ;return #1 from dallas ;return #2 to houston ;return #3 that are nonstop ;return the earliest #4 | ['select', 'filter', 'filter', 'filter', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'from dallas']", "FILTER['#2', 'to houston']", "FILTER['#3', 'that are nonstop']", "PROJECT['the earliest #REF', '#4']"] |
ATIS_train_2588 | what is the airfare between denver and pittsburgh | return flights ;return #1 between denver ;return #2 and pittsburgh ;return airfares of #3 | ['select', 'filter', 'filter', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'between denver']", "FILTER['#2', 'and pittsburgh']", "PROJECT['airfares of #REF', '#3']"] |
ATIS_train_2589 | show me the flights from dulles to san francisco leaving after 6pm | return flights ;return #1 from dulles ;return #2 to san francisco ;return #3 leaving after 6pm | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from dulles']", "FILTER['#2', 'to san francisco']", "FILTER['#3', 'leaving after 6pm']"] |
ATIS_train_259 | please book for me a flight on twa from washington dc to san francisco earliest possible time | return flights ;return #1 on twa ;return #2 from washington dc ;return #3 to san francisco ;return #4 that is the earliest possible time | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on twa']", "FILTER['#2', 'from washington dc']", "FILTER['#3', 'to san francisco']", "FILTER['#4', 'that is the earliest possible time']"] |
ATIS_train_2590 | how do i get from bwi to washington | return flights ;return #1 from bwi ;return #2 to washington | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from bwi']", "FILTER['#2', 'to washington']"] |
ATIS_train_2591 | how do i get from pittsburgh airport to downtown pittsburgh | return the pittsburgh airport ;return how to get to downtown pittsburgh from #1 | ['select', 'project'] | train | ["SELECT['the pittsburgh airport']", "PROJECT['how to get to downtown pittsburgh from #REF', '#1']"] |
ATIS_train_2592 | show me all the flights from denver to baltimore arriving may tenth | return flights ;return #1 from denver ;return #2 to baltimore ;return #3 arriving may tenth | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to baltimore']", "FILTER['#3', 'arriving may tenth']"] |
ATIS_train_2593 | show me the flights from st. petersburg to toronto that arrive before noon | return flights ;return #1 from st. petersburg ;return #2 to toronto ;return #3 that arrive before noon | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from st. petersburg']", "FILTER['#2', 'to toronto']", "FILTER['#3', 'that arrive before noon']"] |
ATIS_train_2595 | what are the flights from indianapolis to san diego on wednesday the twelfth | return flights ;return #1 from indianapolis ;return #2 to san diego ;return #3 on wednesday the twelfth | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from indianapolis']", "FILTER['#2', 'to san diego']", "FILTER['#3', 'on wednesday the twelfth']"] |
ATIS_train_2596 | i would like to fly from boston to philadelphia next thursday | return flights ;return #1 next thursday ;return #2 from boston ;return #3 to philadelphia | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'next thursday']", "FILTER['#2', 'from boston']", "FILTER['#3', 'to philadelphia']"] |
ATIS_train_2597 | show me the evening flights from atlanta to boston | return flights ;return #1 from atlanta ;return #2 to boston ;return #3 in the evening | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from atlanta']", "FILTER['#2', 'to boston']", "FILTER['#3', 'in the evening']"] |
ATIS_train_2598 | what is the cheapest fare between atlanta and san francisco | return flights ;return #1 between atlanta and san francisco ;return fares of #2 ;return the cheapest #3 | ['select', 'filter', 'project', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'between atlanta and san francisco']", "PROJECT['fares of #REF', '#2']", "PROJECT['the cheapest #REF', '#3']"] |
ATIS_train_2599 | how many flights does eastern airlines have from boston to atlanta | return flights ;return #1 from boston ;return #2 to atlanta ;return #3 on eastern airlines ;return number of #4 | ['select', 'filter', 'filter', 'filter', 'aggregate'] | train | ["SELECT['flights']", "FILTER['#1', 'from boston']", "FILTER['#2', 'to atlanta']", "FILTER['#3', 'on eastern airlines']", "AGGREGATE['count', '#4']"] |
ATIS_train_26 | what flights go from philadelphia to san francisco via dallas | return flights ;return #1 from philadelphia ;return #2 to san francisco ;return #3 that go via dallas | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from philadelphia']", "FILTER['#2', 'to san francisco']", "FILTER['#3', 'that go via dallas']"] |
ATIS_train_260 | i need a list of late afternoon flights from st. louis to chicago | return flights ;return #1 from st. louis ;return #2 to chicago ;return #3 that are late afternoon | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from st. louis']", "FILTER['#2', 'to chicago']", "FILTER['#3', 'that are late afternoon']"] |
ATIS_train_2600 | flights from st. paul to houston | return flights ;return #1 from st. paul ;return #2 to houston | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from st. paul']", "FILTER['#2', 'to houston']"] |
ATIS_train_2601 | what is mia | return mia ;return what is #1 | ['select', 'project'] | train | ["SELECT['mia']", "PROJECT['what is #REF', '#1']"] |
ATIS_train_2602 | thank you for that information now i would like information on a flight on april sixteen from atlanta to philadelphia early in the morning | return flights ;return #1 on april sixteen ;return #2 from atlanta ;return #3 to philadelphia ;return #4 early information the morning | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on april sixteen']", "FILTER['#2', 'from atlanta']", "FILTER['#3', 'to philadelphia']", "FILTER['#4', 'early information the morning']"] |
ATIS_train_2603 | show me the flights from denver to philadelphia on a saturday | return flights ;return #1 from denver ;return #2 to philadelphia ;return #3 on a saturday | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to philadelphia']", "FILTER['#3', 'on a saturday']"] |
ATIS_train_2604 | an american airlines flight first class from philadelphia to dallas | return flights ;return #1 with american airlines ;return #2 from philadelphia ;return #3 to dallas ;return #4 that are first class | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'with american airlines']", "FILTER['#2', 'from philadelphia']", "FILTER['#3', 'to dallas']", "FILTER['#4', 'that are first class']"] |
ATIS_train_2605 | what flights from houston to milwaukee on friday on american airlines | return flights ;return #1 from houston ;return #2 to milwaukee ;return #3 on friday ;return #4 on american airlines | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from houston']", "FILTER['#2', 'to milwaukee']", "FILTER['#3', 'on friday']", "FILTER['#4', 'on american airlines']"] |
ATIS_train_2606 | what is the cost of a round trip ticket first class between oak and atl | return flights ;return #1 that are round trip ;return #2 between oak ;return #3 and atl ;return #4 in first class ;return ticket cost of #5 | ['select', 'filter', 'filter', 'filter', 'filter', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'that are round trip']", "FILTER['#2', 'between oak']", "FILTER['#3', 'and atl']", "FILTER['#4', 'in first class']", "PROJECT['ticket cost of #REF', '#5']"] |
ATIS_train_2607 | show me the airlines that use love field | return flights ;return #1 to love field ;return #1 from love field ;return airlines of #2 ;return airlines of #3 ;return #4 , #5 | ['select', 'filter', 'filter', 'project', 'project', 'union'] | train | ["SELECT['flights']", "FILTER['#1', 'to love field']", "FILTER['#1', 'from love field']", "PROJECT['airlines of #REF', '#2']", "PROJECT['airlines of #REF', '#3']", "UNION['#4', '#5']"] |
ATIS_train_2608 | please show me all airports in denver | return airports ;return #1 in denver | ['select', 'filter'] | train | ["SELECT['airports']", "FILTER['#1', 'in denver']"] |
ATIS_train_2609 | show me all canadian airlines flights from toronto | return flights ;return #1 on canadian airlines ;return #2 from toronto | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on canadian airlines']", "FILTER['#2', 'from toronto']"] |
ATIS_train_261 | what are the fares for flights from charlotte to newark on tuesday and wednesday | return flights ;return #1 from charlotte ;return #2 to newark ;return #3 on tuesday ;return #3 on wednesday ;return #4 , #5 ;return fares of #6 | ['select', 'filter', 'filter', 'filter', 'filter', 'union', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'from charlotte']", "FILTER['#2', 'to newark']", "FILTER['#3', 'on tuesday']", "FILTER['#3', 'on wednesday']", "UNION['#4', '#5']", "PROJECT['fares of #REF', '#6']"] |
ATIS_train_2611 | does american airlines fly from philadelphia to san francisco | return american airlines ;return does #1 fly from philadelphia ;return #2 to san francisco | ['select', 'project', 'filter'] | train | ["SELECT['american airlines']", "PROJECT['does #REF fly from philadelphia', '#1']", "FILTER['#2', 'to san francisco']"] |
ATIS_train_2612 | show me the airlines between boston and toronto | return airlines ;return #1 between boston and toronto | ['select', 'filter'] | train | ["SELECT['airlines']", "FILTER['#1', 'between boston and toronto']"] |
ATIS_train_2613 | what flights are available friday from philadelphia to oakland | return flights ;return #1 on friday ;return #2 from philadelphia ;return #3 to oakland ;return #4 that are available | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on friday']", "FILTER['#2', 'from philadelphia']", "FILTER['#3', 'to oakland']", "FILTER['#4', 'that are available']"] |
ATIS_train_2616 | how much does flight dl 402 from denver to philadelphia cost | return flight dl 402 ;return #1 from denver ;return #2 to philadelphia ;return cost of #3 | ['select', 'filter', 'filter', 'project'] | train | ["SELECT['flight dl 402']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to philadelphia']", "PROJECT['cost of #REF', '#3']"] |
ATIS_train_2617 | what is the earliest flight leaving from boston going to atlanta | return flights ;return #1 from boston ;return #2 to atlanta ;return earliest of #3 | ['select', 'filter', 'filter', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'from boston']", "FILTER['#2', 'to atlanta']", "PROJECT['earliest of #REF', '#3']"] |
ATIS_train_2618 | i need information on ground transportation from the airport in atlanta | return transportation ;return #1 that is ground ;return #2 from the airport in atlanta | ['select', 'filter', 'filter'] | train | ["SELECT['transportation']", "FILTER['#1', 'that is ground']", "FILTER['#2', 'from the airport in atlanta']"] |
ATIS_train_2619 | show me all flights from oakland to philadelphia on saturday which serve a meal | return flights ;return #1 from oakland ;return #2 to philadelphia ;return #3 on saturday ;return #4 which serve a meal | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from oakland']", "FILTER['#2', 'to philadelphia']", "FILTER['#3', 'on saturday']", "FILTER['#4', 'which serve a meal']"] |
ATIS_train_262 | show me all flights both direct and connecting from dallas fort worth to either san francisco or oakland that depart after 7pm | return flights ;return #1 from dallas fort worth ;return #2 to san francisco ;return #2 to oakland ;return #3 , #4 ;return #5 that depart after 7pm ;return #6 that are direct ;return #6 that are connecting ;return #7 , #8 | ['select', 'filter', 'filter', 'filter', 'union', 'filter', 'filter', 'filter', 'union'] | train | ["SELECT['flights']", "FILTER['#1', 'from dallas fort worth']", "FILTER['#2', 'to san francisco']", "FILTER['#2', 'to oakland']", "UNION['#3', '#4']", "FILTER['#5', 'that depart after 7pm']", "FILTER['#6', 'that are direct']", "FILTER['#6', 'that are connecting']", "UNION['#7', '#8']"] |
ATIS_train_2620 | is there a round trip flight from baltimore to dallas connecting in denver | return flights ;return #1 that are round trip ;return #2 from baltimore ;return #3 to dallas ;return #4 connecting in denver | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'that are round trip']", "FILTER['#2', 'from baltimore']", "FILTER['#3', 'to dallas']", "FILTER['#4', 'connecting in denver']"] |
ATIS_train_2621 | what does us mean | return us ;return what #1 mean | ['select', 'project'] | train | ["SELECT['us']", "PROJECT['what #REF mean', '#1']"] |
ATIS_train_2622 | all flights from baltimore to atlanta between 1 o'clock and 3 o'clock in the afternoon | return flights ;return #1 from baltimore ;return #2 to atlanta ;return #3 between 1 o'clock and 3 o'clock in the afternoon | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from baltimore']", "FILTER['#2', 'to atlanta']", 'FILTER[\'#3\', "between 1 o\'clock and 3 o\'clock in the afternoon"]'] |
ATIS_train_2623 | which of the flights from pittsburgh to baltimore on july twenty fifth 1991 carries the smallest number of passengers | return the flights ;return #1 on july twenty fifth 1991 ;return #2 from pittsburgh ;return #3 to baltimore ;return the number of passengers for each of #4 ;return #4 where #5 is the smallest | ['select', 'filter', 'filter', 'filter', 'group', 'comparative'] | train | ["SELECT['the flights']", "FILTER['#1', 'on july twenty fifth 1991']", "FILTER['#2', 'from pittsburgh']", "FILTER['#3', 'to baltimore']", "GROUP['count', 'passengers', '#4']", "COMPARATIVE['#4', '#5', 'is the smallest']"] |
ATIS_train_2624 | then list the flights from atlanta to philadelphia early wednesday morning nonstop | return flights ;return #1 from atlanta ;return #2 to philadelphia ;return #3 on early wednesday morning ;return #4 that are nonstop | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from atlanta']", "FILTER['#2', 'to philadelphia']", "FILTER['#3', 'on early wednesday morning']", "FILTER['#4', 'that are nonstop']"] |
ATIS_train_2625 | i would like to know the flights from denver to pittsburgh leaving on monday | return flights ;return #1 from denver ;return #2 to pittsburgh ;return #3 on monday | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to pittsburgh']", "FILTER['#3', 'on monday']"] |
ATIS_train_2626 | i'm looking for a flight from boston to denver that has no stopovers and is only in the afternoon | return flights ;return #1 from boston ;return #1 to denver ;return #1 of both #2 and #3 ;return #4 with no stopovers ;return #5 in the afternoon | ['select', 'filter', 'filter', 'intersection', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from boston']", "FILTER['#1', 'to denver']", "INTERSECTION['#1', '#2', '#3']", "FILTER['#4', 'with no stopovers']", "FILTER['#5', 'in the afternoon']"] |
ATIS_train_2627 | show me the flights from san diego to newark new jersey | return flights ;return #1 from san diego ;return #2 to newark new jersey | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from san diego']", "FILTER['#2', 'to newark new jersey']"] |
ATIS_train_2628 | show me the flights from pittsburgh to san francisco on friday | return flights ;return #1 on friday ;return #2 from pittsburgh ;return #3 to san francisco | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on friday']", "FILTER['#2', 'from pittsburgh']", "FILTER['#3', 'to san francisco']"] |
ATIS_train_2629 | what is the latest flight from salt lake city to st. petersburg | return flights ;return #1 from salt lake city ;return #2 to st. petersburg ;return #3 that is the latest | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from salt lake city']", "FILTER['#2', 'to st. petersburg']", "FILTER['#3', 'that is the latest']"] |
ATIS_train_263 | would you be able to put me on a flight with delta leaving the morning of august twenty seventh from baltimore to san francisco | return flights ;return #1 on delta ;return #2 from baltimore ;return #3 to san francisco ;return #4 leaving the morning of august twenty seventh | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on delta']", "FILTER['#2', 'from baltimore']", "FILTER['#3', 'to san francisco']", "FILTER['#4', 'leaving the morning of august twenty seventh']"] |
ATIS_train_2630 | shortest flight from boston to philadelphia | return flights ;return #1 from boston ;return #2 to philadelphia ;return #3 that is shortest | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from boston']", "FILTER['#2', 'to philadelphia']", "FILTER['#3', 'that is shortest']"] |
ATIS_train_2631 | i want to see the cheapest flight from denver to pittsburgh | return flights ;return #1 from denver ;return #2 to pittsburgh ;return the cheapest #3 | ['select', 'filter', 'filter', 'project'] | train | ["SELECT['flights']", "FILTER['#1', 'from denver']", "FILTER['#2', 'to pittsburgh']", "PROJECT['the cheapest #REF', '#3']"] |
ATIS_train_2632 | display all flights from baltimore to boston on july twenty ninth | return flights ;return #1 from baltimore ;return #2 to boston ;return #3 on july twenty ninth | ['select', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from baltimore']", "FILTER['#2', 'to boston']", "FILTER['#3', 'on july twenty ninth']"] |
ATIS_train_2633 | i'm looking for a flight from oakland to denver with a stopover in dallas fort worth | return flights ;return #1 from oakland to denver ;return #2 with stopovers in dallas fort worth | ['select', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'from oakland to denver']", "FILTER['#2', 'with stopovers in dallas fort worth']"] |
ATIS_train_2634 | what is the cheapest flight on american airlines from cleveland to miami | return flights ;return #1 on american airlines ;return #2 from cleveland ;return #3 to miami ;return #4 that is cheapest | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on american airlines']", "FILTER['#2', 'from cleveland']", "FILTER['#3', 'to miami']", "FILTER['#4', 'that is cheapest']"] |
ATIS_train_2635 | show me continental flights from chicago to seattle on saturday morning | return flights ;return #1 on continental ;return #2 from chicago ;return #3 to seattle ;return #4 on saturday morning | ['select', 'filter', 'filter', 'filter', 'filter'] | train | ["SELECT['flights']", "FILTER['#1', 'on continental']", "FILTER['#2', 'from chicago']", "FILTER['#3', 'to seattle']", "FILTER['#4', 'on saturday morning']"] |
ATIS_train_2636 | do you have any direct flights from pittsburgh to atlanta | return flights ;return #1 that are direct ;return #2 from pittsburgh ;return #3 to atlanta ;return are there any #4 | ['select', 'filter', 'filter', 'filter', 'boolean'] | train | ["SELECT['flights']", "FILTER['#1', 'that are direct']", "FILTER['#2', 'from pittsburgh']", "FILTER['#3', 'to atlanta']", "BOOLEAN['#4', 'are there any #REF']"] |
ATIS_train_2637 | find the latest flight from san francisco to atlanta that serves a meal | return flight ;return #1 from san francisco ;return #2 to atlanta ;return #3 that serve meal ;return latest #4 | ['select', 'filter', 'filter', 'filter', 'project'] | train | ["SELECT['flight']", "FILTER['#1', 'from san francisco']", "FILTER['#2', 'to atlanta']", "FILTER['#3', 'that serve meal']", "PROJECT['latest #REF', '#4']"] |
ATIS_train_2638 | houston airports | return airports ;return #1 in houston | ['select', 'filter'] | train | ["SELECT['airports']", "FILTER['#1', 'in houston']"] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.