qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_1217
|
i need late flight wednesday from oakland to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 wednesday : da ) ) )
|
atis_2312
|
looking for flights in toronto to san diego
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ) )
|
atis_3704
|
wednesday morning flights between baltimore and newark new jersey
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ( day $0 wednesday : da ) ) )
|
atis_4003
|
what does ap57 mean
|
ap_57 : rc
|
atis_1454
|
i would like an afternoon flight from washington to boston on august twentieth
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( day_number $0 20 : dn ) ( month $0 august : mn ) ) )
|
atis_3512
|
show me the flights from st. petersburg to toronto that arrive early in the morning
|
( lambda $0 e ( and ( during_day_arrival $0 morning : pd ) ( during_day_arrival $0 early : pd ) ( to $0 toronto : ci ) ( from $0 st_petersburg : ci ) ( flight $0 ) ) )
|
atis_2341
|
my destination is san francisco i live in denver i would like a flight on august thirtieth in the morning on any airline that will get me there
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 30 : dn ) ( month $0 august : mn ) ) )
|
atis_3643
|
tampa to charlotte sunday morning
|
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
|
atis_2627
|
please list the flights from new york to miami on a tuesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
|
atis_4474
|
what is the cheapest one way fare from atlanta to boston
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4719
|
what is the price of business class from boston to san francisco on twa
|
( lambda $0 e ( exists $1 ( and ( airline $1 tw : al ) ( class_type $1 business : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2096
|
list all the flights that arrive at general mitchell international from various cities
|
( lambda $0 e ( and ( flight $0 ) ( to $0 mke : ap ) ( exists $1 ( and ( city $1 ) ( from $0 $1 ) ) ) ) )
|
atis_1756
|
i'd like to have some information on a ticket from denver to atlanta with a stop in pittsburgh
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
|
atis_4740
|
what is the seating capacity of the type of aircraft m80
|
( capacity m80 : ac )
|
atis_3991
|
what delta flights are available from pittsburgh to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1735
|
i'd like to fly from philadelphia to dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_1809
|
i'm interested in round trip flights from boston to washington
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
|
atis_2271
|
list the flights from st. paul to san jose and from st. paul to houston
|
( lambda $0 e ( and ( flight $0 ) ( or ( and ( from $0 st_paul : ci ) ( to $0 san_jose : ci ) ) ( and ( from $0 st_paul : ci ) ( to $0 houston : ci ) ) ) ) )
|
atis_1970
|
latest flight from houston to san jose
|
( argmax $0 ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 san_jose : ci ) ) ( departure_time $0 ) )
|
atis_585
|
flight numbers from chicago to seattle
|
( lambda $0 e ( exists $1 ( and ( from $1 chicago : ci ) ( to $1 seattle : ci ) ( = ( flight_number $1 ) $0 ) ) ) )
|
atis_4365
|
what ground transportation is available in atlanta
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ) )
|
atis_360
|
do you have a flight from atlanta to charlotte north carolina next monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 charlotte : ci ) ( day $0 monday : da ) ) )
|
atis_603
|
flights from atlanta to seattle
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 seattle : ci ) ) )
|
atis_2877
|
show me all flights arriving to denver from baltimore oakland and boston
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 baltimore : ci ) ( from $0 oakland : ci ) ( from $0 boston : ci ) ) ( to $0 denver : ci ) ) )
|
atis_1727
|
i'd like to fly from dallas to san francisco at approximately 615pm
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1815 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4025
|
what does fn under fare code mean
|
fn : fb
|
atis_4254
|
what flights from salt lake city to las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 las_vegas : ci ) ) )
|
atis_689
|
flights from washington august second
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
|
atis_3836
|
what are the different classes that an airline offers
|
( lambda $0 e ( booking_class : t $0 ) )
|
atis_1599
|
i would like to originate my flight in washington dc stop in denver with the destination city of san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
atis_3012
|
show me all round trip flights from miami to new york nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( round_trip $0 ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ) )
|
atis_468
|
fares and flights from baltimore to philadelphia
|
( lambda $0 e ( lambda $1 e ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1315
|
i want the flights from toronto to san diego that stop in st. louis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 st_louis : ci ) ) )
|
atis_1147
|
i need a flight to atlanta this afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( to $0 atlanta : ci ) ) )
|
atis_1686
|
i'd like the lowest fare from denver to pittsburgh
|
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2334
|
minneapolis to phoenix on monday
|
( lambda $0 e ( and ( from $0 minneapolis : ci ) ( to $0 phoenix : ci ) ( day $0 monday : da ) ) )
|
atis_1222
|
i need the fares on flights from washington to toronto on a saturday
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 washington : ci ) ( to $1 toronto : ci ) ( day $1 saturday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1714
|
i'd like to find the earliest flight possible from san francisco to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ) ( departure_time $0 ) )
|
atis_2080
|
list all of the daily flights arriving in denver from 8 to 9pm
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( < ( arrival_time $0 ) 2100 : ti ) ( to $0 denver : ci ) ) )
|
atis_4371
|
what ground transportation is available in dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
|
atis_2145
|
list flights from chicago to san diego
|
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 san_diego : ci ) ) )
|
atis_1099
|
i need a flight from memphis to seattle
|
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 seattle : ci ) ) )
|
atis_3474
|
show me the flights from newark to los angeles
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 los_angeles : ci ) ) )
|
atis_4702
|
what is the meaning of fare code qx and qw
|
( lambda $0 e ( or ( equals $0 qx : fb ) ( equals $0 qw : fb ) ) )
|
atis_4715
|
what is the price of a first class ticket from milwaukee to san francisco round trip
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 milwaukee : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_795
|
give me the cheapest round trip flight from dallas to baltimore
|
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_3080
|
show me cheap flights from baltimore to dallas
|
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_4767
|
what kind of aircraft is used on the first class american airlines flight from philadelphia to san francisco stopping in dallas
|
( 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_4154
|
what flights are there from minneapolis to newark on continental
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 minneapolis : ci ) ( to $0 newark : ci ) ) )
|
atis_557
|
flight from dc to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( to $0 salt_lake_city : ci ) ( from $0 washington : ci ) ) )
|
atis_4924
|
what's the lowest round trip fare from bwi to any city
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 bwi : ap ) ( exists $2 ( and ( city $2 ) ( to $1 $2 ) ) ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_5004
|
which flights are there on tuesday from san francisco to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
atis_315
|
dallas to baltimore
|
( lambda $0 e ( and ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
|
atis_1604
|
i would like to see flights from denver to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_926
|
how do you travel from san francisco airport to downtown san francisco
|
( lambda $0 e ( and ( to_city $0 san_francisco : ci ) ( from_airport $0 sfo : ap ) ) )
|
atis_2181
|
list flights from phoenix to las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 las_vegas : ci ) ) )
|
atis_1035
|
how much is the 718am flight from las vegas to new york twa
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 tw : al ) ( departure_time $1 718 : ti ) ( from $1 las_vegas : ci ) ( to $1 new_york : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3601
|
show me the prices of first class tickets on us air round trip from cleveland to miami
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( airline $1 us : al ) ( class_type $1 first : cl ) ( from $1 cleveland : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_602
|
flights from atlanta to san francisco august second
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
|
atis_3691
|
united airlines flights stopping in denver before noon
|
( lambda $0 e ( and ( < ( arrival_time $0 ) 1200 : ti ) ( stop $0 denver : ci ) ( flight $0 ) ( airline $0 ua : al ) ) )
|
atis_1103
|
i need a flight from new york city to montreal thursday may six
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( day $0 thursday : da ) ( day_number $0 6 : dn ) ( month $0 may : mn ) ) )
|
atis_3382
|
show me the flights arriving in baltimore on june fifteenth leaving either from denver or dallas
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 denver : ci ) ( from $0 dallas : ci ) ) ( to $0 baltimore : ci ) ( day_number_arrival $0 15 : dn ) ( month_arrival $0 june : mn ) ) )
|
atis_1592
|
i would like to know what type of aircraft will be used on the morning of july seventh from atlanta to boston
|
( lambda $0 e ( exists $1 ( and ( during_day $1 morning : pd ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( day_number $1 7 : dn ) ( month $1 july : mn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_67
|
all right give me the flight times in the morning on september twentieth from pittsburgh to san francisco
|
( lambda $0 e ( exists $1 ( and ( during_day $1 morning : pd ) ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( day_number $1 20 : dn ) ( month $1 september : mn ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_4858
|
what united airlines flights go through denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( stop $0 denver : ci ) ) )
|
atis_157
|
are there wednesday morning flights between pittsburgh and boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
atis_2005
|
list all flights arriving in denver between 8 and 9pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( < ( arrival_time $0 ) 2100 : ti ) ( to $0 denver : ci ) ) )
|
atis_3619
|
show me us air flights from pittsburgh to san francisco first class on monday
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( class_type $0 first : cl ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
|
atis_1959
|
is there one airline that flies from burbank to milwaukee milwaukee to st. louis and from st. louis to burbank
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( or ( and ( from $1 milwaukee : ci ) ( to $1 st_louis : ci ) ) ( and ( from $1 milwaukee : ci ) ( to $1 st_louis : ci ) ) ( and ( to $1 milwaukee : ci ) ( to $1 burbank : ci ) ) ( and ( to $1 st_louis : ci ) ( from $1 st_louis : ci ) ) ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_1980
|
list airfares for first class round trip from detroit to st. petersburg
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 detroit : ci ) ( to $1 st_petersburg : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3044
|
show me all the flights from philadelphia to cincinnati
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 cincinnati : ci ) ) )
|
atis_4233
|
what flights from kansas city to denver after 845 in the morning
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 845 : ti ) ( from $0 kansas_city : ci ) ( to $0 denver : ci ) ) )
|
atis_5032
|
yes i'd like a flight from long beach to st. louis by way of dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 st_louis : ci ) ( stop $0 dallas : ci ) ) )
|
atis_1648
|
i'd like a list of the flights from oakland to dallas fort worth on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 dallas : ci ) ( day $0 sunday : da ) ) )
|
atis_3301
|
show me the cheapest economy flights from miami to new york
|
( argmin $0 ( and ( flight $0 ) ( economy $0 ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ) ( fare $0 ) )
|
atis_344
|
display all the flights from baltimore to dallas which leave after 4pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_1352
|
i want to fly nonstop from denver to dallas
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 dallas : ci ) ) )
|
atis_3594
|
show me the one way fares from san diego to miami nonstop
|
( lambda $0 e ( exists $1 ( and ( nonstop $1 ) ( oneway $1 ) ( from $1 san_diego : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_442
|
does united airlines fly from boston to dallas fort worth
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
atis_3113
|
show me flights between new york city and las vegas on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
|
atis_4989
|
which airlines serve atlanta
|
( lambda $0 e ( and ( airline $0 ) ( services $0 atlanta : ci ) ) )
|
atis_2205
|
list lowest cost flight from dallas to baltimore that serves a meal
|
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) ( fare $0 ) )
|
atis_4692
|
what is the least expensive 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_1636
|
i'd like a flight from washington that stops in denver and goes on to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
atis_4562
|
what is the earliest flight in the morning from boston to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) ( departure_time $0 ) )
|
atis_505
|
find me all the flights from milwaukee to st. louis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 st_louis : ci ) ) )
|
atis_3866
|
what are the flights between pittsburgh and baltimore on august tenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 10 : dn ) ( month $0 august : mn ) ) )
|
atis_3884
|
what are the flights from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_18
|
airports
|
( lambda $0 e ( airport $0 ) )
|
atis_3197
|
show me flights from san francisco to denver on weekdays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ( weekday $0 ) ) )
|
atis_2248
|
list the flights and time of arrival for flights arriving in dallas fort worth from boston before noon
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( = ( arrival_time $0 ) $1 ) ) ) )
|
atis_646
|
flights from las vegas to montreal
|
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 montreal : ci ) ) )
|
atis_3126
|
show me flights from atlanta to washington please
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
|
atis_1930
|
is there an american airlines flight in the evening from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 evening : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_772
|
give me flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_47
|
all flights from pittsburgh to dallas round trip after 12pm less than 100
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( fare $0 ) 100 : do ) ( round_trip $0 ) ( from $0 pittsburgh : ci ) ( to $0 dallas : ci ) ) )
|
atis_3681
|
the cheapest flights between boston and philadelphia which arrive between 3 and 5 o'clock on tuesday
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) 1500 : ti ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day $0 tuesday : da ) ) ( fare $0 ) )
|
atis_2856
|
show me airports in washington dc
|
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 washington : ci ) ) )
|
atis_4516
|
what is the distance from boston airport to boston
|
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
|
atis_1929
|
is there an airport limousine at the atlanta airport
|
( lambda $0 e ( and ( limousine $0 ) ( from_airport $0 atlanta : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.