qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_3051
show me all the flights on northwest airlines from new york to milwaukee to los angeles
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( from $0 new_york : ci ) ( to $0 los_angeles : ci ) ( stop $0 milwaukee : ci ) ) )
atis_1914
is there a meal on delta flight 852 from san francisco to dallas fort worth
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 852 : fn ) ( from $1 san_francisco : ci ) ( to $1 dallas : ci ) ( = ( meal $1 ) $0 ) ) ) )
atis_1699
i'd like to book the cheapest one way flight from pittsburgh to atlanta on july twentieth
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 20 : dn ) ( month $0 july : mn ) ) ( fare $0 ) )
atis_1048
i am interested in a flight on an aircraft number 727 i would like to go from washington to atlanta
( lambda $0 e ( and ( flight $0 ) ( aircraft_code $0 727 : ac ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ) )
atis_235
can you tell me about ground transportation between the dallas airport and downtown dallas
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
atis_1751
i'd like to go from boston to san francisco
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_3785
what are all the flights between san francisco and boston
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_2039
list all flights from pittsburgh to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
atis_1347
i want to fly from milwaukee to orlando on wednesday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
atis_1811
i'm looking for a flight from boston to denver that has no stopovers and is only in the afternoon
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_297
could you please tell me the first flight leaving baltimore to san francisco on a 747 on august twenty seventh
( argmin $0 ( and ( flight $0 ) ( aircraft_code $0 747 : ac ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
atis_2477
philadelphia to san francisco next week tuesday show the flights
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ) )
atis_3076
show me american flights from dallas to san francisco
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
atis_2185
list flights from pittsburgh to boston leaving after 3 in the afternoon
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1500 : ti ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ) )
atis_2464
on tuesday the twenty third flights from philadelphia to san francisco on american airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ( day_number $0 23 : dn ) ) )
atis_353
do you fly a 747 from baltimore to san francisco
( lambda $0 e ( and ( flight $0 ) ( aircraft_code $0 747 : ac ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
atis_4813
what the abbreviation us stand for
us : al
atis_1775
i'd like to see all flights from denver to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
atis_4125
what flights are from memphis to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ) )
atis_856
give me the round trip coach fare from baltimore to dallas
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 coach : cl ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1917
is there a red eye flight from san jose to nashville on wednesday the nineteenth of may
( lambda $0 e ( and ( flight $0 ) ( overnight $0 ) ( from $0 san_jose : ci ) ( to $0 nashville : ci ) ( day $0 wednesday : da ) ( day_number $0 19 : dn ) ( month $0 may : mn ) ) )
atis_2888
show me all flights from atlanta to dallas round trip less than 1100 dollars
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 1100 : do ) ( round_trip $0 ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ) )
atis_3985
what city is mco
( lambda $0 e ( and ( city $0 ) ( loc : t mco : ap $0 ) ) )
atis_4236
what flights from las vegas to phoenix on saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 phoenix : ci ) ( day $0 saturday : da ) ) )
atis_1554
i would like to fly from boston to oakland what airlines fly from boston to oakland
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_4216
what flights from boston to pittsburgh after 723pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1923 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
atis_2519
please give me flights available from denver to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
atis_3120
show me flights from anywhere to philadelphia arriving after 2100
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 2100 : ti ) ( to $0 philadelphia : ci ) ) )
atis_972
how many flights does delta have with a class of service code f
( count $0 ( and ( flight $0 ) ( fare_basis_code $0 f : fb ) ( airline $0 dl : al ) ) )
atis_4952
where is mco
( lambda $0 e ( loc : t mco : ap $0 ) )
atis_419
does eastern airlines fly between boston and washington
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_411
does continental fly from denver to san francisco
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_2384
now show me the flights from denver to philadelphia on a saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
atis_2258
list the flights from dallas to san francisco on american airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
atis_2101
list all the landings at general mitchell international
( lambda $0 e ( and ( to $0 mke : ap ) ) )
atis_4835
what type of aircraft is used on the first flight from philadelphia to dallas in the morning
( lambda $0 e ( aircraft ( argmin $1 ( and ( flight $1 ) ( during_day $1 morning : pd ) ( from $1 philadelphia : ci ) ( to $1 dallas : ci ) ) ( departure_time $1 ) ) $0 ) )
atis_2663
please show me airlines with flights from denver to boston with a stopover in philadelphia
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 boston : ci ) ( stop $1 philadelphia : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_791
give me the american airlines flights from phoenix to milwaukee on wednesday
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
atis_1317
i want to arrive in detroit around 6pm and i'm leaving from chicago
( lambda $0 e ( and ( approx_arrival_time $0 1800 : ti ) ( from $0 chicago : ci ) ( to $0 detroit : ci ) ) )
atis_1693
i'd like to book a flight from denver to pittsburgh and i'd like to go on eastern airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
atis_1647
i'd like a list of all the flights from san francisco to pittsburgh on sunday please
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 sunday : da ) ) )
atis_657
flights from montreal to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 las_vegas : ci ) ) )
atis_2031
list all flights from indianapolis to seattle
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 seattle : ci ) ) )
atis_4939
when do planes leave boston for san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_4904
what's the earliest flight leaving denver for pittsburgh
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( departure_time $0 ) )
atis_313
dallas ground transportation
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
atis_943
how many airlines have flights with service class yn
( count $0 ( and ( exists $1 ( and ( fare_basis_code $1 yn : fb ) ( flight $1 ) ( airline $1 $0 ) ) ) ( airline $0 ) ) )
atis_3926
what are the flights from pittsburgh to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
atis_1656
i'd like a round trip ticket from los angeles to tacoma washington
( lambda $0 e ( and ( round_trip $0 ) ( from $0 los_angeles : ci ) ( to $0 tacoma : ci ) ) )
atis_4430
what is the airfare from pittsburgh to atlanta
( lambda $0 e ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1036
how much is the cheapest flight from denver to pittsburgh with a stop in atlanta
( fare ( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) ( fare $0 ) ) )
atis_1703
i'd like to find a flight between dallas and philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 philadelphia : ci ) ) )
atis_503
find me a flight on united from boston to san francisco with a stopover in denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_320
define airline hp
hp : al
atis_3708
what about a car rental in denver
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 denver : ci ) ) )
atis_2174
list flights from orlando to tacoma on saturday of fare basis code of q
( lambda $0 e ( and ( flight $0 ) ( fare_basis_code $0 q : fb ) ( from $0 orlando : ci ) ( to $0 tacoma : ci ) ( day $0 saturday : da ) ) )
atis_1311
i want information on flights from atlanta to washington dc i want to leave after 4pm on wednesday or before 9am on thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( or ( and ( > ( departure_time $0 ) 1600 : ti ) ( day $0 wednesday : da ) ) ( and ( < ( departure_time $0 ) 900 : ti ) ( day $0 thursday : da ) ) ) ) )
atis_954
how many delta flights leave from washington
( count $0 ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 washington : ci ) ) )
atis_4588
what is the fare for flights from denver to atlanta
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3812
what are the cheapest one way flights from denver to atlanta
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
atis_4307
what flights go from san francisco to washington via indianapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ( stop $0 indianapolis : ci ) ) )
atis_2146
list flights from cincinnati to san jose friday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 cincinnati : ci ) ( to $0 san_jose : ci ) ( day $0 friday : da ) ) )
atis_4922
what's the lowest round trip fare from atlanta to bwi
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 bwi : ap ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_40
all flights from dallas to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
atis_1832
i'm trying to find the flight number from a flight from orlando to cleveland on us air and it arrives around 10pm
( lambda $0 e ( exists $1 ( and ( airline $1 us : al ) ( approx_arrival_time $1 2200 : ti ) ( from $1 orlando : ci ) ( to $1 cleveland : ci ) ( = ( flight_number $1 ) $0 ) ) ) )
atis_2886
show me all flights direct only from boston to san francisco or oakland that arrive before 10am local time
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( or ( to $0 san_francisco : ci ) ( to $0 oakland : ci ) ) ( from $0 boston : ci ) ) )
atis_3618
show me us air fares for next sunday from miami to cleveland
( lambda $0 e ( exists $1 ( and ( airline $1 us : al ) ( from $1 miami : ci ) ( to $1 cleveland : ci ) ( day $1 sunday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_2161
list flights from la guardia to burbank
( lambda $0 e ( and ( flight $0 ) ( from $0 lga : ap ) ( to $0 burbank : ci ) ) )
atis_454
eastern flies from atlanta to denver what type of aircraft do you use before 6pm
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( < ( departure_time $1 ) 1800 : ti ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4436
what is the capacity of the 73s
( capacity 73s : ac )
atis_722
from phoenix to las vegas on saturday
( lambda $0 e ( and ( from $0 phoenix : ci ) ( to $0 las_vegas : ci ) ( day $0 saturday : da ) ) )
atis_4151
what flights are there from memphis to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ) )
atis_2155
list flights from houston to memphis june twenty ninth
( lambda $0 e ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 memphis : ci ) ( day_number $0 29 : dn ) ( month $0 june : mn ) ) )
atis_2459
on the earliest flight from san francisco to atlanta on delta is a meal being served
( has_meal ( argmin $0 ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ) ( departure_time $0 ) ) )
atis_3314
show me the cheapest flights from san francisco to philadelphia
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ) ( fare $0 ) )
atis_3606
show me the schedule for airlines leaving pittsburgh going to san francisco for next monday
( lambda $0 e ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( day $1 monday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_3324
show me the cheapest one way flights from pittsburgh to dallas leaving pittsburgh between noon and 2pm
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( departure_time $0 ) 1400 : ti ) ( from $0 pittsburgh : ci ) ( to $0 dallas : ci ) ) ( fare $0 ) )
atis_3743
what airlines fly from boston to atlanta
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_4594
what is the fare going from atlanta to boston one way on november seventh
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_2617
please list the flights from chicago to kansas city
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 kansas_city : ci ) ) )
atis_4412
what is ground transportation between the san francisco airport and the city
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_francisco : ci ) ( from_airport $0 sfo : ap ) ) )
atis_681
flights from pittsburgh to baltimore arriving between 4 and 5pm
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1600 : ti ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
atis_1100
i need a flight from memphis to tacoma that goes through los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ( stop $0 los_angeles : ci ) ) )
atis_3050
show me all the flights on delta airlines and twa that go to atlanta in the morning
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 dl : al ) ( airline $0 tw : al ) ) ( during_day $0 morning : pd ) ( to $0 atlanta : ci ) ) )
atis_702
flying from pittsburgh to atlanta on september fourth what would be the cheapest flight
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 4 : dn ) ( month $0 september : mn ) ) ( fare $0 ) )
atis_1825
i'm sorry i want to book a flight from atlanta to denver colorado
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
atis_3993
what delta flights fly from washington to dallas in the morning
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 morning : pd ) ( from $0 washington : ci ) ( to $0 dallas : ci ) ) )
atis_1397
i would like a coach class seat on a flight leaving denver arriving atlanta
( lambda $0 e ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
atis_4119
what flights are available wednesday morning from boston to denver
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) )
atis_1112
i need a flight from philadelphia to dallas next wednesday in the morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 wednesday : da ) ) )
atis_652
flights from miami to cleveland
( lambda $0 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ) )
atis_4302
what flights go from pittsburgh to newark after 305 in the afternoon
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1505 : ti ) ( from $0 pittsburgh : ci ) ( to $0 newark : ci ) ) )
atis_3179
show me flights from philadelphia to denver on a monday
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) )
atis_1110
i need a flight from ontario to los angeles on a thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
atis_3858
what are the flights available after 3pm between denver and san francisco
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1500 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_1585
i would like to know some information on flights leaving philadelphia arriving in pittsburgh in the afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 pittsburgh : ci ) ) )
atis_3556
show me the itinerary for the connecting flight from dallas fort worth to san francisco that departs dallas fort worth at 1940
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1940 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
atis_3489
show me the flights from pittsburgh to los angeles on thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
atis_529
find the flights that leave philadelphia and arrive in dallas by noon
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
atis_3184
show me flights from pittsburgh to atlanta on monday morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 monday : da ) ) )