qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_2143
list flights from charlotte on saturday afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 charlotte : ci ) ( day $0 saturday : da ) ) )
atis_1094
i need a flight from kansas city to newark on the first of july
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 newark : ci ) ( day_number $0 1 : dn ) ( month $0 july : mn ) ) )
atis_3650
tell me about flights from toronto to salt lake city leaving after 530pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1730 : ti ) ( from $0 toronto : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_3645
tell me about flights from atlanta to charlotte north carolina leaving on monday and arriving in charlotte
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 charlotte : ci ) ( day $0 monday : da ) ) )
atis_2921
show me all flights from denver to pittsburgh which serve dinner
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
atis_964
how many first class flights does united have today
( count $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( today $0 ) ) )
atis_4159
what flights are there from newark to seattle on saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
atis_179
can i have a list of all the thursday flights from baltimore to atlanta that leave after 1pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1300 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
atis_3100
show me first class airlines from san francisco to pittsburgh on next tuesday first class only
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 san_francisco : ci ) ( to $1 pittsburgh : ci ) ( day $1 tuesday : da ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_3600
show me the prices of all flights from atlanta to washington dc
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2647
please list the rental car information in pittsburgh
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 pittsburgh : ci ) ) )
atis_3938
what are the flights on january first 1992 from boston to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( day_number $0 1 : dn ) ( month $0 january : mn ) ( year $0 1992 : yr ) ) )
atis_1952
is there ground transportation in baltimore
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 baltimore : ci ) ) )
atis_2157
list flights from houston to san jose
( lambda $0 e ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 san_jose : ci ) ) )
atis_105
anything from baltimore or washington with a stopover in denver going to san francisco
( lambda $0 e ( and ( or ( from $0 baltimore : ci ) ( from $0 washington : ci ) ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_999
how many united flights are there to san francisco
( count $0 ( and ( airline $0 ua : al ) ( to $0 san_francisco : ci ) ( flight $0 ) ) )
atis_488
find all flights from philadelphia to dallas stopping in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
atis_1341
i want to fly from denver to san francisco with at least one stop
( lambda $0 e ( and ( flight $0 ) ( > ( stops $0 ) 1 : i ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_3794
what are my choices of flights from las vegas to new york
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 new_york : ci ) ) )
atis_2041
list all flights from tampa florida to miami that are the cheapest one way
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 tampa : ci ) ( to $0 miami : ci ) ) ( fare $0 ) )
atis_2139
list flights from atlanta to boston on wednesday afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
atis_2370
now i need flight information leaving atlanta and arriving in baltimore in the afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
atis_4664
what is the latest flight from san francisco to washington
( argmax $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
atis_2019
list all flights from boston to atlanta before 5 o'clock am on thursday
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 500 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
atis_4938
when can i fly from philadelphia to dallas on a saturday morning
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 morning : pd ) ( from $1 philadelphia : ci ) ( to $1 dallas : ci ) ( day $1 saturday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_3855
what are the flights and fares from atlanta to philadelphia
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( = ( fare $0 ) $1 ) ) ) )
atis_1602
i would like to see all flights from baltimore to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
atis_1157
i need a listing of flights from new york city to montreal canada departing thursday in the morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( day $0 thursday : da ) ) )
atis_3312
show me the cheapest flights from dallas to baltimore
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) ( fare $0 ) )
atis_1052
i am looking for the cheapest fare from indianapolis to orlando on december twenty seventh
( min $0 ( exists $1 ( and ( from $1 indianapolis : ci ) ( to $1 orlando : ci ) ( day_number $1 27 : dn ) ( month $1 december : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_1149
i need a flight tomorrow from atlanta to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( tomorrow $0 ) ) )
atis_1762
i'd like to know the ground travel available in fort worth
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 fort_worth : ci ) ) )
atis_2788
show delta airlines flights from boston to salt lake city
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_3234
show me ground transportation in phoenix
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 phoenix : ci ) ) )
atis_1994
list all american airlines from milwaukee to phoenix on saturday
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( day $0 saturday : da ) ) )
atis_4976
which airlines fly from bwi to dallas fort worth
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 bwi : ap ) ( to $1 dallas : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1225
i need the flights that leave denver after 7pm next monday and fly to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
atis_68
all right now i need a flight from seattle to san diego
( lambda $0 e ( and ( flight $0 ) ( from $0 seattle : ci ) ( to $0 san_diego : ci ) ) )
atis_2042
list all flights from washington dc to tampa florida
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 tampa : ci ) ) )
atis_1555
i would like to fly from boston to philadelphia next thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day $0 thursday : da ) ) )
atis_2327
may i please see airlines and flight numbers from new york to toronto on the same date june seventeenth also arriving in toronto before noon thank you
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( < ( arrival_time $2 ) 1200 : ti ) ( from $2 new_york : ci ) ( to $2 toronto : ci ) ( day_number $2 17 : dn ) ( month $2 june : mn ) ( = ( flight_number $2 ) $1 ) ( = ( airline : e $2 ) $0 ) ) ) ) )
atis_5029
yes i live in washington and i want to make a trip to san francisco which airlines may i use for this trip
( lambda $0 e ( exists $1 ( and ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1660
i'd like a twa flight from las vegas to new york nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 tw : al ) ( from $0 las_vegas : ci ) ( to $0 new_york : ci ) ) )
atis_3873
what are the flights from atlanta to dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ) )
atis_1548
i would like to fly from boston to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_4637
what is the ground transportation in san diego
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_diego : ci ) ) )
atis_975
how many flights does each airline have with first class service
( lambda $0 e ( lambda $1 i ( and ( airline $0 ) ( = $1 ( count $2 ( and ( flight $2 ) ( class_type $2 first : cl ) ( = ( airline : e $2 ) $0 ) ) ) ) ) ) )
atis_76
all the flights from baltimore to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
atis_2577
please list all the flights from kansas city to chicago on june sixteenth
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day_number $0 16 : dn ) ( month $0 june : mn ) ) )
atis_1560
i would like to fly from denver to boston on wednesday the twenty first
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ( day_number $0 21 : dn ) ) )
atis_2818
show flights from memphis to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ) )
atis_4123
what flights are between washington and san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
atis_2004
list all flights arriving at general mitchell international
( lambda $0 e ( and ( flight $0 ) ( to $0 mke : ap ) ) )
atis_4720
what is the price of flights from indianapolis to memphis
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 indianapolis : ci ) ( to $1 memphis : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1899
is there a flight from pittsburgh to baltimore that arrives between 6 and 7pm
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1800 : ti ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
atis_3932
what are the flights from st. louis to charlotte north carolina leaving on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 st_louis : ci ) ( to $0 charlotte : ci ) ( day $0 friday : da ) ) )
atis_2605
please list the cheapest flights from dallas to baltimore arriving on may seventh
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 may : mn ) ( day_number_arrival $0 7 : dn ) ) ( fare $0 ) )
atis_1948
is there ground transportation from the dallas airport to downtown dallas
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
atis_1255
i need to know what flights leave atlanta on sunday evening and arrive in baltimore
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( day $0 sunday : da ) ) )
atis_1728
i'd like to fly from denver to atlanta with a stop in pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
atis_3817
what are the cities that american airlines serves
( lambda $0 e ( and ( city $0 ) ( services aa : al $0 ) ) )
atis_3099
show me fares less than 400 dollars for flights from dallas to baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( fare $1 ) 400 : do ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2057
list all flights on continental departing on monday before noon from denver to chicago
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 chicago : ci ) ( day $0 monday : da ) ) )
atis_3666
tell me about twa flight 539
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( flight_number $0 539 : fn ) ) )
atis_1911
is there a flight tomorrow morning from columbus to nashville
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 columbus : ci ) ( to $0 nashville : ci ) ( tomorrow $0 ) ) )
atis_3964
what are the prices of the flights from dallas to baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_618
flights from cincinnati to los angeles departing after 718am
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 718 : ti ) ( from $0 cincinnati : ci ) ( to $0 los_angeles : ci ) ) )
atis_1310
i want information on flights from atlanta to washington dc give me information on flights after 4pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
atis_4190
what flights do you have between oakland and boston with a stopover in dallas fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
atis_2117
list daily flights from boston to oakland using twa
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 tw : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
atis_2077
list all nonstop flights on tuesday before noon from charlotte to baltimore
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ( day $0 tuesday : da ) ) )
atis_4781
what kind of ground transportation is there in denver
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
atis_3575
show me the list of flights from philadelphia to denver that leave in the afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
atis_4929
what's the lowest round trip fare from denver to pittsburgh
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_846
give me the flights with the fares on december twenty seventh from indianapolis to orlando
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( day_number $0 27 : dn ) ( month $0 december : mn ) ( = ( fare $0 ) $1 ) ) ) )
atis_3568
show me the latest flight to love field
( argmax $0 ( and ( flight $0 ) ( to $0 dal : ap ) ) ( departure_time $0 ) )
atis_4657
what is the latest flight departing from boston to san francisco
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_300
could you show me all weekday flights from phoenix to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 denver : ci ) ( weekday $0 ) ) )
atis_4578
what is the earliest flight that i can take from boston to baltimore
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
atis_1732
i'd like to fly from miami to chicago on on american airlines arriving around 5pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( approx_arrival_time $0 1700 : ti ) ( from $0 miami : ci ) ( to $0 chicago : ci ) ) )
atis_51
all flights from san francisco to boston leaving before noon
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_4442
what is the cheapest fare for a one way flight from boston to atlanta
( min $0 ( exists $1 ( and ( flight $1 ) ( oneway $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_874
ground transportation denver
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
atis_2299
list types of aircraft that fly between boston and san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_2497
please find a flight round trip from los angeles to tacoma washington with a stopover in san francisco not exceeding the price of 300 dollars for june tenth 1993
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 los_angeles : ci ) ( to $0 tacoma : ci ) ( stop $0 san_francisco : ci ) ( < ( cost $0 ) 300 : do ) ( day_number $0 10 : dn ) ( month $0 june : mn ) ( year $0 1993 : yr ) ) )
atis_4416
what is mia
mia : ap
atis_2110
list american airlines flights from newark to nashville
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 newark : ci ) ( to $0 nashville : ci ) ) )
atis_2838
show me a list of flights from boston to atlanta leaving after noon and arriving before 7pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_2718
price of flight from nashville to cleveland
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 nashville : ci ) ( to $1 cleveland : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4150
what flights are there from los angeles to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ) )
atis_2716
pm flights leaving san francisco arriving boston
( lambda $0 e ( and ( flight $0 ) ( during_day $0 pm : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_4755
what is your cheapest flight from pittsburgh to denver
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
atis_1898
is there a flight from philadelphia to oakland with a stop in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 oakland : ci ) ( stop $0 dallas : ci ) ) )
atis_1079
i need a flight from boston to san francisco via dallas fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_850
give me the least expensive first class round trip ticket on us air from cleveland to miami
( argmin $0 ( and ( airline $0 us : al ) ( class_type $0 first : cl ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ( round_trip $0 ) ) ( fare $0 ) )
atis_228
can you show me the flights from baltimore to dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
atis_2085
list all round trip flights from indianapolis to orlando departing either on december twenty seventh or on december twenty eighth
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( or ( and ( day_number $0 28 : dn ) ( month $0 december : mn ) ) ( and ( day_number $0 27 : dn ) ( month $0 december : mn ) ) ) ) )
atis_4805
what planes does united use
( lambda $0 e ( and ( aircraft_code : t $0 ) ( exists $1 ( and ( airline $1 ua : al ) ( aircraft_code $1 $0 ) ) ) ) )
atis_3287
show me the airlines for flights to or from love field
( lambda $0 e ( and ( airline $0 ) ( exists $1 ( and ( flight $1 ) ( or ( from $1 dal : ap ) ( to $1 dal : ap ) ) ( airline $1 $0 ) ) ) ) )
atis_4996
which companies fly between boston and oakland
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( airline : e $1 ) $0 ) ) ) )