qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_3951
what are the lowest one way fares from pittsburgh to atlanta
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2791
show delta airlines from boston to salt lake
( lambda $0 e ( and ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_4725
what is the round trip thrift fare on us air from boston to san francisco
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( airline $1 us : al ) ( class_type $1 thrift : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4015
what does fare code f mean
f : fb
atis_3660
tell me about ground transportation between the dallas fort worth airport and downtown dallas
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
atis_408
does continental fly from boston to san francisco with a stop in denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_4789
what kinds of planes are used by midway airlines
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ml : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_2580
please list am flights leaving san francisco boston
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_1077
i need a flight from boston to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
atis_4618
what is the first flight from boston to atlanta
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( departure_time $0 ) )
atis_3771
what am flights are available from pittsburgh to boston
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ) )
atis_4364
what ground transportation is available from the pittsburgh airport
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 pit : ap ) ) )
atis_4331
what flights leave la guardia for san jose and arrive 10pm
( lambda $0 e ( and ( flight $0 ) ( arrival_time $0 2200 : ti ) ( from $0 lga : ap ) ( to $0 san_jose : ci ) ) )
atis_3447
show me the flights from denver to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
atis_1256
i need to make a trip starting in boston going to dallas denver oakland and back to boston
( lambda $0 e ( lambda $1 e ( lambda $2 e ( lambda $3 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( flight $3 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( from $1 dallas : ci ) ( to $1 denver : ci ) ( from $2 denver : ci ) ( to $2 oakland : ci ) ( from $3 oakland : ci ) ( to $3 boston : ci ) ) ) ) ) )
atis_429
does midwest express have any flights
( lambda $0 e ( and ( flight $0 ) ( airline $0 yx : al ) ) )
atis_4930
what's the most expensive way i can fly to washington
( argmax $0 ( and ( flight $0 ) ( to $0 washington : ci ) ) ( fare $0 ) )
atis_2409
okay i want a flight originating in denver going to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
atis_1919
is there a round trip flight from baltimore to dallas connecting in denver
( lambda $0 e ( and ( flight $0 ) ( stop $0 denver : ci ) ( to $0 dallas : ci ) ( from $0 baltimore : ci ) ( round_trip $0 ) ) )
atis_1875
is there a continental flight leaving from las vegas to new york nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 co : al ) ( from $0 las_vegas : ci ) ( to $0 new_york : ci ) ) )
atis_2526
please give me information on a flight on april seventeen from philadelphia to boston as early as possible
( argmin $0 ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ( day_number $0 17 : dn ) ( month $0 april : mn ) ) ( departure_time $0 ) )
atis_4477
what is the cheapest one way fare from denver to pittsburgh
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1127
i need a flight from san diego to indianapolis leaving in the afternoon on tuesday
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
atis_4648
what is the last flight out of pittsburgh to boston in the evening on tuesdays
( argmax $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 tuesday : da ) ) ( departure_time $0 ) )
atis_1536
i would like to find flights from columbus to minneapolis on monday june fourteenth early in the morning or in the evening sunday june thirteenth thank you
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 minneapolis : ci ) ( or ( and ( during_day $0 evening : pd ) ( day $0 sunday : da ) ( day_number $0 13 : dn ) ( month $0 june : mn ) ) ( and ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( day $0 monday : da ) ( day_number $0 14 : dn ) ( month $0 june : mn ) ) ) ) )
atis_3048
show me all the flights from toronto on nationair
( lambda $0 e ( and ( flight $0 ) ( airline $0 nx : al ) ( from $0 toronto : ci ) ) )
atis_2501
please find the earliest possible flight from boston to denver
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
atis_917
how can i get from the denver airport to downtown
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ( from_airport $0 denver : ci ) ) )
atis_3471
show me the flights from montreal to philly
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 philadelphia : ci ) ) )
atis_3063
show me all the one way fares from tacoma to montreal
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 tacoma : ci ) ( to $1 montreal : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1414
i would like a flight from oakland to philadelphia at one in the afternoon arriving at 5pm
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1300 : ti ) ( arrival_time $0 1700 : ti ) ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ) )
atis_1163
i need a reservation from baltimore to san francisco
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
atis_2639
please list the friday flights from houston to milwaukee on american airlines in the evening
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 evening : pd ) ( from $0 houston : ci ) ( to $0 milwaukee : ci ) ( day $0 friday : da ) ) )
atis_2585
please list fares for all the flights from atlanta to philadelphia on august the first
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 philadelphia : ci ) ( day_number $1 1 : dn ) ( month $1 august : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_4728
what is the schedule of ground transportation from the airport in philadelphia into downtown
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 philadelphia : ci ) ( from_airport $1 philadelphia : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_2493
please book for me a flight on twa from washington dc to san francisco earliest possible time
( argmin $0 ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_85
american airlines from phoenix to denver
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 denver : ci ) ) )
atis_2824
show flights from pittsburgh into san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
atis_248
can you tell me which flights go from memphis to tacoma and make a stop in los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ( stop $0 los_angeles : ci ) ) )
atis_519
find me the latest return flight from atlanta to boston on the same day
( argmax $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_2796
show first flight from philadelphia to dallas
( argmin $0 ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) ( departure_time $0 ) )
atis_4114
what flights are available thursday afternoon from baltimore to atlanta
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
atis_3521
show me the flights into love field
( lambda $0 e ( and ( flight $0 ) ( to $0 dal : ap ) ) )
atis_712
from las vegas to montreal
( lambda $0 e ( and ( from $0 las_vegas : ci ) ( to $0 montreal : ci ) ) )
atis_1277
i want a flight from denver to pittsburgh then from pittsburgh to atlanta then from atlanta back to pittsburgh back to denver
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( from $2 atlanta : ci ) ( stop $2 pittsburgh : ci ) ( to $2 denver : ci ) ) ) ) )
atis_2324
may i have a listing of flights from minneapolis to long beach california on tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 minneapolis : ci ) ( to $0 long_beach : ci ) ( day $0 tuesday : da ) ) )
atis_1715
i'd like to find the least expensive one way fare from boston to philadelphia
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3680
thanks and what's the last flight back from washington to boston
( argmax $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_3122
show me flights from atlanta to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
atis_809
give me the flights and fares on december twenty seventh from orlando to indianapolis
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 orlando : ci ) ( to $0 indianapolis : ci ) ( day_number $0 27 : dn ) ( month $0 december : mn ) ( = ( fare $0 ) $1 ) ) ) )
atis_2423
okay on tuesday june first i'd like to go from phoenix to detroit in the late afternoon
( lambda $0 e ( and ( during_day $0 late : pd ) ( during_day $0 afternoon : pd ) ( from $0 phoenix : ci ) ( to $0 detroit : ci ) ( day $0 tuesday : da ) ( day_number $0 1 : dn ) ( month $0 june : mn ) ) )
atis_3582
show me the morning flights from memphis to new york city
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 memphis : ci ) ( to $0 new_york : ci ) ) )
atis_4319
what flights leave charlotte north carolina and arrive in phoenix arizona on monday before 4pm
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 charlotte : ci ) ( to $0 phoenix : ci ) ( day $0 monday : da ) ) )
atis_501
find me a flight from cincinnati to any airport in the new york city area
( lambda $0 e ( and ( flight $0 ) ( from $0 cincinnati : ci ) ( to $0 new_york : ci ) ) )
atis_3289
show me the airlines that fly between toronto and denver
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 toronto : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_227
can you show me the economy fare flights from baltimore to dallas
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
atis_2165
list flights from memphis to miami on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 miami : ci ) ( day $0 wednesday : da ) ) )
atis_4729
what is the schedule of ground transportation from washington airport into downtown
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 washington : ci ) ( from_airport $1 washington : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_3238
show me ground transportation information for dallas fort worth
( lambda $0 e ( and ( to_city $0 dallas : ci ) ( ground_transport $0 ) ) )
atis_1068
i need a flight from atlanta to baltimore and this flight should arrive at 7pm please
( lambda $0 e ( and ( flight $0 ) ( arrival_time $0 1900 : ti ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
atis_4135
what flights are there from atlanta to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
atis_1697
i'd like to book the cheapest one way flight from denver to pittsburgh on july fifteenth
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 15 : dn ) ( month $0 july : mn ) ) ( fare $0 ) )
atis_1865
interested in a flight from washington to fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 fort_worth : ci ) ) )
atis_620
flights from cincinnati to salt lake city
( lambda $0 e ( and ( flight $0 ) ( from $0 cincinnati : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_621
flights from cleveland to kansas city on monday
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 kansas_city : ci ) ( day $0 monday : da ) ) )
atis_2315
lowest fare from san francisco to los angeles
( min $0 ( exists $1 ( and ( from $1 san_francisco : ci ) ( to $1 los_angeles : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2066
list all flights on saturday from dallas to san francisco nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 saturday : da ) ) )
atis_3346
show me the earliest flight on august second from boston to denver that serves a meal
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
atis_3883
what are the flights from boston to san francisco leaving tomorrow
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( tomorrow $0 ) ) )
atis_1593
i would like to leave around 7 o'clock in the morning
( lambda $0 e ( and ( approx_departure_time $0 700 : ti ) ) )
atis_3379
show me the flights arriving at love field from other airports
( lambda $0 e ( and ( flight $0 ) ( to $0 dal : ap ) ( exists $1 ( and ( airport $1 ) ( from $0 $1 ) ) ) ) )
atis_3917
what are the flights from nashville to tacoma on tuesday the eighteenth of may
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( to $0 tacoma : ci ) ( day $0 tuesday : da ) ( day_number $0 18 : dn ) ( month $0 may : mn ) ) )
atis_748
give me a flight from charlotte to baltimore on tuesday morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ( day $0 tuesday : da ) ) )
atis_3371
show me the first flight that arrives in toronto from cincinnati
( argmin $0 ( and ( flight $0 ) ( from $0 cincinnati : ci ) ( to $0 toronto : ci ) ) ( arrival_time $0 ) )
atis_4908
what's the first flight after 1pm leaving washington to denver
( argmin $0 ( and ( flight $0 ) ( > ( departure_time $0 ) 1300 : ti ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
atis_1916
is there a plane from boston to washington
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_685
flights from san diego to seattle
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 seattle : ci ) ) )
atis_190
can you give me information on transportation from the airport in philadelphia to downtown philadelphia
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 philadelphia : ci ) ( to_city $0 philadelphia : ci ) ) )
atis_747
give me a flight from baltimore to newark that arrives as early as possible
( argmin $0 ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ) ( arrival_time $0 ) )
atis_221
can you show me flights from baltimore to dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
atis_1478
i would like information on flights from pittsburgh to baltimore arriving in baltimore before 10am on thursday
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
atis_203
can you list all nonstop flights departing from st. petersburg and arriving in charlotte
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 st_petersburg : ci ) ( to $0 charlotte : ci ) ) )
atis_1009
how much does it cost to fly eastern airlines from atlanta to boston
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_36
all flights from boston to washington
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_1931
is there an atlanta flight to denver connecting
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
atis_2102
list all the takeoffs and landings at general mitchell airport
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 mke : ap ) ( to $0 mke : ap ) ) ) )
atis_1385
i want to travel from baltimore to washington on a monday
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 washington : ci ) ( day $0 monday : da ) ) )
atis_1380
i want to make a trip from washington to san francisco
( lambda $0 e ( and ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
atis_4345
what flights on united leave la guardia for san jose and arrive around 10pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( approx_arrival_time $0 2200 : ti ) ( from $0 lga : ap ) ( to $0 san_jose : ci ) ) )
atis_3633
show the flights from milwaukee to orlando on a thursday morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 thursday : da ) ) )
atis_4645
what is the last flight from washington to boston
( argmax $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_4582
what is the earliest morning flight leaving boston for washington
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
atis_1271
i want a flight from atlanta to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) )
atis_1021
how much is a first class round trip from atlanta to san francisco
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_5016
which is the flight number for the us air flight from philadelphia to boston is it 279 or is it 137338
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 us : al ) ( or ( flight_number $1 137338 : fn ) ( flight_number $1 279 : fn ) ) ( from $1 philadelphia : ci ) ( to $1 boston : ci ) ( = ( flight_number $1 ) $0 ) ) ) )
atis_4176
what flights are there wednesday morning from atlanta to philadelphia
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) )
atis_2706
please show me the return flight number from toronto to st. petersburg
( lambda $0 e ( exists $1 ( and ( from $1 toronto : ci ) ( to $1 st_petersburg : ci ) ( = ( flight_number $1 ) $0 ) ) ) )
atis_1232
i need to fly from baltimore to dallas on tuesday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 tuesday : da ) ) )
atis_4400
what is ewr
ewr : ap
atis_3913
what are the flights from milwaukee to orlando on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )