qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_111
|
are there any continental flights between dallas and boston
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) )
|
atis_1539
|
i would like to find out what flights there are on friday june eleventh from st. petersburg to milwaukee and then from milwaukee to tacoma thank you
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_petersburg : ci ) ( stop $0 milwaukee : ci ) ( to $0 tacoma : ci ) ( day $0 friday : da ) ( day_number $0 11 : dn ) ( month $0 june : mn ) ) )
|
atis_1758
|
i'd like to know if you have any flights from denver to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3814
|
what are the cheapest round trip flights from denver to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_3015
|
show me all the available flights from baltimore to dallas with economy fares
|
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_3744
|
what airlines fly 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_1538
|
i would like to find out the ground travel available in atlanta
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ) )
|
atis_1165
|
i need a return flight from chicago to kansas city leaving chicago around 7 in the evening on the day following next wednesday
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1900 : ti ) ( from $0 chicago : ci ) ( to $0 kansas_city : ci ) ( day $0 thursday : da ) ) )
|
atis_892
|
ground transportation washington
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 washington : ci ) ( from_airport $0 washington : ci ) ) )
|
atis_970
|
how many flights does american airlines have with a class of service code f
|
( count $0 ( and ( flight $0 ) ( fare_basis_code $0 f : fb ) ( airline $0 aa : al ) ) )
|
atis_3136
|
show me flights from boston to denver on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) )
|
atis_1524
|
i would like to book a flight on us air first class from cleveland to miami on february twenty second
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( class_type $0 first : cl ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ( day_number $0 22 : dn ) ( month $0 february : mn ) ) )
|
atis_4466
|
what is the cheapest flight from pittsburgh to atlanta leaving on october fifth
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 5 : dn ) ( month $0 october : mn ) ) ( fare $0 ) )
|
atis_1188
|
i need flight information leaving atlanta and arriving in baltimore for monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( day $0 monday : da ) ) )
|
atis_3064
|
show me all the prices of flights from baltimore to dallas
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4323
|
what flights leave from boston to pittsburgh in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2569
|
please list all flights tuesday dallas atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
atis_3703
|
wednesday from baltimore to newark
|
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 newark : ci ) ( day $0 wednesday : da ) ) )
|
atis_4892
|
what's the earliest arriving flight between boston and washington dc
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( arrival_time $0 ) )
|
atis_2441
|
on continental flight 1765 from boston to san francisco what type of meal is served
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 co : al ) ( flight_number $1 1765 : fn ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( meal $1 ) $0 ) ) ) )
|
atis_4982
|
which airlines have first class flights today
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 first : cl ) ( today $1 ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_77
|
all united airlines flights with stopovers in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( stop $0 denver : ci ) ) )
|
atis_1417
|
i would like a flight from philadelphia to dallas that makes a stop in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_262
|
chicago to las vegas saturday morning
|
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 las_vegas : ci ) ( day $0 saturday : da ) ) )
|
atis_198
|
can you list all flights from toronto to san diego
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ) )
|
atis_2288
|
list the number of flights arriving in dallas fort worth from boston before noon
|
( count $0 ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
atis_721
|
from phoenix to denver on a monday
|
( lambda $0 e ( and ( from $0 phoenix : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) )
|
atis_2220
|
list saturday flights from boston to washington
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day $0 saturday : da ) ) )
|
atis_3571
|
show me the least expensive flight from miami to new york on a sunday with first class fare
|
( argmin $0 ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ( day $0 sunday : da ) ) ( fare $0 ) )
|
atis_4068
|
what flight do you have from san francisco to pittsburgh on the evening of august twenty seventh
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) )
|
atis_3106
|
show me first class round trip flights from new york to miami i want the cheapest first class fare please
|
( argmin $0 ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_3891
|
what are the flights from cleveland to indianapolis on wednesday may twelfth on either twa delta or continental
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 tw : al ) ( airline $0 dl : al ) ( airline $0 co : al ) ) ( from $0 cleveland : ci ) ( to $0 indianapolis : ci ) ( day $0 wednesday : da ) ( day_number $0 12 : dn ) ( month $0 may : mn ) ) )
|
atis_2847
|
show me a list of ground transportation at denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_4374
|
what ground transportation is available in pittsburgh
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ) )
|
atis_431
|
does midwest express serve charlotte
|
( services yx : al charlotte : ci )
|
atis_2429
|
okay what flights are there us air from orlando to cleveland leaving in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( during_day $0 afternoon : pd ) ( from $0 orlando : ci ) ( to $0 cleveland : ci ) ) )
|
atis_950
|
how many cities are served by eastern with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
atis_2859
|
show me all canadian airlines flights from toronto
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 cp : al ) ( from $0 toronto : ci ) ) )
|
atis_3394
|
show me the flights from atlanta to boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_3084
|
show me dallas ground transport
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
|
atis_3258
|
show me one way flights from tampa to st. louis departing before 10am
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 tampa : ci ) ( to $0 st_louis : ci ) ) )
|
atis_1617
|
i would like to travel from denver to pittsburgh
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_4768
|
what kind of aircraft is used on the first class american airlines flight from philadelphia to san francisco with a dallas stopover
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( class_type $1 first : cl ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( stop $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_4299
|
what flights go from phoenix to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_106
|
are meals ever served on tower air
|
( lambda $0 e ( and ( airline $0 ff : al ) ( meal_code $0 ) ) )
|
atis_2133
|
list flights before 9am from cincinnati to tampa
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 cincinnati : ci ) ( to $0 tampa : ci ) ) )
|
atis_1226
|
i need to book a flight from newark to tampa on april fourth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day_number $0 4 : dn ) ( month $0 april : mn ) ) )
|
atis_1039
|
how much time does it take to go between the airport and downtown by ground transportation in dallas
|
( lambda $0 e ( exists $1 ( and ( = ( minutes_distant $1 ) $0 ) ( to_city $1 dallas : ci ) ( from_airport $1 dallas : ci ) ) ) )
|
atis_2522
|
please give me flights from atlanta to boston on wednesday morning and thursday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( or ( and ( during_day $0 morning : pd ) ( day $0 wednesday : da ) ) ( and ( during_day $0 afternoon : pd ) ( day $0 thursday : da ) ) ) ) )
|
atis_3243
|
show me morning flights from toronto
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 toronto : ci ) ) )
|
atis_4450
|
what is the cheapest fare from washington to san francisco
|
( min $0 ( exists $1 ( and ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2413
|
okay i'd like a flight on us air from indianapolis to san diego in the afternoon what's available
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( during_day $0 afternoon : pd ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ) )
|
atis_2479
|
philadelphia to san francisco with one stop in dallas please
|
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_513
|
find me the earliest flight from boston to atlanta and the latest return to boston on the same day
|
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $0 boston : ci ) ( from $0 atlanta : ci ) ) ( departure_time $2 ) ) ) ) ) )
|
atis_1725
|
i'd like to fly from cleveland to indianapolis tomorrow morning as early as possible what's available
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 cleveland : ci ) ( to $0 indianapolis : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
atis_3907
|
what are the flights from las vegas to burbank on saturday may twenty two
|
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 burbank : ci ) ( day $0 saturday : da ) ( day_number $0 22 : dn ) ( month $0 may : mn ) ) )
|
atis_1678
|
i'd like information on the least expensive airfare round trip from pittsburgh to boston
|
( min $0 ( exists $1 ( and ( from $1 pittsburgh : ci ) ( to $1 boston : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1822
|
i'm planning a trip to pittsburgh and i live in denver can you help me
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_3753
|
what airlines fly from toronto to san diego with a stopover in denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 toronto : ci ) ( to $1 san_diego : ci ) ( stop $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_633
|
flights from denver to westchester county new york weekdays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 westchester_county : ci ) ( weekday $0 ) ) )
|
atis_4758
|
what is your last flight leaving san francisco and arriving in denver
|
( argmax $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
|
atis_2677
|
please show me all the flights from indianapolis to san diego tomorrow
|
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ( tomorrow $0 ) ) )
|
atis_4291
|
what flights go from denver to st. louis on tuesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 st_louis : ci ) ( day $0 tuesday : da ) ) )
|
atis_1964
|
is us us air
|
( equals : t us : al ( abbrev usair : al ) )
|
atis_1339
|
i want to fly from dallas fort worth to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4671
|
what is the latest flight leaving newark for los angeles wednesday
|
( argmax $0 ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 los_angeles : ci ) ( day $0 wednesday : da ) ) ( departure_time $0 ) )
|
atis_3987
|
what class is fare code q
|
q : fb
|
atis_301
|
could you tell me about flights from philadelphia to dallas that arrives in the early afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 early : pd ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_2393
|
oh let's see does eastern airline have a flight from atlanta to washington
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
|
atis_3269
|
show me round trip first class tickets from new york to miami
|
( lambda $0 e ( and ( to $0 miami : ci ) ( from $0 new_york : ci ) ( round_trip $0 ) ( class_type $0 first : cl ) ) )
|
atis_4636
|
what is the ground transportation from philadelphia airport to the city proper
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ( from_airport $0 phl : ap ) ) )
|
atis_1817
|
i'm looking for a flight that goes from san jose to houston on may thirtieth and that leaves after noon
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ( day_number $0 30 : dn ) ( month $0 may : mn ) ) )
|
atis_3155
|
show me flights from denver to philadelphia arriving after 2100
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 2100 : ti ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2642
|
please list the monday morning flights from kansas city to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 kansas_city : ci ) ( to $0 atlanta : ci ) ( day $0 monday : da ) ) )
|
atis_3994
|
what delta flights from cincinnati to new york city arrive at new york city before 6pm on saturday
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 cincinnati : ci ) ( to $0 new_york : ci ) ( day_arrival $0 saturday : da ) ) )
|
atis_1993
|
list all american airlines flights from phoenix to milwaukee which arrive on wednesday after 4pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( > ( arrival_time $0 ) 1600 : ti ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day_arrival $0 wednesday : da ) ) )
|
atis_310
|
could you tell me what the abbreviation us stands for
|
us : al
|
atis_2783
|
show all united flights between boston and philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2235
|
list the cheapest round trip flights from orlando to kansas city
|
( argmin $0 ( and ( flight $0 ) ( from $0 orlando : ci ) ( to $0 kansas_city : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_1322
|
i want to fly boston to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
atis_3989
|
what classes of service does twa provide
|
( lambda $0 e ( exists $1 ( and ( airline $1 tw : al ) ( = ( booking_class $1 ) $0 ) ) ) )
|
atis_3992
|
what delta flights are available to fly from philadelphia to boston
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) )
|
atis_3879
|
what are the flights from boston to denver on tuesday october fifteenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 tuesday : da ) ( day_number $0 15 : dn ) ( month $0 october : mn ) ) )
|
atis_5012
|
which flights go from pittsburgh to atlanta in the evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
|
atis_4600
|
what is the fare on continental 271 from dallas to san francisco
|
( lambda $0 e ( exists $1 ( and ( airline $1 co : al ) ( flight_number $1 271 : fn ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2564
|
please list all flights on northwest and united airlines that go to denver
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( to $0 denver : ci ) ) )
|
atis_4944
|
where do the flights from boston to oakland stop
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( stop $1 $0 ) ) ) )
|
atis_4470
|
what is the cheapest flight from washington to san francisco on friday
|
( argmin $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) ( fare $0 ) )
|
atis_1588
|
i would like to know the flights from denver to pittsburgh leaving on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_2342
|
my question is i want to go to san francisco and i live in denver and i would like to fly on united airlines do you have an early flight
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( during_day $0 early : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1753
|
i'd like to go from st. paul to kansas city on friday with a meal
|
( lambda $0 e ( and ( has_meal $0 ) ( from $0 st_paul : ci ) ( to $0 kansas_city : ci ) ( day $0 friday : da ) ) )
|
atis_1096
|
i need a flight from long beach to st. louis stopping in dallas the flight should also serve lunch
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 long_beach : ci ) ( to $0 st_louis : ci ) ( stop $0 dallas : ci ) ) )
|
atis_904
|
hi i'd like to fly from columbus to phoenix and make a stop in cincinnati along the way
|
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 phoenix : ci ) ( stop $0 cincinnati : ci ) ) )
|
atis_642
|
flights from kansas city to cleveland on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 cleveland : ci ) ( day $0 wednesday : da ) ) )
|
atis_4602
|
what is the fare on november seventh going one way from pittsburgh to philadelphia
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4410
|
what is fare code y mean
|
y : fb
|
atis_4224
|
what flights from denver to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_4540
|
what is the earliest flight from boston to dallas fort worth leaving august eighth
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( day_number $0 8 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
|
atis_2887
|
show me all flights for tomorrow from san francisco to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( tomorrow $0 ) ) )
|
atis_2430
|
okay what i would like to know is does twa flight 505 from charlotte to las vegas with a stop in st. louis serve dinner that's twa flight 505 or 163
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( airline $0 tw : al ) ( flight_number $0 505 : fn ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.