qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_956
|
how many fare codes belong to economy class
|
( count $0 ( and ( fare_basis_code $0 ) ( economy $0 ) ) )
|
atis_1488
|
i would like one flight from kansas city to st. paul arriving around dinnertime 6pm
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1800 : ti ) ( from $0 kansas_city : ci ) ( to $0 st_paul : ci ) ) )
|
atis_25
|
all flights and fares from pittsburgh to dallas round trip after 12pm less than 1100 dollars
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( fare $0 ) 1100 : do ) ( from $0 pittsburgh : ci ) ( to $0 dallas : ci ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_1134
|
i need a flight from st. petersburg to charlotte which will get me into charlotte by 5pm or as soon thereafter as possible
|
( argmin $0 ( and ( flight $0 ) ( > ( arrival_time $0 ) 1700 : ti ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 st_petersburg : ci ) ( to $0 charlotte : ci ) ) ( arrival_time $0 ) )
|
atis_2197
|
list for me only the united flights between denver and oakland
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
|
atis_3224
|
show me ground transportation for boston
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ) )
|
atis_1552
|
i would like to fly from boston to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) )
|
atis_1645
|
i'd like a flight tomorrow late from nashville to houston with dinner please
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( during_day $0 late : pd ) ( from $0 nashville : ci ) ( to $0 houston : ci ) ( tomorrow $0 ) ) )
|
atis_2937
|
show me all flights from new york to miami on a tuesday with round trip fares under 932 dollars
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 932 : do ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
|
atis_3533
|
show me the flights on friday from newark to tampa
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) )
|
atis_2646
|
please list the prices for a rental car in pittsburgh
|
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 pittsburgh : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_2187
|
list flights from pittsburgh to newark on monday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 newark : ci ) ( day $0 monday : da ) ) )
|
atis_4845
|
what type of ground transportation is available between the airport and downtown san francisco
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_francisco : ci ) ( from_airport $0 san_francisco : ci ) ) )
|
atis_3854
|
what are the flight numbers of the flights which go from san francisco to washington via indianapolis
|
( lambda $0 e ( exists $1 ( and ( from $1 san_francisco : ci ) ( to $1 washington : ci ) ( stop $1 indianapolis : ci ) ( = ( flight_number $1 ) $0 ) ) ) )
|
atis_2371
|
now i need flights leaving denver in the afternoon on wednesday and arriving in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_180
|
can i have a morning flight from baltimore to newark please
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ) )
|
atis_1434
|
i would like a flight that leaves on friday 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 ) ( day $0 friday : da ) ) )
|
atis_3912
|
what are the flights from milwaukee to orlando on wednesday night
|
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ( during_day $0 late : pd ) ) )
|
atis_4703
|
what is the meaning of meal code s
|
s : rc
|
atis_3091
|
show me fares from baltimore to philadelphia
|
( lambda $0 e ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2344
|
names of airports
|
( lambda $0 e ( airport $0 ) )
|
atis_3298
|
show me the american airline flights leaving phoenix on wednesday and arriving in milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
atis_94
|
an american airlines flight first class from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_770
|
give me american airlines from milwaukee to phoenix on saturday and sunday
|
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( or ( day $0 saturday : da ) ( day $0 sunday : da ) ) ) )
|
atis_637
|
flights from indianapolis to seattle
|
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 seattle : ci ) ) )
|
atis_2536
|
please give me the flights from chicago to kansas city on june seventeenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 kansas_city : ci ) ( day_number $0 17 : dn ) ( month $0 june : mn ) ) )
|
atis_2492
|
please arrange a flight for me from denver to san francisco on us air
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1208
|
i need information on flights for tuesday leaving baltimore for dallas dallas to boston and boston to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( day $0 tuesday : da ) ( or ( and ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) ( and ( from $0 dallas : ci ) ( to $0 boston : ci ) ) ( and ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) ) ) )
|
atis_275
|
could i have flight information on flights from salt lake city to phoenix please
|
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 phoenix : ci ) ) )
|
atis_1152
|
i need a friday flight from newark to tampa
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) )
|
atis_307
|
could you tell me the flights leaving pittsburgh around midnight for oakland
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 0 : ti ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
|
atis_2059
|
list all flights on continental from denver to chicago which depart after 934pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2134 : ti ) ( from $0 denver : ci ) ( to $0 chicago : ci ) ) )
|
atis_4182
|
what flights can i take between boston and atlanta so that when i leave boston i will have the maximum amount of time on the ground in atlanta and still return in 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_2610
|
please list the flight times from boston to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_4305
|
what flights go from san francisco to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 dallas : ci ) ) )
|
atis_2787
|
show business class fares on us air from boston to toronto
|
( lambda $0 e ( exists $1 ( and ( airline $1 us : al ) ( class_type $1 business : cl ) ( from $1 boston : ci ) ( to $1 toronto : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1987
|
list all afternoon flights leaving baltimore and arriving in atlanta on thursday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
|
atis_931
|
how far is it from salt lake city airport to salt lake city
|
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 salt_lake_city : ci ) ( from_airport $0 slc : ap ) ) )
|
atis_4226
|
what flights from houston to milwaukee on friday in the evening on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 evening : pd ) ( from $0 houston : ci ) ( to $0 milwaukee : ci ) ( day $0 friday : da ) ) )
|
atis_3455
|
show me the flights from denver to san diego leaving after 5pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 san_diego : ci ) ) )
|
atis_4651
|
what is the latest afternoon flight i can get from dallas to san francisco on first class
|
( argmax $0 ( and ( flight $0 ) ( class_type $0 first : cl ) ( during_day $0 afternoon : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
|
atis_2418
|
okay i've got somebody else who wants to take a round trip ticket from charlotte to montreal
|
( lambda $0 e ( and ( round_trip $0 ) ( from $0 charlotte : ci ) ( to $0 montreal : ci ) ) )
|
atis_2431
|
okay what i'd like to do on this one is go from washington to atlanta i want a nonstop and i'd like to leave around 5pm
|
( lambda $0 e ( and ( nonstop $0 ) ( approx_departure_time $0 1700 : ti ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ) )
|
atis_201
|
can you list all flights that depart from orlando to kansas city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 orlando : ci ) ( to $0 kansas_city : ci ) ) )
|
atis_2965
|
show me all flights from pittsburgh to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2023
|
list all flights from boston to san francisco with at least 3 stops
|
( lambda $0 e ( and ( flight $0 ) ( > ( stops $0 ) 3 : i ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4464
|
what is the cheapest flight from denver to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
atis_973
|
how many flights does each airline have with booking class k
|
( lambda $0 e ( lambda $1 i ( and ( airline $0 ) ( = $1 ( count $2 ( and ( flight $2 ) ( booking_class $2 k : fb ) ( = ( airline : e $2 ) $0 ) ) ) ) ) ) )
|
atis_1634
|
i'd like a flight from san diego to toronto on alaska airlines leaving around 1pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 as : al ) ( approx_departure_time $0 1300 : ti ) ( from $0 san_diego : ci ) ( to $0 toronto : ci ) ) )
|
atis_2435
|
on april fifteenth i would like an early morning flight from boston to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day_number $0 15 : dn ) ( month $0 april : mn ) ) )
|
atis_816
|
give me the flights from chicago to seattle saturday morning that have meals
|
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
atis_1954
|
is there ground transportation in dallas from the dallas airport to downtown dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
|
atis_3762
|
what airlines have flights from baltimore to seattle
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 seattle : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_256
|
cheapest fare round trip from indianapolis to orlando on december twenty seventh
|
( min $0 ( exists $1 ( and ( from $1 indianapolis : ci ) ( to $1 orlando : ci ) ( day_number $1 27 : dn ) ( month $1 december : mn ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3678
|
thank you i also need to travel next wednesday evening from dallas to san francisco
|
( lambda $0 e ( and ( during_day $0 evening : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_1472
|
i would like information on flights from baltimore to atlanta on thursday arriving in atlanta before 6pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
|
atis_1605
|
i would like to see information for flights from san francisco leaving after 12pm to pittsburgh on monday
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_560
|
flight from denver to philadelphia saturday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
|
atis_4469
|
what is the cheapest flight from san francisco to pittsburgh on sunday
|
( argmin $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 sunday : da ) ) ( fare $0 ) )
|
atis_2957
|
show me all flights from pittsburgh to baltimore tomorrow
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( tomorrow $0 ) ) )
|
atis_2767
|
show all flights from baltimore to dallas on monday evening and the cost of each flight
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 monday : da ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_3299
|
show me the available flights from san francisco to boston on november twenty fourth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day_number $0 24 : dn ) ( month $0 november : mn ) ) )
|
atis_1684
|
i'd like the first flight in the morning from boston to washington
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
|
atis_1167
|
i need a return flight from philadelphia to boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) )
|
atis_3918
|
what are the flights from new york city to las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ) )
|
atis_1204
|
i need information on a flight from san francisco to atlanta that would stop in fort worth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ( stop $0 fort_worth : ci ) ) )
|
atis_5005
|
which flights arrive in st. louis from st. paul on thursday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 morning : pd ) ( from $0 st_paul : ci ) ( to $0 st_louis : ci ) ( day_arrival $0 thursday : da ) ) )
|
atis_1071
|
i need a flight from atlanta to philadelphia and i'm looking for the cheapest fare
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4870
|
what's the capacity of an f28
|
( capacity f28 : ac )
|
atis_4420
|
what is restriction ap/80
|
ap_80 : rc
|
atis_2251
|
list the flights arriving in baltimore from boston before 10am on august third
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ( month $0 august : mn ) ) )
|
atis_4180
|
what flights between dfw and oakland arrive in oakland between 1133am and 43pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1133 : ti ) ( < ( arrival_time $0 ) 2023 : ti ) ( from $0 dfw : ap ) ( to $0 oakland : ci ) ) )
|
atis_2681
|
please show me fares from denver to san francisco
|
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2956
|
show me all flights from pittsburgh to baltimore tomorrow which serve a meal
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( tomorrow $0 ) ( has_meal $0 ) ) )
|
atis_1589
|
i would like to know the flights that are available leaving out of pittsburgh to san francisco on thursday night after 9pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2100 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 thursday : da ) ) )
|
atis_2659
|
please show me airfare of flight us 345 from boston to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 us : al ) ( flight_number $1 345 : fn ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2446
|
on july eighth i'd like a flight from newark to orlando in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 newark : ci ) ( to $0 orlando : ci ) ( day_number $0 8 : dn ) ( month $0 july : mn ) ) )
|
atis_4187
|
what flights depart newark for tampa on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) )
|
atis_430
|
does midwest express serve baltimore
|
( services yx : al baltimore : ci )
|
atis_3191
|
show me flights from pittsburgh to san francisco on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 sunday : da ) ) )
|
atis_3942
|
what are the flights that leave detroit and arrive in chicago around 7pm next wednesday
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1900 : ti ) ( from $0 detroit : ci ) ( to $0 chicago : ci ) ( day_arrival $0 wednesday : da ) ) )
|
atis_2105
|
list all tuesday night flights from boston to denver
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 tuesday : da ) ) )
|
atis_4009
|
what does d/s stand for for meals
|
d_s : rc
|
atis_4071
|
what flight from denver to pittsburgh arrives earliest in the morning
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( arrival_time $0 ) )
|
atis_4353
|
what ground transportation is available at baltimore
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 baltimore : ci ) ) )
|
atis_4984
|
which airlines have flights between philadelphia and pittsburgh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 pittsburgh : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3114
|
show me flights between new york city and las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ) )
|
atis_1641
|
i'd like a flight tomorrow evening from nashville to houston that includes dinner for tomorrow
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( during_day $0 evening : pd ) ( from $0 nashville : ci ) ( to $0 houston : ci ) ( tomorrow $0 ) ) )
|
atis_4484
|
what is the cheapest round trip fare from atlanta to pittsburgh
|
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4369
|
what ground transportation is available in charlotte
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 charlotte : ci ) ) )
|
atis_756
|
give me a list of airports in baltimore
|
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 baltimore : ci ) ) )
|
atis_3560
|
show me the last flight from love field
|
( argmax $0 ( and ( flight $0 ) ( from $0 dal : ap ) ) ( departure_time $0 ) )
|
atis_3622
|
show me weekday flights from milwaukee to orlando one way
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( weekday $0 ) ) )
|
atis_1956
|
is there ground transportation in st. louis
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 st_louis : ci ) ) )
|
atis_4995
|
which cities does united airlines service
|
( lambda $0 e ( and ( city $0 ) ( services ua : al $0 ) ) )
|
atis_2176
|
list flights from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_802
|
give me the earliest flight tomorrow on northwest airlines from st. petersburg to milwaukee
|
( argmin $0 ( and ( flight $0 ) ( airline $0 nw : al ) ( from $0 st_petersburg : ci ) ( to $0 milwaukee : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
atis_1207
|
i need information on flights between st. petersburg and charlotte
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_petersburg : ci ) ( to $0 charlotte : ci ) ) )
|
atis_2930
|
show me all flights from minneapolis to san diego that arrive before 7pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 minneapolis : ci ) ( to $0 san_diego : ci ) ) )
|
atis_3531
|
show me the flights on delta that go through atlanta
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( stop $0 atlanta : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.