qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_3185
|
show me flights from pittsburgh to dc
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 washington : ci ) ) )
|
atis_4167
|
what flights are there on continental from seattle to chicago
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 seattle : ci ) ( to $0 chicago : ci ) ) )
|
atis_750
|
give me a flight from memphis to las vegas and new york city to las vegas on sunday that arrive at the same time
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $1 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( from $1 memphis : ci ) ( to $1 las_vegas : ci ) ( day $0 sunday : da ) ( day $1 sunday : da ) ( equals ( arrival_time $0 ) ( arrival_time $1 ) ) ) ) )
|
atis_3723
|
what airline is as
|
as : al
|
atis_1126
|
i need a flight from san diego california to indianapolis indiana leaving in the afternoon on tuesday
|
( 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_2130
|
list distance from airports to downtown in new york
|
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 new_york : ci ) ( from_airport $0 new_york : ci ) ) )
|
atis_2170
|
list flights from montreal to washington with the lowest one way fares that leaves on saturday
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 montreal : ci ) ( to $0 washington : ci ) ( day $0 saturday : da ) ) ( fare $0 ) )
|
atis_4449
|
what is the cheapest fare from washington to san francisco leaving on september thirtieth
|
( min $0 ( exists $1 ( and ( from $1 washington : ci ) ( to $1 san_francisco : ci ) ( day_number $1 30 : dn ) ( month $1 september : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4731
|
what is the seating capacity of a 72s
|
( capacity 72s : ac )
|
atis_2037
|
list all flights from new york to las vegas that fly nonstop on sunday and list flights from memphis to las vegas that fly nonstop on sunday
|
( lambda $0 e ( or ( and ( flight $0 ) ( nonstop $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ( and ( flight $0 ) ( nonstop $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ) )
|
atis_2979
|
show me all flights from san francisco to new york nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 san_francisco : ci ) ( to $0 new_york : ci ) ) )
|
atis_2662
|
please show me airlines with flights from denver to boston stop philadelphia
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 boston : ci ) ( stop $1 philadelphia : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_1350
|
i want to fly from philadelphia to dallas to san francisco on monday july eighth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ( day $0 monday : da ) ( day_number $0 8 : dn ) ( month $0 july : mn ) ) )
|
atis_2482
|
phoenix to milwaukee on sunday
|
( lambda $0 e ( and ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 sunday : da ) ) )
|
atis_1568
|
i would like to fly from pittsburgh to atlanta on us air
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
|
atis_4062
|
what first class airplane goes from philadelphia to san francisco and stops in dallas in the afternoon on monday
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( during_day $1 afternoon : pd ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( stop $1 dallas : ci ) ( day $1 monday : da ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_3738
|
what airlines fly between boston and atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 atlanta : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_1345
|
i want to fly from miami to chicago on american airlines and arrive at around 5 o'clock in the afternoon show me all flights
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( approx_arrival_time $0 1700 : ti ) ( from $0 miami : ci ) ( to $0 chicago : ci ) ) )
|
atis_3420
|
show me the flights from boston to pittsburgh on thursday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 thursday : da ) ) )
|
atis_4042
|
what does the abbreviation dl mean
|
dl : al
|
atis_3937
|
what are the flights in the month of december from atlanta to denver which stop in boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( stop $0 boston : ci ) ( month $0 december : mn ) ) )
|
atis_1558
|
i would like to fly from dallas to san francisco on saturday and arrive in san francisco before 4pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 saturday : da ) ) )
|
atis_2737
|
round trip first class fares new york to miami
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 new_york : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1146
|
i need a flight this sunday from miami to las vegas and i would prefer a morning flight
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 miami : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
|
atis_3117
|
show me flights denver to washington on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
|
atis_2262
|
list the flights from indianapolis to houston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 houston : ci ) ) )
|
atis_193
|
can you help me with ground transportation information i need to get from the airport in philadelphia to downtown philadelphia
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 philadelphia : ci ) ( to_city $0 philadelphia : ci ) ) )
|
atis_3889
|
what are the flights from cleveland to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 dallas : ci ) ) )
|
atis_38
|
all flights from charlotte to anywhere on us air
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 charlotte : ci ) ) )
|
atis_640
|
flights from kansas city to cleveland on wednesday arriving before 5pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 kansas_city : ci ) ( to $0 cleveland : ci ) ( day $0 wednesday : da ) ) )
|
atis_4155
|
what flights are there from nashville to houston tomorrow evening that serve dinner
|
( 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_2698
|
please show me the flights available from san francisco to pittsburgh on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
atis_3370
|
show me the first class flights from denver to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_1076
|
i need a flight from boston to pittsburgh that leaves early in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2844
|
show me a list of flights on american airlines from boston to dc on july twenty second
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day_number $0 22 : dn ) ( month $0 july : mn ) ) )
|
atis_1401
|
i would like a flight between denver and san francisco leaving from denver in the afternoon and arriving at 5pm it must be a nonstop flight
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4694
|
what is the least expensive way to fly from philadelphia to san francisco
|
( argmin $0 ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) ( fare $0 ) )
|
atis_339
|
display all flights from san francisco to boston on august eighth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day_number $0 8 : dn ) ( month $0 august : mn ) ) )
|
atis_1528
|
i would like to book an early morning flight from tampa to charlotte 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_2363
|
northwest flights with stops in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( stop $0 denver : ci ) ) )
|
atis_4112
|
what flights are available saturday to san francisco from dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 saturday : da ) ) )
|
atis_2207
|
list nonstop flights from baltimore to newark on wednesday before noon
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ( day $0 wednesday : da ) ) )
|
atis_293
|
could you please show me all the weekday flights between denver and dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 dallas : ci ) ( weekday $0 ) ) )
|
atis_2366
|
now i need a flight leaving fort worth and arriving in denver no later than 2pm next monday
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1401 : ti ) ( from $0 fort_worth : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) )
|
atis_1676
|
i'd like information on continental airlines flights from washington to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 washington : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2765
|
show all flights and fares from pittsburgh to san francisco
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_1113
|
i need a flight from philadelphia to dallas that stops in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_763
|
give me all nonstops from new york city to las vegas that arrive on a sunday
|
( lambda $0 e ( and ( nonstop $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day_arrival $0 sunday : da ) ) )
|
atis_3630
|
show prices for all flights from baltimore to dallas on july twenty ninth
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( day_number $1 29 : dn ) ( month $1 july : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2238
|
list the earliest flight from st. paul to san jose
|
( argmin $0 ( and ( flight $0 ) ( from $0 st_paul : ci ) ( to $0 san_jose : ci ) ) ( departure_time $0 ) )
|
atis_4910
|
what's the first flight from dallas to houston
|
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) ( departure_time $0 ) )
|
atis_978
|
how many flights does twa have in business class
|
( count $0 ( and ( flight $0 ) ( airline $0 tw : al ) ( class_type $0 business : cl ) ) )
|
atis_3662
|
tell me about the ground transportation from nashville airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 bna : ap ) ) )
|
atis_4045
|
what does the fare code f and fn mean
|
( lambda $0 e ( or ( equals $0 f : fb ) ( equals $0 fn : fb ) ) )
|
atis_3423
|
show me the flights from boston to pittsburgh on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
|
atis_1664
|
i'd like an early flight tomorrow from columbus to nashville
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( from $0 columbus : ci ) ( to $0 nashville : ci ) ( tomorrow $0 ) ) )
|
atis_2168
|
list flights from milwaukee to san jose on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 san_jose : ci ) ( day $0 wednesday : da ) ) )
|
atis_1661
|
i'd like a united airlines flight on wednesday from san francisco to boston
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
atis_3956
|
what are the most expensive first class tickets between atlanta and dallas
|
( argmax $0 ( and ( class_type $0 first : cl ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ) ( fare $0 ) )
|
atis_4815
|
what time are the flights from baltimore to san francisco
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_3776
|
what are all flights from denver to philadelphia on saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
|
atis_811
|
give me the flights for american airline from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_3182
|
show me flights from phoenix to fort worth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 fort_worth : ci ) ) )
|
atis_2582
|
please list any flights from oakland california to philadelphia on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ( day $0 tuesday : da ) ) )
|
atis_4761
|
what is your least expensive fare between atlanta and boston
|
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_479
|
find a flight from san francisco to boston on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
atis_1227
|
i need to catch an evening flight from boston to philadelphia on august first
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day_number $0 1 : dn ) ( month $0 august : mn ) ) )
|
atis_3242
|
show me morning flights from atlanta to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_974
|
how many flights does each airline have with business class service
|
( lambda $0 e ( lambda $1 i ( and ( airline $0 ) ( = $1 ( count $2 ( and ( flight $2 ) ( class_type $2 business : cl ) ( = ( airline : e $2 ) $0 ) ) ) ) ) ) )
|
atis_3101
|
show me first class fares from dallas to baltimore
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1295
|
i want a flight on continental from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_726
|
from sfo to denver
|
( lambda $0 e ( and ( from $0 sfo : ap ) ( to $0 denver : ci ) ) )
|
atis_3588
|
show me the nonstop flights from atlanta to oakland that leave in the afternoon and arrive between 430pm and 630pm
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1630 : ti ) ( < ( arrival_time $0 ) 1830 : ti ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ) )
|
atis_1421
|
i would like a flight from pittsburgh to san francisco on august twentieth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day_number $0 20 : dn ) ( month $0 august : mn ) ) )
|
atis_870
|
ground transportation atlanta
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ) )
|
atis_3406
|
show me the flights from baltimore to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3944
|
what are the ground transportation services in philadelphia
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ) )
|
atis_4014
|
what does fare code bh mean
|
bh : fb
|
atis_4124
|
what flights are currently available between boston and dallas fort worth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
atis_3112
|
show me flights between milwaukee and phoenix on saturday or sunday 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_5031
|
yes i would like to find what flights are available from atlanta to boston on the morning of july seventh
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( day_number $0 7 : dn ) ( month $0 july : mn ) ) )
|
atis_4883
|
what's the cheapest one way flight from oakland to boston
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) ( fare $0 ) )
|
atis_1008
|
how much does it cost to fly directly from philadelphia to san francisco on american airlines
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( airline $1 aa : al ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4724
|
what is the round trip first class fare on united from boston to san francisco
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( airline $1 ua : al ) ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1228
|
i need to find a flight from philadelphia to san francisco that has a stopover in dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_1968
|
las vegas to baltimore economy
|
( lambda $0 e ( and ( economy $0 ) ( from $0 las_vegas : ci ) ( to $0 baltimore : ci ) ) )
|
atis_2456
|
on november twenty third what flights go from atlanta to denver on delta airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 23 : dn ) ( month $0 november : mn ) ) )
|
atis_434
|
does midwest express serve montreal
|
( services yx : al montreal : ci )
|
atis_4107
|
what flights are available from san francisco to pittsburgh on thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 thursday : da ) ) )
|
atis_2267
|
list the flights from philadelphia to san francisco which have a layover in dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_4942
|
when is the first flight in the morning from boston to denver
|
( departure_time ( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) ) )
|
atis_3948
|
what are the lowest fares from washington dc to salt lake city
|
( min $0 ( exists $1 ( and ( from $1 washington : ci ) ( to $1 salt_lake_city : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2320
|
may i have a listing of flight numbers from columbus ohio to minneapolis minnesota on monday
|
( lambda $0 e ( exists $1 ( and ( from $1 columbus : ci ) ( to $1 minneapolis : ci ) ( day $1 monday : da ) ( = ( flight_number $1 ) $0 ) ) ) )
|
atis_2136
|
list flights between oakland and san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2113
|
list coach round trip airfare from detroit to st. petersburg
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 coach : cl ) ( from $1 detroit : ci ) ( to $1 st_petersburg : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2861
|
show me all daily flights between milwaukee and orlando
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
atis_4954
|
which airline has more business class flights than any other airline
|
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( class_type $1 business : cl ) ( airline $1 $0 ) ) ) )
|
atis_2914
|
show me all flights from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2279
|
list the morning flights at a 124 dollars from atlanta to boston
|
( lambda $0 e ( and ( flight $0 ) ( fare $0 124 : do ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_4688
|
what is the least expensive 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 ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.