qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_2316
|
lowest fare from san francisco to orlando
|
( min $0 ( exists $1 ( and ( from $1 san_francisco : ci ) ( to $1 orlando : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3707
|
well i'll try last time tell me the kind of aircraft united airlines flies from denver to san francisco before 10 o'clock in the morning
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_2529
|
please give me the cheapest flight from denver to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
atis_3615
|
show me the us air flights from atlanta to boston
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_561
|
flight from denver to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4100
|
what flights are available from philadelphia to denver on sundays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 sunday : da ) ) )
|
atis_205
|
can you list all round trip flights from orlando to kansas city and then to minneapolis
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 orlando : ci ) ( to $0 minneapolis : ci ) ( stop $0 kansas_city : ci ) ) )
|
atis_1682
|
i'd like the earliest flight from dallas to boston
|
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_4548
|
what is the earliest flight from boston to washington
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
|
atis_1516
|
i would like to book a flight from chicago to seattle on june first
|
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day_number $0 1 : dn ) ( month $0 june : mn ) ) )
|
atis_4160
|
what flights are there from newark to tampa
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ) )
|
atis_3476
|
show me the flights from oakland to washington
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 washington : ci ) ) )
|
atis_4264
|
what flights from tacoma to orlando on saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tacoma : ci ) ( to $0 orlando : ci ) ( day $0 saturday : da ) ) )
|
atis_4407
|
what is fare code q
|
q : fb
|
atis_2395
|
okay and can you tell me for flights departing from dallas to philadelphia the latest flight you would have departing from dallas to philadelphia
|
( argmax $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
|
atis_2656
|
please show all flights from philadelphia to denver airport next sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 den : ap ) ( day $0 sunday : da ) ) )
|
atis_3193
|
show me flights from san francisco to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ) )
|
atis_658
|
flights from montreal
|
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ) )
|
atis_2638
|
please list the friday afternoon flights from san jose to dallas on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 afternoon : pd ) ( from $0 san_jose : ci ) ( to $0 dallas : ci ) ( day $0 friday : da ) ) )
|
atis_1619
|
i would like to travel from washington dc to pittsburgh on august twentieth
|
( lambda $0 e ( and ( from $0 washington : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 20 : dn ) ( month $0 august : mn ) ) )
|
atis_4814
|
what time are flights from denver to san francisco on continental airlines
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 co : al ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2291
|
list the shortest flight from san jose to houston
|
( argmin $0 ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ) ( time_elapsed $0 ) )
|
atis_3955
|
what are the morning flights in the next two days from nashville to tacoma
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 nashville : ci ) ( to $0 tacoma : ci ) ( next_days $0 2 : i ) ) )
|
atis_89
|
american flights from chicago to los angeles morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 los_angeles : ci ) ) )
|
atis_3181
|
show me flights from philadelphia to san francisco on wednesdays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_644
|
flights from la guardia or jfk to cleveland
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 jfk : ap ) ( from $0 lga : ap ) ) ( to $0 cleveland : ci ) ) )
|
atis_760
|
give me a list of the morning flights from atlanta to boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_1050
|
i am interested in booking an early morning flight from dallas into houston and returning in the late evening
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $1 ) ( during_day $1 late_evening : pd ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ( to $1 dallas : ci ) ( from $1 houston : ci ) ) ) )
|
atis_2225
|
list the airports in la
|
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 los_angeles : ci ) ) )
|
atis_823
|
give me the flights from miami to new york using tower air
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ff : al ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ) )
|
atis_4816
|
what time are the flights leaving from denver to pittsburgh on july seventh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( day_number $1 7 : dn ) ( month $1 july : mn ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_1234
|
i need to fly from boston to denver and then to san francisco and back to boston
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( from $2 san_francisco : ci ) ( to $2 boston : ci ) ) ) ) )
|
atis_4985
|
which airlines have flights from denver to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3192
|
show me flights from pittsburgh to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1893
|
is there a flight from boston to atlanta which leaves boston in the afternoon and arrives close to 5pm
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
atis_4788
|
what kinds of planes are used by american airlines
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_754
|
give me a flight from tampa to charlotte on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
|
atis_1520
|
i would like to book a flight going from tampa to seattle on may twenty sixth i would like to stop in milwaukee on the way
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 seattle : ci ) ( stop $0 milwaukee : ci ) ( day_number $0 26 : dn ) ( month $0 may : mn ) ) )
|
atis_4440
|
what is the cheapest fare between boston and san francisco
|
( min $0 ( exists $1 ( and ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_707
|
from baltimore to san francisco
|
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_143
|
are there any later flights than 810pm leaving from milwaukee for tacoma tomorrow evening
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2010 : ti ) ( during_day $0 evening : pd ) ( from $0 milwaukee : ci ) ( to $0 tacoma : ci ) ( tomorrow $0 ) ) )
|
atis_785
|
give me information on flights from atlanta to washington dc on wednesday after 4pm and thursday before 9am
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( or ( and ( > ( departure_time $0 ) 1600 : ti ) ( day $0 wednesday : da ) ) ( and ( < ( departure_time $0 ) 900 : ti ) ( day $0 thursday : da ) ) ) ) )
|
atis_2050
|
list all flights leaving denver between 8pm and 9pm
|
( lambda $0 e ( and ( < ( departure_time $0 ) 2100 : ti ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 denver : ci ) ( flight $0 ) ) )
|
atis_2680
|
please show me early morning flights from atlanta to philadelphia on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) )
|
atis_4478
|
what is the cheapest one way fare from pittsburgh to atlanta traveling on tuesday august twentieth
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( day $1 tuesday : da ) ( day_number $1 20 : dn ) ( month $1 august : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1864
|
instead of denver can i have the same flight from toronto to san diego but stopping in dallas fort worth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 dallas : ap ) ) )
|
atis_2156
|
list flights from houston to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_2862
|
show me all daily flights from milwaukee to orlando
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
atis_4595
|
what is the fare going from baltimore to atlanta one way on november seventh
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 baltimore : ci ) ( to $1 atlanta : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1121
|
i need a flight from pittsburgh to new york city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 new_york : ci ) ) )
|
atis_171
|
boston to pittsburgh wednesday
|
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
|
atis_412
|
does delta aircraft fly dc10
|
( lambda $0 e ( and ( flight $0 ) ( aircraft_code $0 dc10 : ac ) ( airline $0 dl : al ) ) )
|
atis_3770
|
what airport is at tampa
|
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 tampa : ci ) ) )
|
atis_416
|
does delta fly from atlanta to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3415
|
show me the flights from boston to fort worth on the morning of july tenth 1991
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 fort_worth : ci ) ( day_number $0 10 : dn ) ( month $0 july : mn ) ( year $0 1991 : yr ) ) )
|
atis_3843
|
what are the fares for flights between atlanta and dfw provided by american airlines
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( from $1 atlanta : ci ) ( to $1 dfw : ap ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1294
|
i want a flight on continental airlines leaving san francisco california arriving pittsburgh pennsylvania
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_4208
|
what flights does us air have from san francisco to pittsburgh on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
atis_4759
|
what is your last trip from washington to boston on august twenty seventh
|
( argmax $0 ( and ( from $0 washington : ci ) ( to $0 boston : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
|
atis_3248
|
show me nonstop flights from st. petersburg to toronto
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 st_petersburg : ci ) ( to $0 toronto : ci ) ) )
|
atis_364
|
do you have a flight from charlotte to atlanta on june first
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 atlanta : ci ) ( day_number $0 1 : dn ) ( month $0 june : mn ) ) )
|
atis_3401
|
show me the flights from baltimore to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
|
atis_2398
|
okay can you tell me the earliest flight which leaves from philadelphia to dallas
|
( argmin $0 ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) ( departure_time $0 ) )
|
atis_1439
|
i would like a morning flight from charlotte to newark
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 charlotte : ci ) ( to $0 newark : ci ) ) )
|
atis_740
|
get me a first class flight on american to san francisco on tuesday next week
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ) )
|
atis_73
|
all round trip flights between new york and miami business class fare
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 business : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_4958
|
which airline is as
|
as : al
|
atis_4526
|
what is the earliest arriving flight from houston to orlando
|
( argmin $0 ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 orlando : ci ) ) ( arrival_time $0 ) )
|
atis_1265
|
i now need a flight from san jose to houston leaving on sunday the fourth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ( day $0 sunday : da ) ( day_number $0 4 : dn ) ) )
|
atis_2208
|
list nonstop flights from baltimore washington airport to oakland that depart in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 afternoon : pd ) ( from $0 bwi : ap ) ( to $0 oakland : ci ) ) )
|
atis_2360
|
nonstop flights seattle to boston
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 seattle : ci ) ( to $0 boston : ci ) ) )
|
atis_1988
|
list all afternoon flights on united airlines from san francisco to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( during_day $0 afternoon : pd ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
|
atis_4170
|
what flights are there on sunday from seattle to chicago
|
( lambda $0 e ( and ( flight $0 ) ( from $0 seattle : ci ) ( to $0 chicago : ci ) ( day $0 sunday : da ) ) )
|
atis_4579
|
what is the earliest flight you have leaving boston heading to philadelphia
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
|
atis_2426
|
okay that one's great too now we're going to go on april twenty second dallas to washington the latest nighttime departure one way
|
( departure_time ( argmax $0 ( and ( oneway $0 ) ( during_day $0 late : pd ) ( from $0 dallas : ci ) ( to $0 washington : ci ) ( day_number $0 22 : dn ) ( month $0 april : mn ) ) ( departure_time $0 ) ) )
|
atis_3887
|
what are the flights from charlotte to atlanta returning on tuesday july thirteenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 atlanta : ci ) ( day_return $0 tuesday : da ) ( day_number_return $0 13 : dn ) ( month_return $0 july : mn ) ) )
|
atis_1492
|
i would like the cheapest flight from boston to san francisco
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( fare $0 ) )
|
atis_2202
|
list last wednesday flight from oakland to salt lake city
|
( argmax $0 ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 wednesday : da ) ) ( departure_time $0 ) )
|
atis_1216
|
i need information on ground transportation from the airport in atlanta
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 atlanta : ci ) ) )
|
atis_4511
|
what is the cost of round trip ticket first class between oakland and atlanta
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 oakland : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4362
|
what ground transportation is available from the pittsburgh airport to downtown and how much does it cost
|
( lambda $0 e ( lambda $1 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ( from_airport $0 pittsburgh : ci ) ( = ( ground_fare $0 ) $1 ) ) ) )
|
atis_3545
|
show me the flights that leave on thursday mornings from atlanta to washington and include whether meals are offered and what the prices are
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $1 ) ( during_day $1 morning : pd ) ( from $1 atlanta : ci ) ( to $1 washington : ci ) ( day $1 thursday : da ) ( = ( meal $1 ) $2 ) ( = ( fare $1 ) $0 ) ) ) ) )
|
atis_2099
|
list all the flights that fly into general mitchell international
|
( lambda $0 e ( and ( flight $0 ) ( to $0 mke : ap ) ) )
|
atis_1565
|
i would like to fly from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2978
|
show me all flights from san francisco to la guardia nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 san_francisco : ci ) ( to $0 lga : ap ) ) )
|
atis_1998
|
list all daily flights between boston and oakland using american airlines
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
atis_3159
|
show me flights from denver to washington dc on a wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
|
atis_4611
|
what is the first flight after 12 noon from washington for denver
|
( argmin $0 ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
|
atis_2356
|
nonstop flights denver to boston
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
|
atis_3049
|
show me all the flights leaving baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ) )
|
atis_631
|
flights from denver to pittsburgh on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
|
atis_2191
|
list flights from san jose to dallas on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 dallas : ci ) ( day $0 friday : da ) ) )
|
atis_3013
|
show me all round trip flights from new york to miami nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_4895
|
what's the earliest flight from boston to bwi that serves lunch
|
( argmin $0 ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 boston : ci ) ( to $0 bwi : ap ) ) ( departure_time $0 ) )
|
atis_4749
|
what is the total seating capacity of all aircraft of american airlines
|
( sum $0 ( and ( aircraft $0 ) ( airline $0 aa : al ) ) ( capacity $0 ) )
|
atis_1080
|
i need a flight from charlotte to newark leaving today evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 charlotte : ci ) ( to $0 newark : ci ) ( today $0 ) ) )
|
atis_1405
|
i would like a flight from baltimore to san francisco on twa 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_632
|
flights from denver to seattle on saturday morning on continental
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
atis_1456
|
i would like an american airlines flight from cincinnati to burbank leaving this afternoon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 afternoon : pd ) ( from $0 cincinnati : ci ) ( to $0 burbank : ci ) ) )
|
atis_2035
|
list all flights from minneapolis to long beach on saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 minneapolis : ci ) ( to $0 long_beach : ci ) ( day $0 saturday : da ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.