qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_2192
list flights from san jose to houston next sunday
( lambda $0 e ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ( day $0 sunday : da ) ) )
atis_4654
what is the latest first class flight of the day leaving dallas for san francisco
( argmax $0 ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_3705
wednesday morning flights between baltimore and newark
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ( day $0 wednesday : da ) ) )
atis_3684
the flight will originate from boston
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ) )
atis_41
all flights from denver colorado to pittsburgh pennsylvania
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
atis_4928
what's the lowest round trip fare from denver to atlanta
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_1549
i would like to fly from boston to baltimore in the afternoon what flights are there
( lambda $0 e ( and ( flight $0 ) ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 baltimore : 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 ) ) )
atis_2954
show me all flights from pittsburgh to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
atis_865
ground transport denver
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
atis_3162
show me flights from fort worth to san jose
( lambda $0 e ( and ( flight $0 ) ( from $0 fort_worth : ci ) ( to $0 san_jose : ci ) ) )
atis_2570
please list all northwest flights into denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( to $0 denver : ci ) ) )
atis_1663
i'd like an afternoon flight from atlanta to san francisco with a stopover in denver arriving i'd say about mealtime
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 mealtime : pd ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_4900
what's the earliest flight from pittsburgh to baltimore on thursday morning
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) ( departure_time $0 ) )
atis_3634
show the flights from pittsburgh to san francisco again on monday
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
atis_4546
what is the earliest flight from boston to san francisco that serves a meal
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_4130
what flights are there available from philadelphia to denver on wednesday with economy class
( lambda $0 e ( and ( economy $0 ) ( day $0 wednesday : da ) ( to $0 denver : ci ) ( from $0 philadelphia : ci ) ( flight $0 ) ) )
atis_1041
how much would car rental cost in atlanta
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 atlanta : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_1612
i would like to see the flights from baltimore to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
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 ) ) )
atis_2438
on august thirtieth i would like a flight from denver to san francisco in the early am
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 30 : dn ) ( month $0 august : mn ) ) )
atis_187
can you find out about the ground transportation available in atlanta
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ) )
atis_932
how far is oakland airport from downtown
( lambda $0 e ( and ( miles_distant $0 ) ( from_airport $0 oak : ap ) ( to_city $0 oakland : ci ) ) )
atis_251
cheapest airfare from tacoma to orlando
( min $0 ( exists $1 ( and ( from $1 tacoma : ci ) ( to $1 orlando : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3222
show me flights with first class reservations from san francisco to pittsburgh for monday
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
atis_357
do you have a flight from atlanta to baltimore nonstop on a boeing 757 arriving baltimore around 7pm
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 boeing : mf ) ( nonstop $0 ) ( aircraft_code $0 757 : ac ) ( approx_arrival_time $0 1900 : ti ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
atis_278
could you find me a flight from boston to san francisco that stops in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_1717
i'd like to fly continental airlines between boston and philadelphia
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
atis_1463
i would like an evening flight from pittsburgh to los angeles on june third
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day_number $0 3 : dn ) ( month $0 june : mn ) ) )
atis_2952
show me all flights from phoenix to milwaukee on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
atis_2280
list the morning flights between atlanta and dallas
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ) )
atis_1923
is there a united airlines flight from miami to washington dc arriving around noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( approx_arrival_time $0 1200 : ti ) ( from $0 miami : ci ) ( to $0 washington : ci ) ) )
atis_610
flights from baltimore to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
atis_4050
what does the fare code yn mean
yn : fb
atis_1374
i want to leave boston at 838
( lambda $0 e ( and ( departure_time $0 838 : ti ) ( from $0 boston : ci ) ) )
atis_2694
please show me flights which cost less than or equal to 466 dollars from new york to miami leaving on a tuesday
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 466 : do ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
atis_328
denver to san francisco wednesday
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
atis_781
give me flights that arrive in baltimore from atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
atis_3561
show me the last flight on wednesday from atlanta to denver
( argmax $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) ( departure_time $0 ) )
atis_3930
what are the flights from san jose to nashville on thursday the twentieth
( lambda $0 e ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 nashville : ci ) ( day $0 thursday : da ) ( day_number $0 20 : dn ) ) )
atis_1962
is there transportation from the atlanta airport to downtown atlanta
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ( from_airport $0 atl : ap ) ) )
atis_3699
us air flights departing from charlotte around 1pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( approx_departure_time $0 1300 : ti ) ( from $0 charlotte : ci ) ) )
atis_3518
show me the flights from washington to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 boston : ci ) ) )
atis_3039
show me all the flights from denver to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 las_vegas : ci ) ) )
atis_2673
please show me all round trip flights from burbank to tacoma
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 burbank : ci ) ( to $0 tacoma : ci ) ) )
atis_2476
philadelphia to san francisco monday
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
atis_3429
show me the flights from boston to san francisco that arrive in the afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_3233
show me ground transportation in philadelphia on monday morning
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ( during_day $0 morning : pd ) ( day $0 monday : da ) ) )
atis_2420
okay let's see do you have a flight on delta airline from atlanta to boston
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
atis_3801
what are the afternoon flights for denver to san francisco
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_2115
list daily flights from boston to atlanta
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_2713
please tell me the type of aircraft used from atlanta to denver before 12 o'clock noon
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 1200 : ti ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $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 ) ) ) )
atis_2560
please list all flights from philadelphia to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) )
atis_4519
what is the distance from san francisco international airport to san francisco
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 san_francisco : ci ) ( from_airport $0 sfo : ap ) ) )
atis_784
give me information on flights from atlanta to washington dc leaving on thursday before 0900
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
atis_3294
show me the airlines that use love field
( lambda $0 e ( and ( airline $0 ) ( services $0 dal : ap ) ) )
atis_3244
show me next wednesday's flights between phoenix and milwaukee
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
atis_522
find the cheapest one way fare from boston to san francisco
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4131
what flights are there between atlanta and denver
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
atis_3472
show me the flights from new york to los angeles with stop in milwaukee
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 los_angeles : ci ) ( stop $0 milwaukee : ci ) ) )
atis_1210
i need information on flights from kansas city missouri to salt lake city utah i am interested in only those flights on delta airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 kansas_city : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_1083
i need a flight from cleveland to dallas that leaves before noon see if too much information
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 cleveland : ci ) ( to $0 dallas : ci ) ) )
atis_1017
how much does it cost to go from downtown to logan airport
( lambda $0 e ( exists $1 ( and ( ground_transport $1 ) ( to_city $1 boston : ci ) ( from_airport $1 boston : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_1403
i would like a flight from atlanta to dallas on friday that arrives in dallas by 6pm
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ( day $0 friday : da ) ( < ( arrival_time $0 ) 1800 : ti ) ) )
atis_1723
i'd like to fly from boston to san francisco could you find me the cheapest fare
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3440
show me the flights from dallas to baltimore in first class
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
atis_3822
what are the classes of service on twa
( lambda $0 e ( exists $1 ( and ( airline $1 tw : al ) ( = ( booking_class $1 ) $0 ) ) ) )
atis_1244
i need to fly leaving philadelphia to atlanta
( lambda $0 e ( and ( to $0 atlanta : ci ) ( from $0 philadelphia : ci ) ( flight $0 ) ) )
atis_4168
what flights are there on delta from boston to dallas
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
atis_4172
what flights are there on wednesday evening from denver to sfo
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 denver : ci ) ( to $0 sfo : ap ) ( day $0 wednesday : da ) ) )
atis_145
are there any nonstop flights from indianapolis to san diego on wednesday may twelfth
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ( day $0 wednesday : da ) ( day_number $0 12 : dn ) ( month $0 may : mn ) ) )
atis_8
a one way flight from boston to san francisco please
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_4810
what round trip tickets are there from cleveland to miami on us air that arrive before 4pm
( lambda $0 e ( and ( round_trip $0 ) ( airline $0 us : al ) ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ) )
atis_3319
show me the cheapest one way flight from atlanta to pittsburgh
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
atis_540
find travel arrangements for a round trip flight from dallas to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ) )
atis_80
also show me flights from san francisco to pittsburgh on tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
atis_1978
list a round trip fare from kansas city to minneapolis flights
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 kansas_city : ci ) ( to $1 minneapolis : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2210
list nonstop flights from burbank to denver arriving by 6pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 burbank : ci ) ( to $0 denver : ci ) ) )
atis_4265
what flights from tampa to cincinnati
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 cincinnati : ci ) ) )
atis_3061
show me all the night fares between philadelphia and san francisco
( lambda $0 e ( exists $1 ( and ( during_day $1 late : pd ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1106
i need a flight from new york to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 san_francisco : ci ) ) )
atis_1444
i would like a nonstop flight from new york to las vegas on march second
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day_number $0 2 : dn ) ( month $0 march : mn ) ) )
atis_1846
information of a flight from atlanta to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) )
atis_2032
list all flights from long beach to columbus late saturday
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( to $0 columbus : ci ) ( from $0 long_beach : ci ) ( day $0 saturday : da ) ) )
atis_331
describe pittsburgh airport
pit : ap
atis_359
do you have a flight from atlanta to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
atis_1915
is there a nonstop flight from denver to san francisco
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_486
find a nonstop flight between denver and oakland leaving in the afternoon and arriving near 5pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( approx_arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
atis_1187
i need flight information from milwaukee to tampa
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 tampa : ci ) ) )
atis_13
airline and flight number from columbus to minneapolis
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( from $2 columbus : ci ) ( to $2 minneapolis : ci ) ( = ( airline : e $2 ) $0 ) ( = ( flight_number $2 ) $1 ) ) ) ) )
atis_3284
show me the airlines between boston and denver
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_3539
show me the flights that go from atlanta to washington on thursday mornings
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
atis_2427
okay that sounds great let's go from atlanta on april twenty one in the morning to dallas least expensive fare one way
( departure_time ( argmin $0 ( and ( oneway $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ( day_number $0 21 : dn ) ( month $0 april : mn ) ) ( fare $0 ) ) )
atis_3400
show me the flights from atlanta to washington dc on wednesday night and thursday morning
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( or ( and ( during_day $0 late : pd ) ( day $0 wednesday : da ) ) ( and ( during_day $0 morning : pd ) ( day $0 thursday : da ) ) ) ) )
atis_3389
show me the flights between atlanta and washington dc for wednesdays
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
atis_1610
i would like to see the flights from baltimore to philadelphia again
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
atis_2226
list the alaska airline flights from burbank to anywhere
( lambda $0 e ( and ( flight $0 ) ( airline $0 as : al ) ( from $0 burbank : ci ) ) )
atis_757
give me a list of all the flights from baltimore to philadelphia or denver to philadelphia or pittsburgh to philadelphia
( lambda $0 e ( and ( flight $0 ) ( or ( and ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) ( and ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) ( and ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) ) ) )
atis_1063
i need a daily flight from st. louis to milwaukee
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 st_louis : ci ) ( to $0 milwaukee : ci ) ) )