qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_3096
show me fares from seattle to minneapolis
( lambda $0 e ( exists $1 ( and ( from $1 seattle : ci ) ( to $1 minneapolis : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4087
what flights are available from boston to denver on wednesday in early morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) )
atis_1289
i want a flight from san diego to indianapolis that leaves tuesday afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
atis_3747
what airlines fly from boston to washington
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_4311
what flights has continental from atlanta
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 atlanta : ci ) ) )
atis_901
hi i want a round trip ticket to dallas
( lambda $0 e ( and ( round_trip $0 ) ( to $0 dallas : ci ) ) )
atis_3748
what airlines fly from burbank to denver
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 burbank : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_571
flight from salt lake city to oakland california
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 oakland : ci ) ) )
atis_5034
yes i'm looking for a flight between oakland and boston with a stopover in dallas fort worth do you have one of those
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
atis_4485
what is the cheapest round trip fare from pittsburgh to atlanta
( min $0 ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_3366
show me the first class and coach flights from jfk to miami
( lambda $0 e ( and ( flight $0 ) ( or ( class_type $0 first : cl ) ( class_type $0 coach : cl ) ) ( from $0 jfk : ap ) ( to $0 miami : ci ) ) )
atis_2309
looking for a flight from denver to salt lake city
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_4360
what ground transportation is available from pittsburgh to downtown
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ( from_airport $0 pittsburgh : ci ) ) )
atis_4818
what time does the earliest flight which goes from atlanta to denver leave
( departure_time ( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) ) )
atis_4803
what northwest flights stop in denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( stop $0 denver : ci ) ) )
atis_1874
is there a 4 o'clock flight from washington dc to denver
( lambda $0 e ( and ( to $0 denver : ci ) ( from $0 washington : ci ) ( flight $0 ) ( departure_time $0 1600 : ti ) ) )
atis_2742
round trip flights from salt lake city to cincinnati nonstop flights if possible
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( round_trip $0 ) ( from $0 salt_lake_city : ci ) ( to $0 cincinnati : ci ) ) )
atis_3271
show me 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_4957
which airline has the smallest plane leaving pittsburgh and arriving in baltimore on july fourth
( airline : e ( argmin $0 ( and ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 4 : dn ) ( month $0 july : mn ) ) ( capacity $0 ) ) )
atis_2167
list flights from milwaukee to detroit
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 detroit : ci ) ) )
atis_3437
show me the flights from columbus to charlotte
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 charlotte : ci ) ) )
atis_4458
what is the cheapest flight from boston to bwi
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 bwi : ap ) ) ( fare $0 ) )
atis_3525
show me the flights leaving saturday or sunday from milwaukee to phoenix
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( or ( day $0 saturday : da ) ( day $0 sunday : da ) ) ) )
atis_4903
what's the earliest flight i can get between boston and dallas
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) ( departure_time $0 ) )
atis_3115
show me flights denver to washington dc on thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
atis_3952
what are 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_1937
is there ground transportation available at the phoenix airport
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 phx : ap ) ) )
atis_1321
i want to find the first flight from baltimore to boston that serves a meal
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_1125
i need a flight from salt lake to newark airport that arrives on saturday before 6pm
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 salt_lake_city : ci ) ( to $0 ewr : ap ) ( day_arrival $0 saturday : da ) ) )
atis_2511
please give me all flights from long beach to memphis
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 memphis : ci ) ) )
atis_1527
i would like to book an early morning flight from tampa florida to charlotte north carolina on april sixth
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day_number $0 6 : dn ) ( month $0 april : mn ) ) )
atis_2458
on the 8am flight from san francisco to atlanta what type of aircraft is used
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( departure_time $1 800 : ti ) ( from $1 san_francisco : ci ) ( to $1 atlanta : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_2495
please find a flight from ontario to westchester that makes a stop in chicago on may seventeenth one way with dinner
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( meal $0 dinner : me ) ( from $0 ontario : ci ) ( to $0 westchester_county : ci ) ( stop $0 chicago : ci ) ( day_number $0 17 : dn ) ( month $0 may : mn ) ) )
atis_3877
what are the flights from boston to baltimore leaving tomorrow
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ( tomorrow $0 ) ) )
atis_4783
what kind of ground transportation is there in washington dc
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 washington : ci ) ) )
atis_1408
i would like a flight from boston to san francisco on august seventeenth
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( day_number $0 17 : dn ) ( month $0 august : mn ) ) )
atis_3272
show me round trip flights from denver to baltimore that offer first class service on united
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
atis_3137
show me flights from boston to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_4825
what times does the late afternoon flight leave from washington for denver
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 late : pd ) ( during_day $1 afternoon : pd ) ( from $1 washington : ci ) ( to $1 denver : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_2264
list the flights from new york to miami on a tuesday which are nonstop and cost less than 466 dollars
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( fare $0 ) 466 : do ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
atis_3749
what airlines fly from dallas to baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_2589
please list flights from philadelphia to dallas stopping in atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
atis_1502
i would like the flight number and the time for the cheapest fare that is the least expensive first class fare from san francisco to pittsburgh leaving after 8pm monday night
( argmin $0 ( and ( class_type $0 first : cl ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) ( fare $0 ) )
atis_2538
please give me the flights from kansas city to chicago on june sixteenth
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day_number $0 16 : dn ) ( month $0 june : mn ) ) )
atis_1320
i want to find a flight from boston to atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_1233
i need to fly from boston to baltimore please give me the times of your flights in the morning before 8 o'clock
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 800 : ti ) ( from $1 boston : ci ) ( to $1 baltimore : ci ) ( during_day $1 morning : pd ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_2236
list the cities from which northwest flies
( lambda $0 e ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 nw : al ) ( from $1 $0 ) ) ) ) )
atis_1629
i'd like a flight from detroit to st. petersburg for tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 detroit : ci ) ( to $0 st_petersburg : ci ) ( day $0 tuesday : da ) ) )
atis_2789
show delta airlines flights from boston to salt lake
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_123
are there any flights from boston to san francisco which stop in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_2634
please list the flights from toronto to washington dc
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 washington : ci ) ) )
atis_1796
i'd like united airlines flights from denver to baltimore
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
atis_3102
show me first class flights from new york to miami leaving on a tuesday
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
atis_2710
please tell me how many nonstop flights there are from boston to atlanta
( count $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
atis_4326
what flights leave from nashville to phoenix
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( to $0 phoenix : ci ) ) )
atis_765
give me all the flights from memphis to charlotte
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 charlotte : ci ) ) )
atis_1409
i would like a flight from cincinnati to burbank on american
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 cincinnati : ci ) ( to $0 burbank : ci ) ) )
atis_4570
what is the earliest flight leaving from boston going to atlanta
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( departure_time $0 ) )
atis_2428
okay we're going from washington to denver first class ticket i'd like to know the cost of a first class ticket
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 washington : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1745
i'd like to get a flight leaving san francisco and arriving at philadelphia pennsylvania
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ) )
atis_3336
show me the daily flight schedule between boston and pittsburgh
( lambda $0 e ( exists $1 ( and ( daily $1 ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_4782
what kind of ground transportation is there in philadelphia
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ) )
atis_4757
what is your earliest morning flight from indianapolis to charlotte
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 indianapolis : ci ) ( to $0 charlotte : ci ) ) ( departure_time $0 ) )
atis_1873
is the american flight 813 from boston to oakland a nonstop flight
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 aa : al ) ( flight_number $0 813 : fn ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
atis_2614
please list the flights from baltimore to san francisco on fridays
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
atis_2138
list flights from atlanta to boston on wednesday afternoon and thursday morning
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( or ( and ( during_day $0 afternoon : pd ) ( day $0 wednesday : da ) ) ( and ( during_day $0 morning : pd ) ( day $0 thursday : da ) ) ) ) )
atis_798
give me the continental flights from chicago to seattle on saturday morning
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
atis_4983
which airlines have flights between charlotte and newark
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 charlotte : ci ) ( to $1 newark : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_626
flights from dc to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) )
atis_4589
what is the fare from atlanta to boston on coach one way
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( class_type $1 coach : cl ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1616
i would like to travel from boston to denver
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_1782
i'd like to see flights from baltimore to atlanta that arrive before noon
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
atis_2206
list lowest cost flight from dallas to baltimore
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) ( fare $0 ) )
atis_1890
is there a flight from atlanta to san francisco that stops over in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_790
give me sunday nonstop flights from memphis to las vegas
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
atis_7
a listing of all flights from boston to baltimore before 10am on thursday
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
atis_2414
okay i'd like a nonstop flight from houston to memphis that arrives in memphis in the early afternoon on tuesday june first
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day_arrival $0 early : pd ) ( during_day_arrival $0 afternoon : pd ) ( from $0 houston : ci ) ( to $0 memphis : ci ) ( day_arrival $0 tuesday : da ) ( day_number_arrival $0 1 : dn ) ( month_arrival $0 june : mn ) ) )
atis_4889
what's the cost of a first class fare from philadelphia to san francisco
( lambda $0 e ( exists $1 ( and ( exists $2 ( and ( = ( fare $2 ) $1 ) ( from $2 philadelphia : ci ) ( to $2 san_francisco : ci ) ( class_type $2 first : cl ) ) ) ( = ( fare $1 ) $0 ) ) ) )
atis_2276
list the flights on wednesday from denver to washington arriving in washington between 1115am and 1245pm
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1115 : ti ) ( < ( arrival_time $0 ) 1245 : ti ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
atis_2960
show me all flights from pittsburgh to boston both direct and connecting that depart pittsburgh after 7pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( or ( nonstop $0 ) ( connecting $0 ) ) ) )
atis_4544
what is the earliest flight from boston to san francisco on american airlines
( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_417
does delta have an early afternoon flight from boston to san francisco
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 early : pd ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_742
get saturday fares from washington to montreal
( lambda $0 e ( exists $1 ( and ( from $1 washington : ci ) ( to $1 montreal : ci ) ( day $1 saturday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_2127
list delta flights from seattle to salt lake city with aircraft type
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 seattle : ci ) ( to $0 salt_lake_city : ci ) ( aircraft_code $0 $1 ) ) ) )
atis_3593
show me the northwest flights from detroit to st. petersburg
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( from $0 detroit : ci ) ( to $0 st_petersburg : ci ) ) )
atis_1909
is there a flight on twa from baltimore to san francisco with a stop in denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_824
give me the flights from milwaukee to phoenix on saturday or sunday on american airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( or ( day $0 saturday : da ) ( day $0 sunday : da ) ) ) )
atis_4603
what is the fare on november seventh going one way from san francisco to oakland
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 san_francisco : ci ) ( to $1 oakland : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_116
are there any flights before 12 noon on june fifteenth from long beach to columbus
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 long_beach : ci ) ( to $0 columbus : ci ) ( day_number $0 15 : dn ) ( month $0 june : mn ) ) )
atis_1481
i would like information on flights leaving atlanta in the afternoon arriving in dallas
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ) )
atis_1904
is there 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_3216
show me flights on sunday going from san francisco to boston nonstop first class leaving after 12 noon
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( class_type $0 first : cl ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 sunday : da ) ) )
atis_4914
what's the last flight from houston to dallas
( argmax $0 ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 dallas : ci ) ) ( departure_time $0 ) )
atis_4539
what is the earliest flight from boston to bwi that serves a snack
( argmin $0 ( and ( flight $0 ) ( meal $0 snack : me ) ( from $0 boston : ci ) ( to $0 bwi : ap ) ) ( departure_time $0 ) )
atis_3799
what are restrictions ap/57
ap_57 : rc
atis_1024
how much is a first class ticket from washington to san francisco leaving on friday
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( day $1 friday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_592
flights and fares from denver to oakland
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ( = ( fare $0 ) $1 ) ) ) )
atis_4490
what is the cheapest ticket from baltimore to san francisco on friday august thirtieth
( min $0 ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4663
what is the latest flight from san francisco to boston
( argmax $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_2022
list all flights from boston to san francisco on us air
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )