qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_3509
|
show me the flights from san francisco to washington dc
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ) )
|
atis_990
|
how many people fit on a 73s
|
( capacity 73s : ac )
|
atis_327
|
denver to philadelphia monday
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 monday : da ) ) )
|
atis_4372
|
what ground transportation is available in denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_139
|
are there any flights next monday morning from pittsburgh to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
|
atis_3493
|
show me the flights from pittsburgh to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2622
|
please list the flights from kansas city to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 denver : ci ) ) )
|
atis_3805
|
what are the air restrictions on flights from pittsburgh to atlanta for the airfare of 416 dollars
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( fare $1 416 : do ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( restriction_code $1 ) $0 ) ) ) )
|
atis_250
|
cheapest airfare from orlando to tacoma
|
( min $0 ( exists $1 ( and ( from $1 orlando : ci ) ( to $1 tacoma : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_342
|
display all flights from toronto to san diego on us air with a layover in phoenix
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 phoenix : ci ) ) )
|
atis_4152
|
what flights are there from milwaukee to phoenix on saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( day $0 saturday : da ) ) )
|
atis_3832
|
what are the costs of car rental in dallas
|
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 dallas : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_3772
|
what american airlines flights depart milwaukee for phoenix on saturday or sunday
|
( 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_2390
|
oakland to san francisco please breakfast flight
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 oakland : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_792
|
give me the cheapest flight from charlotte to long beach
|
( argmin $0 ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 long_beach : ci ) ) ( fare $0 ) )
|
atis_1000
|
how many us air flights leave from washington
|
( count $0 ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 washington : ci ) ) )
|
atis_2628
|
please list the flights from newark to los angeles
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 los_angeles : ci ) ) )
|
atis_441
|
does united airline have any flights from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2837
|
show me a list of all the airlines that offer business class service
|
( lambda $0 e ( exists $1 ( and ( class_type $1 business : cl ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_1302
|
i want a list of flights from pittsburgh to baltimore on thursday that arrive in baltimore before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
|
atis_4606
|
what is the first class fare for a round trip dallas to denver
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 dallas : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1314
|
i want the flights from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2583
|
please list available flights for next saturday from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 saturday : da ) ) )
|
atis_1019
|
how much does the american airlines flight 71 from dallas to san francisco cost
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 71 : fn ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_916
|
how can i get from the airport in pittsburgh to downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ( from_airport $0 pittsburgh : ci ) ) )
|
atis_43
|
all flights from denver to pittsburgh leaving after 6pm and before 7pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( < ( departure_time $0 ) 1900 : ti ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_3479
|
show me the flights from philadelphia to baltimore in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4542
|
what is the earliest flight from boston to oakland that serves a meal
|
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) ( departure_time $0 ) )
|
atis_2128
|
list delta flights from seattle to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 seattle : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_3230
|
show me ground transportation in denver during weekdays
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ( weekday $0 ) ) )
|
atis_270
|
columbus to chicago one way before 10am
|
( lambda $0 e ( and ( oneway $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 columbus : ci ) ( to $0 chicago : ci ) ) )
|
atis_1500
|
i would like the first flight into houston from dallas on march first and the last flight from houston to dallas on march first
|
( lambda $0 e ( lambda $1 e ( and ( equals $0 ( argmin $2 ( and ( flight $2 ) ( from $2 dallas : ci ) ( to $2 houston : ci ) ( day_number $2 1 : dn ) ( month $2 march : mn ) ) ( arrival_time $2 ) ) ) ( equals $1 ( argmax $2 ( and ( flight $2 ) ( to $2 dallas : ci ) ( from $2 houston : ci ) ( day_number $2 1 : dn ) ( month $2 march : mn ) ) ( arrival_time $2 ) ) ) ) ) )
|
atis_4712
|
what is the next flight from pittsburgh to san francisco after delta flight 1059
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( > ( departure_time $0 ) ( departure_time ( the $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 1059 : fn ) ) ) ) ) ) ( departure_time $0 ) )
|
atis_511
|
find me the earliest boston departure for atlanta and the lastest return trip from atlanta so that i can be in atlanta the longest amount of time but return to boston 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_475
|
find a flight from boston to washington on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day $0 monday : da ) ) )
|
atis_532
|
find travel arrangements for a one way flight from san francisco to dallas
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 san_francisco : ci ) ( to $0 dallas : ci ) ) )
|
atis_4392
|
what is american's schedule of morning flights to atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( during_day $1 morning : pd ) ( to $1 atlanta : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_1323
|
i want to fly boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_893
|
hello i would like to plan a flight from boston to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_2871
|
show me all first class prices 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_267
|
coach class flights on twa from columbus to st. paul
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( class_type $0 coach : cl ) ( from $0 columbus : ci ) ( to $0 st_paul : ci ) ) )
|
atis_233
|
can you show me what flights are available on december sixteen going from oakland to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 dallas : ci ) ( day_number $0 16 : dn ) ( month $0 december : mn ) ) )
|
atis_1286
|
i want a flight from philadelphia to dallas that at least has one stop
|
( lambda $0 e ( and ( flight $0 ) ( > ( stops $0 ) 1 : i ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_2330
|
may i see all the flights from washington to san francisco please
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4936
|
what's the smallest plane that flies from pittsburgh to baltimore on eight sixteen
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 16 : dn ) ( month $0 august : mn ) ) ( capacity $0 ) )
|
atis_2064
|
list all flights on continental leaving seattle on sunday after 430pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 1630 : ti ) ( from $0 seattle : ci ) ( day $0 sunday : da ) ) )
|
atis_3856
|
what are the flights and fares from boston to philadelphia
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_287
|
could you please give me information concerning american airlines a flight from washington dc to philadelphia the earliest one in the morning as possible
|
( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 morning : pd ) ( from $0 washington : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
|
atis_3139
|
show me flights from boston to pittsburgh after 1700 hours on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
|
atis_733
|
get flight from toronto to san diego stopping at dtw
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 dtw : ap ) ) )
|
atis_2950
|
show me all flights from phoenix to milwaukee next wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
atis_512
|
find me the earliest flight from boston to atlanta and the latest return from atlanta to boston within 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_810
|
give me the flights for american airline from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3979
|
what are your flights from pittsburgh to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4086
|
what flights are available from boston to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
atis_3919
|
what are the flights from ontario to memphis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 memphis : ci ) ) )
|
atis_1060
|
i need 2 first class tickets from dallas fort worth to san francisco
|
( lambda $0 e ( and ( class_type $0 first : cl ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1679
|
i'd like the cheapest cost fare to fort worth from boston
|
( min $0 ( exists $1 ( and ( = ( fare $1 ) $0 ) ( exists $2 ( and ( = ( fare $2 ) $1 ) ( to $2 fort_worth : ci ) ( from $2 boston : ci ) ) ) ) ) )
|
atis_815
|
give me the flights from chicago to seattle on saturday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
atis_828
|
give me the flights from new york to las vegas and memphis to las vegas on sunday
|
( lambda $0 e ( and ( flight $0 ) ( or ( and ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ( and ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ) ) )
|
atis_4811
|
what sort of ground transportation is there in washington dc
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 washington : ci ) ) )
|
atis_279
|
could you find me the cheapest fare from boston to san francisco
|
( min $0 ( exists $1 ( and ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1844
|
in the next two days i want to fly from nashville to san jose or to tacoma
|
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( or ( to $0 tacoma : ci ) ( to $0 san_jose : ci ) ) ( next_days $0 2 : i ) ) )
|
atis_3550
|
show me the ground transportation at denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_2298
|
list types of aircraft that connect boston and san francisco
|
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_3241
|
show me information on ground transportation for dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
|
atis_2403
|
okay for now i would like information on a flight on april twenty seventh from pittsburgh to atlanta leaving early in the morning about 8 o'clock
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 800 : ti ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day_number $0 27 : dn ) ( month $0 april : mn ) ) )
|
atis_3888
|
what are the flights from chicago to indianapolis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 indianapolis : ci ) ) )
|
atis_2419
|
okay just on november twenty third i want to fly from atlanta to denver and i need to know what flights are available
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 23 : dn ) ( month $0 november : mn ) ) )
|
atis_3093
|
show me fares from houston to las vegas
|
( lambda $0 e ( exists $1 ( and ( from $1 houston : ci ) ( to $1 las_vegas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4538
|
what is the earliest flight from boston to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( departure_time $0 ) )
|
atis_1883
|
is there a flight between oakland and boston with a stopover in dallas fort worth on twa
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
|
atis_2079
|
list all of the daily flights arriving in denver between 8 and 9pm
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( < ( arrival_time $0 ) 2100 : ti ) ( to $0 denver : ci ) ) )
|
atis_166
|
baltimore to philadelphia
|
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2912
|
show me all flights from dallas to pittsburgh on monday which leave after 8 o'clock pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_2891
|
show me all flights from atlanta to san francisco which leave the day after tomorrow after 5 o'clock pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( day_after_tomorrow $0 ) ) )
|
atis_3758
|
what airlines go from atlanta to baltimore
|
( lambda $0 e ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 baltimore : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3338
|
show me the dinner flights from baltimore to oakland
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ) )
|
atis_2697
|
please show me the cost of flight ua 201 from boston to denver and flight ua 343 from boston to denver
|
( lambda $0 e ( exists $1 ( and ( or ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 201 : fn ) ( from $1 boston : ci ) ( to $1 denver : ci ) ) ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 343 : fn ) ( from $1 boston : ci ) ( to $1 denver : ci ) ) ( = ( fare $1 ) $0 ) ) ) ) )
|
atis_3274
|
show me round trip flights from orlando to montreal
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 orlando : ci ) ( to $0 montreal : ci ) ) )
|
atis_2890
|
show me all flights from atlanta to san francisco which leave atlanta after 5 o'clock pm tomorrow
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( tomorrow $0 ) ) )
|
atis_4414
|
what is lowest cost air fare available for a flight from dallas to baltimore arriving on july fourth
|
( min $0 ( exists $1 ( and ( flight $1 ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( month_arrival $1 july : mn ) ( day_number_arrival $1 4 : dn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4401
|
what is fare class h
|
h : fb
|
atis_3750
|
what airlines fly from new york to milwaukee to los angeles
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 new_york : ci ) ( to $1 los_angeles : ci ) ( stop $1 milwaukee : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_4406
|
what is fare code m
|
m : fb
|
atis_2588
|
please list flights from atlanta to philly
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4669
|
what is the latest flight leaving boston to denver
|
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
|
atis_1578
|
i would like to fly to san francisco early in the day
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( to $0 san_francisco : ci ) ) )
|
atis_4222
|
what flights from dallas to houston on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ( day $0 sunday : da ) ) )
|
atis_309
|
could you tell me what morning flights are available from oakland to denver before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( during_day $0 morning : pd ) ( from $0 oakland : ci ) ( to $0 denver : ci ) ) )
|
atis_1827
|
i'm starting from denver
|
( lambda $0 e ( and ( from $0 denver : ci ) ) )
|
atis_3815
|
what are the cheapest round trip flights from denver to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_3651
|
tell me about flights from toronto to salt lake city leaving toronto between 530 and 7pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1730 : ti ) ( < ( departure_time $0 ) 1900 : ti ) ( from $0 toronto : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_4343
|
what flights leave washington dc and arrive in san francisco on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_1981
|
list airlines serving between denver and san francisco
|
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_818
|
give me the flights from indianapolis to orlando on december twenty seventh and twenty eighth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( or ( day_number $0 27 : dn ) ( day_number $0 28 : dn ) ) ( month $0 december : mn ) ) )
|
atis_4487
|
what is the cheapest round trip flight from atlanta to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_1779
|
i'd like to see all the flights with their fares from denver to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
atis_2896
|
show me all flights from baltimore to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4218
|
what flights from chicago to denver in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 denver : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.