qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_2546
please list all delta flights from kansas city to salt lake city
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 kansas_city : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_3929
what are the flights from san francisco to washington dc
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ) )
atis_4297
what flights go from philadelphia to san francisco via dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_1429
i would like a flight on american airlines from baltimore to san francisco with a stop in denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_433
does midwest express serve indianapolis
( services yx : al indianapolis : ci )
atis_860
give me the saturday morning flights on continental that have meals from chicago to minneapolis
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 co : al ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 minneapolis : ci ) ( day $0 saturday : da ) ) )
atis_4370
what ground transportation is available in dallas tomorrow
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( tomorrow $0 ) ) )
atis_967
how many flights come from denver to baltimore on july nineteenth
( count $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 19 : dn ) ( month $0 july : mn ) ) )
atis_3729
what airline is the flight originating in atlanta on november seventh at noon and arriving in san francisco at 210pm
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 1200 : ti ) ( arrival_time $1 1410 : ti ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_3486
show me the flights from pittsburgh to baltimore arriving in baltimore on june fourteenth
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number_arrival $0 14 : dn ) ( month_arrival $0 june : mn ) ) )
atis_3734
what airlines are ac and as
( lambda $0 e ( or ( equals $0 ac : al ) ( equals $0 as : al ) ) )
atis_3623
show me what fare codes symbols stand for
( lambda $0 e ( fare_basis_code $0 ) )
atis_5008
which flights from memphis to tacoma also stop in los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ( stop $0 los_angeles : ci ) ) )
atis_3413
show me the flights from boston to denver on august second
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
atis_3695
us 3724 baltimore to philadelphia what is the fare
( lambda $0 e ( exists $1 ( and ( airline $1 us : al ) ( flight_number $1 3724 : fn ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2813
show flights from denver into san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_4652
what is the latest departure from boston to pittsburgh on the seventh of july
( argmax $0 ( and ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 7 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) )
atis_908
how about a flight from milwaukee to st. louis that leaves monday night
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 milwaukee : ci ) ( to $0 st_louis : ci ) ( day $0 monday : da ) ) )
atis_2562
please list all flights into denver before noon on united airlines and northwest airlines
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( < ( arrival_time $0 ) 1200 : ti ) ( to $0 denver : ci ) ) )
atis_4605
what is the fare on the thrift economy flight from boston to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 thrift : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4317
what flights leave baltimore for boston after 6 o'clock on friday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 600 : ti ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ( day $0 friday : da ) ) )
atis_146
are there any nonstop flights from philadelphia to denver that arrive before 5pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
atis_3361
show me the fares for delta flights from dallas to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1777
i'd like to see all the economy fares from baltimore to philadelphia
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3186
show me flights from pittsburgh to los angeles thursday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
atis_508
find me the cheapest flight from boston to washington
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( fare $0 ) )
atis_4419
what is restriction ap/57
ap_57 : rc
atis_1561
i would like to fly from denver to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
atis_4272
what flights go from boston to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_2852
show me airline abbreviations
( lambda $0 e ( airline $0 ) )
atis_168
between boston and denver i'd like a flight that takes the least amount of stops to get to boston
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ( to $0 boston : ci ) ) ( stops $0 ) )
atis_3419
show me the flights from boston to pittsburgh next wednesday night after 6 o'clock
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( during_day $0 late : pd ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
atis_1392
i want wednesday flights from atlanta to washington dc
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
atis_2257
list the flights from dallas to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
atis_2237
list the delta airlines flights from boston to philadelphia
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
atis_136
are there any flights from new york to montreal canada leaving on thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( day $0 thursday : da ) ) )
atis_894
hello i would like to plan a flight on american airlines from boston to denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_197
can you list all flights from chicago to st. louis that depart after 12 noon
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 chicago : ci ) ( to $0 st_louis : ci ) ) )
atis_1483
i would like information on flights leaving from washington dc to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) )
atis_1792
i'd like to take a flight that begins in boston and lands at dallas fort worth but i'd like to stop over in philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( stop $0 philadelphia : ci ) ) )
atis_4951
where is lester pearson airport
( lambda $0 e ( loc : t yyz : ap $0 ) )
atis_2850
show me a return flight from miami to jfk please
( lambda $0 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 jfk : ap ) ) )
atis_3116
show me flights denver to washington on thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
atis_2389
oakland to philadelphia
( lambda $0 e ( and ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ) )
atis_1447
i would like a schedule of flights from denver to san francisco on tuesday
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( day $1 tuesday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_199
can you list all flights from washington to toronto
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 toronto : ci ) ) )
atis_4525
what is the earliest arriving flight from boston to washington dc
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( arrival_time $0 ) )
atis_3611
show me the united airlines flights from denver to baltimore leaving on june fourteenth
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 14 : dn ) ( month $0 june : mn ) ) )
atis_3466
show me the flights from love field to other airports
( lambda $0 e ( and ( flight $0 ) ( from $0 dal : ap ) ) )
atis_1823
i'm requesting flight information on a flight from denver to san francisco on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
atis_1795
i'd like to travel from kansas city to chicago next wednesday
( lambda $0 e ( and ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day $0 wednesday : da ) ) )
atis_730
get fares from washington to boston
( lambda $0 e ( exists $1 ( and ( from $1 washington : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3886
what are the flights from boston to washington
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_4393
what is as
as : al
atis_2121
list daily flights from denver to boston
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
atis_3465
show me the flights from love field to any other airport
( lambda $0 e ( and ( flight $0 ) ( from $0 dal : ap ) ) )
atis_807
give me the flights and fares for a trip to cleveland from miami on wednesday
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ( day $0 wednesday : da ) ( fare $0 $1 ) ) ) )
atis_2595
please list me the flights and their cost of all airlines flying from denver to baltimore
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( = ( fare $0 ) $1 ) ) ) )
atis_2997
show me all flights to dallas that are less than 1500 dollars round trip
( lambda $0 e ( and ( flight $0 ) ( to $0 dallas : ci ) ( < ( fare $0 ) 1500 : do ) ( round_trip $0 ) ) )
atis_1198
i need information for a flight from denver to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
atis_4403
what is fare code f
f : fb
atis_821
give me the flights from memphis tennessee to charlotte north carolina
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 charlotte : ci ) ) )
atis_2711
please tell me the flights between boston and philadelphia next thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day $0 thursday : da ) ) )
atis_1241
i need to fly from pittsburgh to oakland and depart in the afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
atis_4051
what does the meal code s/ stand for
s : rc
atis_4923
what's the lowest round trip fare from atlanta to pittsburgh
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_623
flights from cleveland to miami
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ) )
atis_4075
what flights are available between baltimore and boston on august twelfth
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ( day_number $0 12 : dn ) ( month $0 august : mn ) ) )
atis_1162
i need a plane that arrives in san francisco by 9 o'clock pm on friday and leaves from baltimore
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 2100 : ti ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day_arrival $0 friday : da ) ) )
atis_2603
please list the american airlines flights from philadelphia to dallas on tuesday october first
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 tuesday : da ) ( day_number $0 1 : dn ) ( month $0 october : mn ) ) )
atis_2775
show all flights on united airlines from san francisco to denver to washington dc
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ( stop $0 denver : ci ) ) )
atis_3781
what are all monday flights from denver to san francisco on united airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
atis_4387
what is airline dl
dl : al
atis_1740
i'd like to fly late tomorrow from minneapolis to long beach
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 minneapolis : ci ) ( to $0 long_beach : ci ) ( tomorrow $0 ) ) )
atis_2282
list the nonstop flights from denver to washington dc
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ) )
atis_3026
show me all the flights between oakland and denver
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 denver : ci ) ) )
atis_4163
what flights are there from pittsburgh to los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ) )
atis_24
all flights and fares from denver to pittsburgh on us air number 1039 on a thursday
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( airline $0 us : al ) ( flight_number $0 1039 : fn ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 thursday : da ) ( = ( fare $0 ) $1 ) ) ) )
atis_216
can you please tell me the type of aircraft used flying from atlanta to denver on eastern flight 825 leaving at 555
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( flight_number $1 825 : fn ) ( departure_time $1 555 : ti ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_2860
show me all connecting flights on united airlines between boston and san francisco
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_1910
is there a flight on united airlines from boston to denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_4089
what flights are available from boston to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_3421
show me the flights from boston to pittsburgh on wednesday and thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( or ( day $0 wednesday : da ) ( day $0 thursday : da ) ) ) )
atis_4262
what flights from st. paul to kansas city on friday with lunch served
( lambda $0 e ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 st_paul : ci ) ( to $0 kansas_city : ci ) ( day $0 friday : da ) ) )
atis_207
can you list all the flights between phoenix and las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 las_vegas : ci ) ) )
atis_3510
show me the flights from st. petersburg to salt lake city that arrive before noon
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 st_petersburg : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_2322
may i have a listing of flights from long beach to columbus ohio on tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 columbus : ci ) ( day $0 tuesday : da ) ) )
atis_591
flight will start from boston
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ) )
atis_1720
i'd like to fly from boston to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) )
atis_1863
information on round trip flights from pittsburgh to san francisco first class
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 first : cl ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
atis_525
find the earliest flight from boston to oakland that serves breakfast
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) ( departure_time $0 ) )
atis_2335
morning flight from atlanta to philadelphia
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
atis_469
fares and flights from denver to philadelphia
( lambda $0 e ( lambda $1 e ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2811
show flights from dallas to oakland
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 oakland : ci ) ) )
atis_928
how far from the airport in the dallas fort worth airport is dallas
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
atis_1896
is there a flight from denver to san francisco on continental airlines leaving after 12 o'clock in the afternoon
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_2721
rental cars in washington dc
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 washington : ci ) ) )
atis_1469
i would like information on a flight between washington and san francisco with a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_2934
show me all flights from new york to miami leaving on a tuesday and show me all flights from miami to new york leaving on sunday
( lambda $0 e ( or ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ( day $0 sunday : da ) ) ) )
atis_1913
is there a limousine service available from the pittsburgh airport
( lambda $0 e ( and ( limousine $0 ) ( from_airport $0 pit : ap ) ) )