qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_4133
what flights are there between washington dc and san francisco after 6pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
atis_3054
show me all the flights that arrive in baltimore from anywhere between 1850 and midnight
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1850 : ti ) ( < ( arrival_time $0 ) 2400 : ti ) ( to $0 baltimore : ci ) ) )
atis_2931
show me all flights from montreal to nashville
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 nashville : ci ) ) )
atis_3226
show me ground transportation in baltimore
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 baltimore : ci ) ) )
atis_687
flights from san jose to st. paul
( lambda $0 e ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 st_paul : ci ) ) )
atis_3685
the flights from ontario to westchester that stop in chicago
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 westchester_county : ci ) ( stop $0 chicago : ci ) ) )
atis_3286
show me the airlines between toronto and denver
( lambda $0 e ( exists $1 ( and ( from $1 toronto : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_2260
list the flights from denver to san francisco after 2pm on a monday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1400 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
atis_4256
what flights from san jose to dallas on friday afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_jose : ci ) ( to $0 dallas : ci ) ( day $0 friday : da ) ) )
atis_2736
round trip fares new york to san jose
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 new_york : ci ) ( to $1 san_jose : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3008
show me all overnight flights from washington dc to san francisco and list their fares
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( overnight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( = ( fare $0 ) $1 ) ) ) )
atis_2806
show flights first class on american from philadelphia to dallas fort worth
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
atis_527
find the flights from boston to san francisco leaving after 6pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_3342
show me the earliest flight from cleveland to memphis
( argmin $0 ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 memphis : ci ) ) ( departure_time $0 ) )
atis_1230
i need to fly between philadelphia and atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 atlanta : ci ) ) )
atis_3025
show me all the flights between dallas fort worth and either san francisco or oakland that depart between 5 and 7pm
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1730 : ti ) ( from $0 dallas : ci ) ( or ( to $0 san_francisco : ci ) ( to $0 oakland : ci ) ) ) )
atis_3318
show me the cheapest one way fares from san diego to miami
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 san_diego : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4134
what flights are there between washington dc and san francisco leaving washington after 6pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
atis_4655
what is the latest flight available between san francisco and boston
( argmax $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_794
give me the cheapest one way flights between boston and philadelphia which arrive after noon on a tuesday
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( > ( arrival_time $0 ) 1200 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day $0 tuesday : da ) ) ( fare $0 ) )
atis_3081
show me city served both by nationair and canadian airlines international
( lambda $0 e ( and ( city $0 ) ( services cp : al $0 ) ( services nx : al $0 ) ) )
atis_1940
is there ground transportation between airport and downtown in boston
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
atis_1540
i would like to find the cheapest one way fare from boston to oakland
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2131
list evening flights tomorrow from phoenix to detroit
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 phoenix : ci ) ( to $0 detroit : ci ) ( tomorrow $0 ) ) )
atis_1861
information on ground transportation from airport to downtown boston
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
atis_3027
show me all the flights between philadelphia and denver
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
atis_2293
list the three earliest flights from atlanta to philadelphia on wednesday
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) ( departure_time $0 ) )
atis_3231
show me ground transportation in denver
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
atis_3959
what are the nonstop flights between san jose and houston texas
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ) )
atis_3659
tell me about ground transportation between orlando international and orlando
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 orlando : ci ) ( from_airport $0 mco : ap ) ) )
atis_853
give me the lowest fare from atlanta to denver on may seventh please
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( day_number $1 7 : dn ) ( month $1 may : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_787
give me morning flights from charlotte to baltimore
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ) )
atis_4723
what is the round trip fare on continental 1291 from denver to san francisco and return
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( airline $1 co : al ) ( flight_number $1 1291 : fn ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4826
what times on wednesday could i take a plane from denver to oakland
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 oakland : ci ) ( day $1 wednesday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_4634
what is the ground transportation between airport and baltimore
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 baltimore : ci ) ( from_airport $0 bwi : ap ) ) )
atis_1571
i would like to fly from salt lake city back to st. petersburg on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 st_petersburg : ci ) ( day $0 wednesday : da ) ) )
atis_1771
i'd like to make a round trip from la to newark by way of charlotte
( lambda $0 e ( and ( stop $0 charlotte : ci ) ( to $0 newark : ci ) ( from $0 los_angeles : ci ) ( round_trip $0 ) ) )
atis_3007
show me all of the daily flights arriving in denver between 8pm and 9pm
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( < ( arrival_time $0 ) 2100 : ti ) ( to $0 denver : ci ) ) )
atis_1324
i want to fly dallas to san francisco on monday july eighth
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ( day_number $0 8 : dn ) ( month $0 july : mn ) ) )
atis_546
first class round trip airfare from indianapolis to memphis
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 indianapolis : ci ) ( to $1 memphis : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_615
flights from chicago to denver on continental on saturday morning
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 denver : ci ) ( day $0 saturday : da ) ) )
atis_369
do you have a flight leaving boston at 645am going to washington
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 645 : ti ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_4590
what is the fare from boston to oakland on united airlines
( lambda $0 e ( exists $1 ( and ( airline $1 ua : al ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3774
what are all flights from boston to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_1073
i need a flight from baltimore to seattle that stops in minneapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 seattle : ci ) ( stop $0 minneapolis : ci ) ) )
atis_3514
show me the flights from tacoma to miami after 6pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 tacoma : ci ) ( to $0 miami : ci ) ) )
atis_1357
i want to go between boston and san francisco
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_3145
show me flights from dallas to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ) )
atis_3766
what airlines serve denver
( lambda x e ( and ( airline x ) ( services x denver : ci ) ) )
atis_1441
i would like a nonstop flight between pittsburgh and philadelphia leaving in the afternoon and arriving in the vicinity of 5pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( approx_arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
atis_2219
list round trip flights from orlando to kansas city
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 orlando : ci ) ( to $0 kansas_city : ci ) ) )
atis_1390
i want to travel from pittsburgh to oakland around midnight could you give me the flights
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 0 : ti ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
atis_2534
please give me the flights available from boston to pittsburgh on wednesday of next week
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
atis_467
fare code y what does that mean
y : fb
atis_4482
what is the cheapest round trip coach flight between dallas and baltimore leaving august tenth
( argmin $0 ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day_number $0 10 : dn ) ( month $0 august : mn ) ( round_trip $0 ) ) ( fare $0 ) )
atis_276
could i have listings of flights from new york to montreal canada leaving on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( day $0 wednesday : da ) ) )
atis_1046
i am interested in a flight from cincinnati to burbank the flight should be american and leave in the afternoon i need to know the aircraft and flight number
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( airline $2 aa : al ) ( during_day $2 afternoon : pd ) ( from $2 cincinnati : ci ) ( to $2 burbank : ci ) ( = ( aircraft_code $2 ) $0 ) ( = ( flight_number $2 ) $1 ) ) ) ) )
atis_4571
what is the earliest flight leaving washington to san francisco
( argmin $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_2311
looking for a flight to salt lake city
( lambda $0 e ( and ( flight $0 ) ( to $0 salt_lake_city : ci ) ) )
atis_1545
i would like to fly from atlanta to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
atis_2885
show me all flights direct and connecting from boston to pittsburgh that arrive in pittsburgh before 10am
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( or ( nonstop $0 ) ( connecting $0 ) ) ) )
atis_3160
show me flights from denver to washington dc on wednesdays
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
atis_2795
show first flight from boston to philadelphia
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
atis_1514
i would like to book a flight from charlotte to baltimore on april eighth
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ( day_number $0 8 : dn ) ( month $0 april : mn ) ) )
atis_1170
i need a thursday flight from pittsburgh to baltimore arriving in baltimore before 9 o'clock
( lambda $0 e ( and ( day $0 thursday : da ) ( flight $0 ) ( < ( arrival_time $0 ) 2100 : ti ) ( to $0 baltimore : ci ) ( from $0 pittsburgh : ci ) ) )
atis_2401
okay could you tell me what flight leaves dallas to san francisco by united airline
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
atis_1359
i want to go from baltimore to san francisco with a stopover in denver
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_4165
what flights are there from san francisco to philadelphia daily with economy class
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( daily $0 ) ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ) )
atis_4002
what do you know about car rental in denver
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 denver : ci ) ) )
atis_1991
list all american airlines flight from milwaukee to phoenix on sunday
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( day $0 sunday : da ) ) )
atis_1688
i'd like to arrange a trip to baltimore on january first
( lambda $0 e ( and ( to $0 baltimore : ci ) ( day_number $0 1 : dn ) ( month $0 january : mn ) ) )
atis_1280
i want a flight from los angeles to charlotte early in the morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 los_angeles : ci ) ( to $0 charlotte : ci ) ) )
atis_3473
show me the flights from newark new jersey to ontario international next saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 ont : ap ) ( day $0 saturday : da ) ) )
atis_3380
show me the flights arriving at love field
( lambda $0 e ( and ( flight $0 ) ( to $0 dal : ap ) ) )
atis_4465
what is the cheapest flight from long beach to memphis
( argmin $0 ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 memphis : ci ) ) ( fare $0 ) )
atis_1047
i am interested in a flight on american airlines from dallas to washington
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 dallas : ci ) ( to $0 washington : ci ) ) )
atis_2991
show me all flights on us airlines from boston to oakland california which leave after 11 o'clock am
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( > ( departure_time $0 ) 1100 : ti ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
atis_4314
what flights leave after 7pm from philadelphia to boston
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) )
atis_3838
what are the early morning flights from boston to denver
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_2657
please show flights arriving in philadelphia from denver
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
atis_1783
i'd like to see flights from baltimore to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
atis_3852
what are the first class fares from boston to pittsburgh on thursday
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( day $1 thursday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_3228
show me ground transportation in boston
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ) )
atis_4583
what is the earliest nonstop flight from washington to san francisco
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_2604
please list the cheapest flight 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_53
all flights from sfo to long beach
( lambda $0 e ( and ( flight $0 ) ( from $0 sfo : ap ) ( to $0 long_beach : ci ) ) )
atis_516
find me the earliest flight from boston to denver that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
atis_2601
please list the afternoon flights from charlotte to minneapolis
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 charlotte : ci ) ( to $0 minneapolis : ci ) ) )
atis_2658
please show me again the first class fares from baltimore to dallas
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4252
what flights from pittsburgh to newark after 1020pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2220 : ti ) ( from $0 pittsburgh : ci ) ( to $0 newark : ci ) ) )
atis_985
how many of delta's night flights are first class
( count $0 ( and ( flight $0 ) ( airline $0 dl : al ) ( class_type $0 first : cl ) ( during_day $0 late : pd ) ) )
atis_2571
please list all of the flights leaving atlanta heading to baltimore after 8pm wednesday and before 9am thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( > ( departure_time $0 ) 2000 : ti ) ( after_day $0 wednesday : da ) ( < ( departure_time $0 ) 900 : ti ) ( before_day $0 thursday : da ) ) )
atis_4988
which airlines provide direct flights between washington and denver
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( from $1 washington : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1370
i want to know the time of the latest flight i can take from washington to san francisco where i can get a dinner meal
( departure_time ( argmax $0 ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) ) )
atis_2958
show me all flights from pittsburgh to baltimore which leave thursday after 3 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1500 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
atis_482
find a flight from washington dc to san francisco on tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ) )
atis_4968
which airlines fly between boston and philadelphia
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 philadelphia : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_3628
show morning flights from san francisco to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ) )
atis_2067
list all flights on sunday from san francisco to pittsburgh nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 sunday : da ) ) )
atis_1643
i'd like a flight tomorrow from kansas city to newark in the morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 kansas_city : ci ) ( to $0 newark : ci ) ( tomorrow $0 ) ) )