qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_549
first i'd like to fly from philadelphia to dallas and fly from dallas to san francisco
( lambda $0 e ( or ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) ) )
atis_3018
show me all the delta flights leaving or arriving at pittsburgh between 12 and 4 in the afternoon
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( or ( and ( from $0 pittsburgh : ci ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( departure_time $0 ) 1600 : ti ) ) ( and ( > ( arrival_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1600 : ti ) ( to $0 pittsburgh : ci ) ) ) ) )
atis_4986
which airlines have flights from san francisco to washington by way of indianapolis
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 san_francisco : ci ) ( to $1 washington : ci ) ( stop $1 indianapolis : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_2086
list all 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_2988
show me all flights from toronto
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ) )
atis_81
also show me the first flight from atlanta to denver on a thursday
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day $0 thursday : da ) ) ( departure_time $0 ) )
atis_4090
what flights are available from boston to washington dc late the twenty fifth or early the twenty sixth
( lambda $0 e ( and ( flight $0 ) ( or ( and ( day_number $0 25 : dn ) ( during_day $0 late : pd ) ) ( and ( during_day $0 early : pd ) ( day_number $0 26 : dn ) ) ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_2836
show last flight from philadelphia to boston
( argmax $0 ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_1730
i'd like to fly from denver to pittsburgh with a stop in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
atis_4888
what's the cheapest way to fly between atlanta and denver
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
atis_2925
show me all flights from indianapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ) )
atis_355
do you have a 9 o'clock flight from boston to philadelphia
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 900 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
atis_3724
what airline is dl 98
( airline_name ( the $0 ( and ( flight $0 ) ( airline $0 dl : al ) ( flight_number $0 98 : fn ) ) ) )
atis_3607
show me the shortest flight from boston to denver which arrives in denver wednesday before noon
( argmin $0 ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_arrival $0 wednesday : da ) ) ( time_elapsed $0 ) )
atis_3984
what cities does northwest fly to
( lambda $0 e ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 nw : al ) ( to $1 $0 ) ) ) ) )
atis_3347
show me the earliest flight on thursday from atlanta to washington
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) ( departure_time $0 ) )
atis_2936
show me all flights from new york to miami on a tuesday with round trip fare less than 932 dollars
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 932 : do ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
atis_2083
list all round trip fares from st. petersburg to washington
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 st_petersburg : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2449
on may four atlanta to denver delta flight 257
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( flight_number $0 257 : fn ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 4 : dn ) ( month $0 may : mn ) ) )
atis_2845
show me a list of flights on july twenty second leaving dc to dallas leaving dc after 6pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 washington : ci ) ( to $0 dallas : ci ) ( day_number $0 22 : dn ) ( month $0 july : mn ) ) )
atis_2690
please show me flights from philadelphia to baltimore between 10am and 2pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1000 : ti ) ( < ( departure_time $0 ) 1400 : ti ) ( from $0 philadelphia : ci ) ( to $0 baltimore : ci ) ) )
atis_4480
what is the cheapest one way flight from atlanta to boston
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) ( fare $0 ) )
atis_554
flight from dallas to boston tomorrow
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ( tomorrow $0 ) ) )
atis_3004
show me all nationair flights from toronto
( lambda $0 e ( and ( flight $0 ) ( airline $0 nx : al ) ( from $0 toronto : ci ) ) )
atis_693
flights from westchester county to st. paul
( lambda $0 e ( and ( flight $0 ) ( from $0 westchester_county : ci ) ( to $0 st_paul : ci ) ) )
atis_1181
i need flight and fare information for thursday departing prior to 9am from oakland going to salt lake city
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 thursday : da ) ( = ( fare $0 ) $1 ) ) ) )
atis_2834
show ground transportation for pittsburgh
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ( from_airport $0 pittsburgh : ci ) ) )
atis_3599
show me the price of flight ea 212 from atlanta to washington
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( flight_number $1 212 : fn ) ( from $1 atlanta : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_649
flights from los angeles to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ) )
atis_4557
what is the earliest flight from washington to atlanta leaving on wednesday september fourth
( argmin $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ( day_number $0 4 : dn ) ( month $0 september : mn ) ) ( departure_time $0 ) )
atis_1333
i want to fly from boston to dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
atis_4820
what time does the tuesday morning 755 flight leaving washington arrive in san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 755 : ti ) ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( day $1 tuesday : da ) ( = ( arrival_time $1 ) $0 ) ) ) )
atis_420
does eastern airlines fly early in the morning between logan and bwi
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 bos : ap ) ( to $0 bwi : ap ) ) )
atis_2641
please list the ground transportation from lga into new york city
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 new_york : ci ) ( from_airport $0 lga : ap ) ) )
atis_5035
yes on the delta flight leaving san francisco at 225pm arriving philadelphia 1158pm what type of equipment is used on that flight
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( departure_time $1 1425 : ti ) ( arrival_time $1 2358 : ti ) ( from $1 san_francisco : ci ) ( to $1 philadelphia : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4687
what is the least expensive flight from denver to atlanta
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
atis_1229
i need to find a plane from boston to san francisco on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
atis_1089
i need a flight from denver to washington dc on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
atis_2780
show all nonstop flights from boston to atlanta
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_2754
shortest evening flight from tampa to cincinnati
( argmin $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 tampa : ci ) ( to $0 cincinnati : ci ) ) ( time_elapsed $0 ) )
atis_2746
san francisco to denver
( lambda $0 e ( and ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
atis_4230
what flights from kansas city to chicago arrive at chicago at 7pm next wednesday
( lambda $0 e ( and ( flight $0 ) ( arrival_time $0 1900 : ti ) ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day_arrival $0 wednesday : da ) ) )
atis_1534
i would like to find a flight that goes from la guardia airport to san jose i would like the flight to be on united airlines and arrive in san jose 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_2336
morning flight from boston to philadelphia
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
atis_3946
what are the latest flights that i can take from baltimore to boston
( argmax $0 ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_3850
what are the fares from newark to la monday and wednesday
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 newark : ci ) ( to $1 los_angeles : ci ) ( or ( day $1 monday : da ) ( day $1 wednesday : da ) ) ( = ( fare $1 ) $0 ) ) ) )
atis_3492
show me the flights from pittsburgh to san francisco on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
atis_2305
locate flights from philadelphia to dallas stopping in hartfield
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atl : ap ) ) )
atis_960
how many first class flights does delta have today
( count $0 ( and ( flight $0 ) ( airline $0 dl : al ) ( class_type $0 first : cl ) ( today $0 ) ) )
atis_3313
show me the cheapest flights from san francisco to boston
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) ( fare $0 ) )
atis_1164
i need a return flight from chicago to kansas city leaving chicago around 7 in the evening next thursday
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1900 : ti ) ( from $0 chicago : ci ) ( to $0 kansas_city : ci ) ( day $0 thursday : da ) ) )
atis_371
do you have a night flight from washington to boston on august twenty seventh
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) )
atis_1306
i want a round trip fare from 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_2993
show me all flights that arrive in philadelphia from baltimore denver or pittsburgh
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 baltimore : ci ) ( from $0 denver : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 philadelphia : ci ) ) )
atis_4177
what flights arrive in chicago on sunday on continental
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( to $0 chicago : ci ) ( day_arrival $0 sunday : da ) ) )
atis_3541
show me the flights that go from san diego to newark new jersey by way of houston
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 newark : ci ) ( stop $0 houston : ci ) ) )
atis_1575
i would like to fly the cheapest rate available from pittsburgh to atlanta on wednesday morning
( departure_time ( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) ( fare $0 ) ) )
atis_3742
what airlines fly boston to baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 baltimore : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1484
i would like information on ground transportation city of boston between airport and downtown
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
atis_3834
what are the delta flights from dallas to boston
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) )
atis_2548
please list all flights between boston and atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_4785
what kind of plane flies from boston to pittsburgh after noon
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( > ( departure_time $1 ) 1200 : ti ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_1858
information on flights from philadelphia to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
atis_258
cheapest flight from miami to indianapolis
( argmin $0 ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 indianapolis : ci ) ) ( fare $0 ) )
atis_3835
what are the different classes of service and the prices for us air
( lambda $0 e ( lambda $1 e ( and ( booking_class : t $0 ) ( = ( fare $0 ) $1 ) ( airline $0 us : al ) ) ) )
atis_769
give me american airlines flights from milwaukee to phoenix on saturday and on sunday
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( or ( day $0 saturday : da ) ( day $0 sunday : da ) ) ) )
atis_2061
list all flights on continental leaving denver on monday
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 denver : ci ) ( day $0 monday : da ) ) )
atis_4243
what flights from minneapolis to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 minneapolis : ci ) ( to $0 pittsburgh : ci ) ) )
atis_2018
list all flights from boston to atlanta after 6 o'clock pm on wednesday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
atis_3940
what are the flights on thursday leaving from st. paul minnesota to st. louis
( lambda $0 e ( and ( flight $0 ) ( from $0 st_paul : ci ) ( to $0 st_louis : ci ) ( day $0 thursday : da ) ) )
atis_4586
what is the fare code y and what is the fare code h
h : fb
atis_3344
show me the earliest flight from newark to seattle
( argmin $0 ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 seattle : ci ) ) ( departure_time $0 ) )
atis_114
are there any flights after 9pm from san francisco to washington
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2100 : ti ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ) )
atis_1816
i'm looking for a flight that goes from ontario to westchester and stops in chicago
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 westchester_county : ci ) ( stop $0 chicago : ci ) ) )
atis_1594
i would like to leave early in the morning
( lambda $0 e ( and ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ) )
atis_957
how many fares are there one way from tacoma to montreal
( count $0 ( exists $1 ( and ( oneway $1 ) ( from $1 tacoma : ci ) ( to $1 montreal : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2973
show me all flights from san francisco that go to boston baltimore or philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( or ( to $0 boston : ci ) ( to $0 philadelphia : ci ) ( to $0 baltimore : ci ) ) ) )
atis_2289
list the number of flights leaving boston for dallas fort worth before 9am in the morning
( count $0 ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
atis_4341
what flights leave seattle on sunday on continental after 9pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2100 : ti ) ( from $0 seattle : ci ) ( day $0 sunday : da ) ) )
atis_3402
show me the flights from baltimore to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) )
atis_3818
what are the classes of service for american airlines
( lambda $0 e ( exists $1 ( and ( airline $1 aa : al ) ( = ( booking_class $1 ) $0 ) ) ) )
atis_679
flights from phoenix to milwaukee
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ) )
atis_2325
may i have a listing of flights from minneapolis to long beach california on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 minneapolis : ci ) ( to $0 long_beach : ci ) ( day $0 wednesday : da ) ) )
atis_56
all flights from washington to san francisco leaving after 2
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1400 : ti ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
atis_3300
show me the car rentals in baltimore
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 baltimore : ci ) ) )
atis_1435
i would like a flight that leaves on sunday from montreal quebec to san diego california
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 san_diego : ci ) ( day $0 sunday : da ) ) )
atis_4514
what is the departure time of the latest flight of united airlines from denver to boston
( departure_time ( argmax $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) ) )
atis_435
does midwest express serve nashville
( services yx : al nashville : ci )
atis_3829
what are the coach fares from la to charlotte monday morning
( lambda $0 e ( exists $1 ( and ( class_type $1 coach : cl ) ( during_day $1 morning : pd ) ( from $1 los_angeles : ci ) ( to $1 charlotte : ci ) ( day $1 monday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_1057
i live in denver and i'd like to make a trip to pittsburgh
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
atis_3203
show me flights from tampa to st. louis leaving before 10am
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 tampa : ci ) ( to $0 st_louis : ci ) ) )
atis_155
are there delta flights leaving atlanta
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 atlanta : ci ) ) )
atis_4248
what flights from orlando to tacoma on saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 orlando : ci ) ( to $0 tacoma : ci ) ( day $0 saturday : da ) ) )
atis_2883
show me all flights both direct and connecting from dallas fort worth to either san francisco or oakland that depart after 7pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( or ( nonstop $0 ) ( connecting $0 ) ) ) )
atis_3409
show me the flights from boston to atlanta and the return flights from atlanta to boston
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( flight $1 ) ( to $1 boston : ci ) ( from $1 atlanta : ci ) ) ) )
atis_1016
how much does it cost to get downtown from the atlanta airport by limousine
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 atlanta : ci ) ( from_airport $1 atlanta : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_60
all flights to baltimore after 12pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( to $0 baltimore : ci ) ) )
atis_35
all flights from boston to washington dc
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_3494
show me the flights from salt lake city to milwaukee
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 milwaukee : ci ) ) )
atis_4644
what is the last flight from san francisco to dallas fort worth
( argmax $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 dallas : ci ) ) ( departure_time $0 ) )