qid
stringlengths 6
9
| source
stringlengths 6
259
| target
stringlengths 6
409
| anonymized_target
stringlengths 16
454
|
---|---|---|---|
atis_762
|
give me all flights from new york city to las vegas that arrive on a sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day_arrival $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
|
atis_3463
|
show me the flights from los angeles to pittsburgh which arrive at pittsburgh on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ( day_arrival $0 monday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
|
atis_4183
|
what flights depart baltimore and arrive by 8pm friday in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day_arrival $0 friday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
|
atis_4862
|
what're the flights from memphis to las vegas that arrive on a sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day_arrival $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
|
atis_4863
|
what're the flights from new york city to las vegas that arrive on a sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day_arrival $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_arrival $0 ANON_ENTITY : da ) ) )
|
atis_1220
|
i need the cost of a ticket going from denver to baltimore a first class ticket on united airlines
|
( lambda $0 e ( exists $1 ( and ( airline $1 ua : al ) ( class_type $1 first : cl ) ( from $1 denver : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2786
|
show business class fares from san francisco to denver on united airlines
|
( lambda $0 e ( exists $1 ( and ( airline $1 ua : al ) ( class_type $1 business : cl ) ( from $1 san_francisco : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2787
|
show business class fares on us air from boston to toronto
|
( lambda $0 e ( exists $1 ( and ( airline $1 us : al ) ( class_type $1 business : cl ) ( from $1 boston : ci ) ( to $1 toronto : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4494
|
what is the coach fare between boston and atlanta on delta
|
( lambda $0 e ( exists $1 ( and ( airline $1 dl : al ) ( class_type $1 coach : cl ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4719
|
what is the price of business class from boston to san francisco on twa
|
( lambda $0 e ( exists $1 ( and ( airline $1 tw : al ) ( class_type $1 business : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_987
|
how many passengers can fly on a 757
|
( capacity 757 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_988
|
how many passengers fit on a d9s
|
( capacity d9s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_989
|
how many people fit on a 72s airplane
|
( capacity 72s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_990
|
how many people fit on a 73s
|
( capacity 73s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_992
|
how many people will a 757 hold
|
( capacity 757 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_993
|
how many seats in a 100
|
( capacity 100 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_994
|
how many seats in a 72s
|
( capacity 72s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_995
|
how many seats in a 734
|
( capacity 734 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4424
|
what is seating capacity on the aircraft 73s
|
( capacity 73s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4436
|
what is the capacity of the 73s
|
( capacity 73s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4730
|
what is the seating capacity for the f28
|
( capacity f28 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4731
|
what is the seating capacity of a 72s
|
( capacity 72s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4732
|
what is the seating capacity of a 757
|
( capacity 757 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4734
|
what is the seating capacity of an m80
|
( capacity m80 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4735
|
what is the seating capacity of the 733
|
( capacity 733 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4736
|
what is the seating capacity of the 757
|
( capacity 757 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4737
|
what is the seating capacity of the aircraft 72s
|
( capacity 72s : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4738
|
what is the seating capacity of the aircraft m80
|
( capacity m80 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4739
|
what is the seating capacity of the m80
|
( capacity m80 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4740
|
what is the seating capacity of the type of aircraft m80
|
( capacity m80 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4742
|
what is the seating capacity on the aircraft 733
|
( capacity 733 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4743
|
what is the seating capacity on the aircraft m80
|
( capacity m80 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4869
|
what's the capacity of a 733
|
( capacity 733 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4870
|
what's the capacity of an f28
|
( capacity f28 : ac )
|
( capacity ANON_ENTITY : ac )
|
atis_4770
|
what kind of airline is flight ua 281 from boston to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 281 : fn ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_2829
|
show flights from san francisco to denver on either wednesday the twenty third or thursday the twenty fourth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ( or ( and ( day $0 wednesday : da ) ( day_number $0 23 : dn ) ) ( and ( day $0 thursday : da ) ( day_number $0 24 : dn ) ) ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( or ( and ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ) ( and ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ) ) ) )
|
atis_3769
|
what airport in new york is closest to downtown
|
( argmin $0 ( and ( airport $0 ) ( loc : t $0 new_york : ci ) ) ( miles_distant $0 new_york : ci ) )
|
( argmin $0 ( and ( airport $0 ) ( ANON_ENTITY : t $0 ANON_ENTITY : ci ) ) ( miles_distant $0 ANON_ENTITY : ci ) )
|
atis_3583
|
show me the most expensive fare
|
( max $0 ( exists $1 ( = ( fare $1 ) $0 ) ) )
|
( max $0 ( exists $1 ( = ( fare $1 ) $0 ) ) )
|
atis_266
|
cleveland to miami on wednesday arriving before 4pm
|
( lambda $0 e ( and ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_2450
|
on monday i would like to travel from charlotte north carolina to phoenix arizona i would like to arrive in phoenix before 4pm
|
( lambda $0 e ( and ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 charlotte : ci ) ( to $0 phoenix : ci ) ( day $0 monday : da ) ) )
|
( lambda $0 e ( and ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_1506
|
i would like the time of your earliest flight in the morning from philadelphia to washington on american airlines
|
( departure_time ( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) ) )
|
( departure_time ( argmin $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) ) )
|
atis_3765
|
what airlines leave from washington
|
( lambda $0 e ( exists $1 ( and ( from $1 washington : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_4512
|
what is the cost of the air taxi operation at philadelphia international airport
|
( lambda $0 e ( exists $1 ( and ( air_taxi_operation $1 ) ( from_airport $1 phl : ap ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( air_taxi_operation $1 ) ( from_airport $1 ANON_ENTITY : ap ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_3335
|
show me the costs and times for flights from san francisco to atlanta
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $2 ) ( from $2 san_francisco : ci ) ( to $2 atlanta : ci ) ( = ( departure_time $2 ) $1 ) ( = ( fare $2 ) $0 ) ) ) ) )
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $2 ) ( from $2 ANON_ENTITY : ci ) ( to $2 ANON_ENTITY : ci ) ( = ( departure_time $2 ) $1 ) ( = ( fare $2 ) $0 ) ) ) ) )
|
atis_4981
|
which airlines have daily flights from boston to dallas
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( daily $1 ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( daily $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_2839
|
show me a list of flights from boston to dc arriving before 9am on july twenty second
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 900 : ti ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( month_arrival $0 july : mn ) ( day_number_arrival $0 22 : dn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( month_arrival $0 ANON_ENTITY : mn ) ( day_number_arrival $0 ANON_ENTITY : dn ) ) )
|
atis_3254
|
show me one way flights from milwaukee to orlando leaving on wednesday morning
|
( lambda $0 e ( and ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ( during_day $0 morning : pd ) ( flight $0 ) ( oneway $0 ) ) )
|
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( during_day $0 ANON_ENTITY : pd ) ( flight $0 ) ( oneway $0 ) ) )
|
atis_915
|
how can i get from indianapolis to montreal in the evening
|
( lambda $0 e ( and ( from $0 indianapolis : ci ) ( to $0 montreal : ci ) ( during_day $0 evening : pd ) ) )
|
( lambda $0 e ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( during_day $0 ANON_ENTITY : pd ) ) )
|
atis_1398
|
i would like a connecting flight from dallas to san francisco leaving after 4 o'clock
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1975
|
let's see how much would a direct flight from atlanta to denver be on may seventh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( day_number $1 7 : dn ) ( month $1 may : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4481
|
what is the cheapest one way ticket from denver to pittsburgh
|
( argmin $0 ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( oneway $0 ) ) ( fare $0 ) )
|
( argmin $0 ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( oneway $0 ) ) ( fare $0 ) )
|
atis_2444
|
on flight us air 2153 from san francisco to baltimore what time and what city does the plane stop in between
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( from $2 san_francisco : ci ) ( to $2 baltimore : ci ) ( airline $2 us : al ) ( flight_number $2 2153 : fn ) ( stop $2 $0 ) ( = ( stop_arrival_time $2 ) $1 ) ) ) ) )
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( from $2 ANON_ENTITY : ci ) ( to $2 ANON_ENTITY : ci ) ( airline $2 ANON_ENTITY : al ) ( flight_number $2 ANON_ENTITY : fn ) ( stop $2 $0 ) ( = ( stop_arrival_time $2 ) $1 ) ) ) ) )
|
atis_4651
|
what is the latest afternoon flight i can get from dallas to san francisco on first class
|
( argmax $0 ( and ( flight $0 ) ( class_type $0 first : cl ) ( during_day $0 afternoon : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
|
( argmax $0 ( and ( flight $0 ) ( class_type $0 ANON_ENTITY : cl ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( departure_time $0 ) )
|
atis_4626
|
what is the flight schedule of the f28 from pittsburgh to baltimore
|
( lambda $0 e ( exists $1 ( and ( = ( departure_time $1 ) $0 ) ( to $1 baltimore : ci ) ( from $1 pittsburgh : ci ) ( aircraft_code $1 f28 : ac ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( = ( departure_time $1 ) $0 ) ( to $1 ANON_ENTITY : ci ) ( from $1 ANON_ENTITY : ci ) ( aircraft_code $1 ANON_ENTITY : ac ) ) ) )
|
atis_2866
|
show me all direct flights from san francisco to boston departing before noon
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : 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 ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 ANON_ENTITY : ci ) ( to_city $0 ANON_ENTITY : ci ) ) )
|
atis_193
|
can you help me with ground transportation information i need to get 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 ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 ANON_ENTITY : ci ) ( to_city $0 ANON_ENTITY : ci ) ) )
|
atis_541
|
fine can you give me information on ground transportation in washington dc to downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 washington : ci ) ( to_city $0 washington : ci ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 ANON_ENTITY : ci ) ( to_city $0 ANON_ENTITY : ci ) ) )
|
atis_1264
|
i need your help with information on ground transportation from the airport in philadelphia to downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 philadelphia : ci ) ( to_city $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 ANON_ENTITY : ci ) ( to_city $0 ANON_ENTITY : ci ) ) )
|
atis_3037
|
show me all the flights from denver and all the flights from miami that arrive at baltimore around noon
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1200 : ti ) ( or ( from $0 denver : ci ) ( from $0 miami : ci ) ) ( to $0 baltimore : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 ANON_ENTITY : ti ) ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3985
|
what city is mco
|
( lambda $0 e ( and ( city $0 ) ( loc : t mco : ap $0 ) ) )
|
( lambda $0 e ( and ( city $0 ) ( ANON_ENTITY : t ANON_ENTITY : ap $0 ) ) )
|
atis_3986
|
what city is the airport mco in
|
( lambda $0 e ( and ( city $0 ) ( loc : t mco : ap $0 ) ) )
|
( lambda $0 e ( and ( city $0 ) ( ANON_ENTITY : t ANON_ENTITY : ap $0 ) ) )
|
atis_3789
|
what are connecting flights from chicago into seattle on june fifth
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day_number $0 5 : dn ) ( month $0 june : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3790
|
what are connecting flights from chicago to seattle on june first
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day_number $0 1 : dn ) ( month $0 june : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3075
|
show me all us air flights from atlanta to denver for the day after tomorrow
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_after_tomorrow $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_after_tomorrow $0 ) ) )
|
atis_2933
|
show me all flights from new york to miami leaving on a tuesday and returning on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ( day_return $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_return $0 ANON_ENTITY : da ) ) )
|
atis_2540
|
please give me the prices for all flights from philadelphia to denver airport next sunday
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 den : ap ) ( day $1 sunday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ap ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2606
|
please list the cost of all flights from philadelphia to denver airport next sunday
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 den : ap ) ( day $1 sunday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ap ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4357
|
what ground transportation is available at the baltimore airport
|
( lambda $0 e ( and ( from_airport $0 bwi : ap ) ( ground_transport $0 ) ) )
|
( lambda $0 e ( and ( from_airport $0 ANON_ENTITY : ap ) ( ground_transport $0 ) ) )
|
atis_4856
|
what types of meals are available
|
( lambda $0 e ( and ( meal : t $0 ) ) )
|
( lambda $0 e ( and ( ANON_ENTITY : t $0 ) ) )
|
atis_1219
|
i need the cheapest direct flight from atlanta to denver leaving on may seventh
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 may : mn ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( fare $0 ) )
|
atis_148
|
are there any nonstop flights leaving from dallas to baltimore july seventh with who united airlines
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 ua : al ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day_number $0 7 : dn ) ( month $0 july : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_4987
|
which airlines have nonstop flights from kansas city to chicago
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( from $1 kansas_city : ci ) ( to $1 chicago : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_1781
|
i'd like to see flights from baltimore to atlanta that arrive before noon and i'd like to see flights from denver to atlanta that arrive before noon
|
( lambda $0 e ( or ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) ) )
|
( lambda $0 e ( or ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ) )
|
atis_2403
|
okay for now i would like information on a flight on april twenty seventh from pittsburgh to atlanta leaving early in the morning about 8 o'clock
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 800 : ti ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 27 : dn ) ( month $0 april : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 ANON_ENTITY : ti ) ( during_day $0 ANON_ENTITY : pd ) ( during_day $0 ANON_ENTITY : pd ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_4712
|
what is the next flight from pittsburgh to san francisco after delta flight 1059
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( > ( departure_time $0 ) ( departure_time ( the $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 1059 : fn ) ) ) ) ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( > ( departure_time $0 ) ( departure_time ( the $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ) ) ) ) ) ( departure_time $0 ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( daily $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1004
|
how much does flight dl 402 from denver to philadelphia cost
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 402 : fn ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1005
|
how much does flight ua 270 from denver to philadelphia cost
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 270 : fn ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1006
|
how much does flight ua 281 from boston to denver cost
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 281 : fn ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1007
|
how much does flight ua 297 from denver to san francisco cost
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 297 : fn ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1019
|
how much does the american airlines flight 71 from dallas to san francisco cost
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 71 : fn ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2659
|
please show me airfare of flight us 345 from boston to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 us : al ) ( flight_number $1 345 : fn ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3357
|
show me the fare for delta flight 296 from atlanta to philadelphia
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 296 : fn ) ( from $1 atlanta : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3358
|
show me the fare for us flight 3357 from philadelphia to baltimore
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 us : al ) ( flight_number $1 3357 : fn ) ( from $1 philadelphia : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4030
|
what does it cost to fly from boston to san francisco on united airlines flight 21
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 21 : fn ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4507
|
what is the cost of flight dl 106 from philadelphia to boston
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 106 : fn ) ( from $1 philadelphia : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4591
|
what is the fare from boston to san francisco on united airlines flight 21
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 21 : fn ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4593
|
what is the fare from san francisco to dallas fort worth on delta flight 852
|
( 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 ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4599
|
what is the fare on american airlines flight 928 from dallas fort worth to boston
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 928 : fn ) ( from $1 dallas : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4718
|
what is the price of american airlines flight 19 from new york to los angeles
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 19 : fn ) ( from $1 new_york : ci ) ( to $1 los_angeles : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4905
|
what's the fare for delta flight 217 from dallas to san francisco
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 217 : fn ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( flight_number $1 ANON_ENTITY : fn ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_5020
|
which of the flights from pittsburgh to baltimore on july twenty fifth 1991 carries the smallest number of passengers
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 25 : dn ) ( month $0 july : mn ) ( year $0 1991 : yr ) ) ( capacity $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ( year $0 ANON_ENTITY : yr ) ) ( capacity $0 ) )
|
atis_4505
|
what is the cost of a round trip ticket flying from boston to dallas dallas to oakland leaving july first
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( stop $1 dallas : ci ) ( day_number $1 1 : dn ) ( month $1 july : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( stop $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2051
|
list all flights leaving denver on continental on sunday after 2134
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2134 : ti ) ( from $0 denver : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_2052
|
list all flights leaving denver on continental on sunday after 934pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2134 : ti ) ( from $0 denver : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_2062
|
list all flights on continental leaving denver on sunday after 2134
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2134 : ti ) ( from $0 denver : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_2064
|
list all flights on continental leaving seattle on sunday after 430pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 1630 : ti ) ( from $0 seattle : ci ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.