qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_1266
|
i want a cheap flight from denver to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
atis_4891
|
what's the difference between fare code q and fare code f
|
( lambda $0 e ( and ( fare_basis_code $0 q : fb ) ( fare_basis_code $0 f : fb ) ) )
|
atis_3263
|
show me round trip fares from baltimore to philadelphia
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3524
|
show me the flights leaving from love field
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dal : ap ) ) )
|
atis_4907
|
what's the first class fare round trip from atlanta to denver
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_226
|
can you show me the cheapest round trip flights between denver and pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_1774
|
i'd like to see all flights from baltimore to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_17
|
airports in new york
|
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 new_york : ci ) ) )
|
atis_4879
|
what's the cheapest flight from pittsburgh to san francisco on friday
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) ( fare $0 ) )
|
atis_1936
|
is there ground transportation available at the indianapolis airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 ind : ap ) ) )
|
atis_3411
|
show me the flights from boston to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) )
|
atis_2661
|
please show me airlines with flights from boston to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3172
|
show me flights from milwaukee to orlando one way
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
atis_3735
|
what airlines are there
|
( lambda $0 e ( airline $0 ) )
|
atis_1206
|
i need information on flight from atlanta to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
|
atis_4867
|
what's restriction ap68
|
ap_68 : rc
|
atis_418
|
does dl stand for delta
|
( equals dl : al ( abbrev delta : al ) )
|
atis_2616
|
please list the flights from charlotte to newark
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 newark : ci ) ) )
|
atis_988
|
how many passengers fit on a d9s
|
( capacity d9s : ac )
|
atis_1062
|
i need a connecting flight on continental on june fifth from chicago to seattle
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( airline $0 co : al ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day_number $0 5 : dn ) ( month $0 june : mn ) ) )
|
atis_4312
|
what flights land at general mitchell international
|
( lambda $0 e ( and ( flight $0 ) ( to $0 mke : ap ) ) )
|
atis_3755
|
what airlines fly into denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_2244
|
list the fares of us air flights from boston to philadelphia
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 us : al ) ( from $1 boston : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_572
|
flight from washington dc to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_229
|
can you show me the flights from dallas to baltimore with economy fares
|
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
|
atis_2626
|
please list the flights from new york to los angeles
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 los_angeles : ci ) ) )
|
atis_86
|
american airlines from phoenix to milwaukee
|
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_2666
|
please show me airlines with flights from philadelphia to dallas
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 dallas : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_440
|
does twa have a flight from indianapolis to houston arriving at 11am
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( arrival_time $0 1100 : ti ) ( from $0 indianapolis : ci ) ( to $0 houston : ci ) ) )
|
atis_2831
|
show flights leaving boston on wednesday morning and arriving in 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_1427
|
i would like a flight leaving from boston arriving in san francisco with a stopover in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_2922
|
show me all flights from denver to san francisco next wednesday which leave after noon
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_288
|
could you please give me the cost of a round trip flight from denver to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2924
|
show me all flights from indianapolis to montreal
|
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 montreal : ci ) ) )
|
atis_3810
|
what are the cheapest one way flights from atlanta to denver
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
|
atis_1300
|
i want a flight that leaves from charlotte to newark that leaves in the afternoon or evening
|
( lambda $0 e ( and ( flight $0 ) ( or ( during_day $0 evening : pd ) ( during_day $0 afternoon : pd ) ) ( from $0 charlotte : ci ) ( to $0 newark : ci ) ) )
|
atis_2636
|
please list the flights leaving from st. louis to st. paul after 10am
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1000 : ti ) ( from $0 st_louis : ci ) ( to $0 st_paul : ci ) ) )
|
atis_242
|
can you tell me the latest evening flight from atlanta to denver on july seventh
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) )
|
atis_4000
|
what do you have tomorrow after 5 o'clock from atlanta to san francisco
|
( lambda $0 e ( and ( > ( departure_time $0 ) 1700 : ti ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( tomorrow $0 ) ) )
|
atis_4139
|
what flights are there from baltimore to newark
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ) )
|
atis_1382
|
i want to see the cheapest flight from denver to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
atis_422
|
does flight dl 1083 from philadelphia to denver fly on saturdays
|
( lambda $0 e ( and ( flight $0 ) ( flight $0 ) ( airline $0 dl : al ) ( flight_number $0 1083 : fn ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 saturday : da ) ) )
|
atis_4887
|
what's the cheapest round trip fare between dallas and baltimore
|
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3350
|
show me the earliest nonstop flight from dallas to houston
|
( argmin $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) ( departure_time $0 ) )
|
atis_2472
|
philadelphia to boston monday
|
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
|
atis_4489
|
what is the cheapest ticket from baltimore to san francisco on friday august thirtieth
|
( argmin $0 ( and ( day $0 friday : da ) ( to $0 san_francisco : ci ) ( from $0 baltimore : ci ) ( month $0 august : mn ) ( day_number $0 30 : dn ) ) ( fare $0 ) )
|
atis_2992
|
show me all flights out of boston on june twentieth that have business class
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 business : cl ) ( from $0 boston : ci ) ( day_number $0 20 : dn ) ( month $0 june : mn ) ) )
|
atis_3265
|
show me round trip fares from las vegas to houston nonstop
|
( lambda $0 e ( exists $1 ( and ( nonstop $1 ) ( round_trip $1 ) ( from $1 las_vegas : ci ) ( to $1 houston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1182
|
i need flight information between atlanta and boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_998
|
how many united flights are there from san francisco please
|
( count $0 ( and ( airline $0 ua : al ) ( from $0 san_francisco : ci ) ( flight $0 ) ) )
|
atis_2802
|
show flights between philadelphia and denver on september sixteenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day_number $0 16 : dn ) ( month $0 september : mn ) ) )
|
atis_832
|
give me the flights from phoenix to milwaukee on wednesday on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
atis_3585
|
show me the most expensive one way flight from detroit to westchester county
|
( argmax $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 detroit : ci ) ( to $0 westchester_county : ci ) ) ( fare $0 ) )
|
atis_944
|
how many airports does oakland have
|
( count $0 ( and ( airport $0 ) ( loc : t $0 oakland : ci ) ) )
|
atis_935
|
how long does it take to fly from boston to atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( time_elapsed $1 ) $0 ) ) ) )
|
atis_2644
|
please list the morning flights from philadelphia to toronto
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 toronto : ci ) ) )
|
atis_3340
|
show me the earliest flight from boston to denver
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
|
atis_2682
|
please show me first class flights from indianapolis to memphis one way leaving before 10am
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( class_type $0 first : cl ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 indianapolis : ci ) ( to $0 memphis : ci ) ) )
|
atis_1292
|
i want a flight from toronto to san diego that stops in st. louis are there flights
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 st_louis : ci ) ) )
|
atis_880
|
ground transportation in denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_4185
|
what flights depart from charlotte to newark that leave in the afternoon or leave in the evening
|
( lambda $0 e ( and ( flight $0 ) ( or ( during_day $0 evening : pd ) ( during_day $0 afternoon : pd ) ) ( from $0 charlotte : ci ) ( to $0 newark : ci ) ) )
|
atis_996
|
how many stops are on all flights from boston to san francisco that depart before 12 o'clock noon
|
( sum $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( < ( departure_time $0 ) 1200 : ti ) ) ( stops $0 ) )
|
atis_4214
|
what flights from baltimore to san francisco arrive before 8pm in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 2000 : ti ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_346
|
display types of aircraft departing from cleveland to dallas before noon
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 1200 : ti ) ( from $1 cleveland : ci ) ( to $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_558
|
flight from denver to boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
|
atis_3201
|
show me flights from san francisco to seattle
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 seattle : ci ) ) )
|
atis_3853
|
what are the first class fares from dallas to baltimore
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4498
|
what is the cost of a business class ticket going from boston to dallas leaving july first
|
( lambda $0 e ( exists $1 ( and ( class_type $1 business : cl ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( day_number $1 1 : dn ) ( month $1 july : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_695
|
flights on friday from newark to tampa
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) )
|
atis_3283
|
show me the airfare from pittsburgh to san francisco
|
( lambda $0 e ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1504
|
i would like the least expensive airfare flight on sunday to pittsburgh from san francisco
|
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 sunday : da ) ) ( fare $0 ) )
|
atis_257
|
cheapest flight from memphis to miami
|
( argmin $0 ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 miami : ci ) ) ( fare $0 ) )
|
atis_4088
|
what flights are available from boston to denver today
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( today $0 ) ) )
|
atis_2809
|
show flights from boston to denver on wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) )
|
atis_3498
|
show me the flights from san diego to newark new jersey
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 newark : ci ) ) )
|
atis_1148
|
i need a flight to seattle leaving from baltimore making a stop in minneapolis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 seattle : ci ) ( stop $0 minneapolis : ci ) ) )
|
atis_3961
|
what are the nonstop flights from kansas city to burbank arriving on saturday may twenty two
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 kansas_city : ci ) ( to $0 burbank : ci ) ( day_arrival $0 saturday : da ) ( day_number_arrival $0 22 : dn ) ( month_arrival $0 may : mn ) ) )
|
atis_4120
|
what flights are available with q fares from boston to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( fare_basis_code $0 q : fb ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_4221
|
what flights from cincinnati to tampa
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cincinnati : ci ) ( to $0 tampa : ci ) ) )
|
atis_3405
|
show me the flights from baltimore to oakland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ) )
|
atis_4846
|
what type of ground transportation is available in washington
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 washington : ci ) ) )
|
atis_2357
|
nonstop flights denver to kansas city
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 kansas_city : ci ) ) )
|
atis_3581
|
show me the morning flights from boston to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_953
|
how many daily us air flights are there between philadelphia and pittsburgh
|
( count $0 ( and ( flight $0 ) ( daily $0 ) ( airline $0 us : al ) ( from $0 philadelphia : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_471
|
fares between atlanta and boston
|
( lambda $0 e ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2178
|
list flights 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_305
|
could you tell me if there is ground transportation between the boston airport and boston downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
|
atis_4402
|
what is fare code c
|
c : fb
|
atis_3002
|
show me all meals on flights from atlanta to washington
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 washington : ci ) ( = ( meal $1 ) $0 ) ) ) )
|
atis_3553
|
show me the ground transportation schedule in philadelphia in the morning on wednesday
|
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 philadelphia : ci ) ( during_day $1 morning : pd ) ( day $1 wednesday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_3652
|
tell me about flights from toronto to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_4501
|
what is the cost of a flight from boston to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2944
|
show me all flights from philadelphia to atlanta that leave after 5pm on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 philadelphia : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
atis_840
|
give me the flights from seattle to chicago that have meals on continental saturday morning
|
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 co : al ) ( during_day $0 morning : pd ) ( from $0 seattle : ci ) ( to $0 chicago : ci ) ( day $0 saturday : da ) ) )
|
atis_1853
|
information on first class round trip from pittsburgh to san francisco
|
( lambda $0 e ( and ( round_trip $0 ) ( class_type $0 first : cl ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1150
|
i need a flight tomorrow from columbus to minneapolis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 minneapolis : ci ) ( tomorrow $0 ) ) )
|
atis_3376
|
show me the flight with the smallest seating capacity which leaves pittsburgh and arrives in baltimore on june fourteenth
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number_arrival $0 14 : dn ) ( month_arrival $0 june : mn ) ) ( capacity $0 ) )
|
atis_1513
|
i would like to book a flight from baltimore to san francisco before 12 o'clock on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ) )
|
atis_1458
|
i would like an early flight from la to charlotte monday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 los_angeles : ci ) ( to $0 charlotte : ci ) ( day $0 monday : da ) ) )
|
atis_4653
|
what is the latest evening flight leaving san francisco for washington
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.