qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_793
|
give me the cheapest flight from dallas to baltimore on saturday
|
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day $0 saturday : da ) ) ( fare $0 ) )
|
atis_1501
|
i would like the flight from atlanta to denver that has the cheapest one way fare
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
|
atis_1572
|
i would like to fly from st. paul to san jose monday morning from san jose to houston tuesday morning and from houston to st. paul on wednesday morning
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( during_day $0 morning : pd ) ( during_day $1 morning : pd ) ( during_day $2 morning : pd ) ( from $0 st_paul : ci ) ( to $0 san_jose : ci ) ( from $1 san_jose : ci ) ( to $1 houston : ci ) ( from $2 houstin : ci ) ( to $2 st_paul : ci ) ( day $0 monday : da ) ( day $1 tuesday : da ) ( day $2 wednesday : da ) ) ) ) )
|
atis_4499
|
what is the cost of a first class ticket from baltimore to dallas
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_330
|
describe ground transportation in dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
|
atis_2337
|
morning flight from dallas to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ) )
|
atis_2734
|
round trip fares from denver to philadelphia under 1000 dollars
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( < ( fare $1 ) 1000 : do ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1713
|
i'd like to find the cheapest one way fare from baltimore to denver
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 baltimore : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4476
|
what is the cheapest one way fare from boston to washington
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2232
|
list the cheapest fare from charlotte to las vegas
|
( min $0 ( exists $1 ( and ( from $1 charlotte : ci ) ( to $1 las_vegas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2527
|
please give me round trip fares from baltimore to philadelphia
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_710
|
from denver to washington dc on monday november eleventh 1991
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 monday : da ) ( day_number $0 11 : dn ) ( month $0 november : mn ) ( year $0 1991 : yr ) ) )
|
atis_4920
|
what's the latest flight out of denver that arrives in pittsburgh next monday
|
( argmax $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) ( departure_time $0 ) )
|
atis_1101
|
i need a flight from milwaukee to indianapolis leaving monday before 9am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 milwaukee : ci ) ( to $0 indianapolis : ci ) ( day $0 monday : da ) ) )
|
atis_4897
|
what's the earliest flight from dallas to houston
|
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) ( departure_time $0 ) )
|
atis_4229
|
what flights from kansas city to atlanta arriving before 10am on monday
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( from $0 kansas_city : ci ) ( to $0 atlanta : ci ) ( day $0 monday : da ) ) )
|
atis_356
|
do you have a delta flight to san francisco from denver on august thirtieth in the early morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 30 : dn ) ( month $0 august : mn ) ) )
|
atis_3519
|
show me the flights from westchester county to cincinnati
|
( lambda $0 e ( and ( flight $0 ) ( from $0 westchester_county : ci ) ( to $0 cincinnati : ci ) ) )
|
atis_493
|
find flight from houston to memphis on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 memphis : ci ) ( day $0 friday : da ) ) )
|
atis_4855
|
what types of ground transportation are there to san francisco airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 sfo : ap ) ) )
|
atis_69
|
all right what do you have from oakland to philadelphia on wednesday
|
( lambda $0 e ( and ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) )
|
atis_1313
|
i want the cheapest flight from pittsburgh to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
atis_4806
|
what pm flights are available from philadelphia to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 pm : pd ) ( from $0 philadelphia : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_3149
|
show me flights from dallas to san francisco on wednesdays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_1618
|
i would like to travel from indianapolis to houston
|
( lambda $0 e ( and ( to $0 houston : ci ) ( from $0 indianapolis : ci ) ) )
|
atis_3931
|
what are the flights from st. louis to burbank sunday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 st_louis : ci ) ( to $0 burbank : ci ) ( day $0 sunday : da ) ) )
|
atis_1535
|
i would like to find a flight that goes from tampa to montreal making a stop in new york and a flight that serves lunch
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 tampa : ci ) ( to $0 montreal : ci ) ( stop $0 new_york : ci ) ) )
|
atis_175
|
can i get a rental car in dallas
|
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 dallas : ci ) ) )
|
atis_981
|
how many flights has continental into and out of atlanta
|
( count $0 ( and ( flight $0 ) ( airline $0 co : al ) ( or ( from $0 atlanta : ci ) ( to $0 atlanta : ci ) ) ) )
|
atis_4625
|
what is the flight number of the earliest flight between boston and washington dc
|
( flight_number ( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) ) )
|
atis_826
|
give me the flights from new york city to las vegas on sunday and the flights from memphis to las vegas on sunday
|
( lambda $0 e ( or ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ) )
|
atis_1254
|
i need to know information for flights leaving dallas on tuesday evening and returning to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
atis_3071
|
show me all the us air flights to pittsburgh between 12 and 4 in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( > ( arrival_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1600 : ti ) ( to $0 pittsburgh : ci ) ) )
|
atis_2010
|
list all flights departing from general mitchell
|
( lambda $0 e ( and ( flight $0 ) ( from $0 mke : ap ) ) )
|
atis_4834
|
what type of aircraft is used on american airline flight 315
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 315 : fn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_4431
|
what is the ap/57 restriction
|
ap_57 : rc
|
atis_764
|
give me all nonstops from new york to 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_4836
|
what type of aircraft is used on the flight from atlanta to philadelphia before 12 o'clock noon
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 1200 : ti ) ( from $1 atlanta : ci ) ( to $1 philadelphia : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_1600
|
i would like to plan a flight on american airlines from boston to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_2
|
a first class flight on american to san francisco on the coming tuesday
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ) )
|
atis_800
|
give me the earliest flight on american airlines tomorrow from st. petersburg to milwaukee
|
( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 st_petersburg : ci ) ( to $0 milwaukee : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
atis_786
|
give me morning flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3304
|
show me the cheapest fare in the database
|
( min $0 ( exists $1 ( and ( = ( fare $1 ) $0 ) ) ) )
|
atis_4955
|
which airline has the most arrivals in atlanta
|
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( to $1 atlanta : ci ) ( airline $1 $0 ) ) ) )
|
atis_674
|
flights from ontario to florida
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 florida : st ) ) )
|
atis_4352
|
what ground transportation can i take into boston
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ) )
|
atis_2510
|
please give me all flights from dallas to oakland before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 dallas : ci ) ( to $0 oakland : ci ) ) )
|
atis_2537
|
please give me the flights from denver to pittsburgh which leave in the morning on july second
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 2 : dn ) ( month $0 july : mn ) ) )
|
atis_2587
|
please list flights between san francisco and denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
|
atis_238
|
can you tell me the cheapest flight between boston and san francisco
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( fare $0 ) )
|
atis_427
|
does midwest express have any flights from montreal to detroit
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 yx : al ) ( from $0 montreal : ci ) ( to $0 detroit : ci ) ) )
|
atis_2466
|
on united airlines flying from denver to san francisco before 10am what type of aircraft is used
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_204
|
can you list all of the delta flights from salt lake city to new york next saturday arriving before 6pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 salt_lake_city : ci ) ( to $0 new_york : ci ) ( day $0 saturday : da ) ) )
|
atis_923
|
how do i get from pittsburgh airport to downtown pittsburgh
|
( lambda $0 e ( and ( to_city $0 pittsburgh : ci ) ( from_airport $0 pittsburgh : ci ) ) )
|
atis_240
|
can you tell me the flights on october fifteenth 1991 from boston to oakland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ( day_number $0 15 : dn ) ( month $0 october : mn ) ( year $0 1991 : yr ) ) )
|
atis_2490
|
pittsburgh to denver
|
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
|
atis_1927
|
is there an airline that has a flight from philadelphia to san francisco with a stop in dallas
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( stop $1 dallas : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3534
|
show me the flights on sunday from tampa to charlotte
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
|
atis_670
|
flights from newark to cleveland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
|
atis_3459
|
show me the flights from houston to orlando
|
( lambda $0 e ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 orlando : ci ) ) )
|
atis_4872
|
what's the cheapest fare from san francisco to baltimore
|
( min $0 ( exists $1 ( and ( from $1 san_francisco : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_694
|
flights on american from phoenix to chicago on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 chicago : ci ) ( day $0 wednesday : da ) ) )
|
atis_1023
|
how much is a first class ticket from boston to san francisco
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3055
|
show me all the flights that arrive in baltimore in the evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 evening : pd ) ( to $0 baltimore : ci ) ) )
|
atis_3138
|
show me flights from boston to philadelphia on a monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day $0 monday : da ) ) )
|
atis_1044
|
i also need to go to san francisco on wednesday evening from dallas
|
( lambda $0 e ( and ( during_day $0 evening : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_366
|
do you have a flight from salt lake city to st. petersburg on june second
|
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 st_petersburg : ci ) ( day_number $0 2 : dn ) ( month $0 june : mn ) ) )
|
atis_4794
|
what night flight do you have from san francisco to denver on united on the evening of august twenty seventh
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( during_day $0 evening : pd ) ( during_day $0 late : pd ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) )
|
atis_1140
|
i need a flight leaving pittsburgh next monday arriving in fort worth before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1000 : ti ) ( from $0 pittsburgh : ci ) ( to $0 fort_worth : ci ) ( day $0 monday : da ) ) )
|
atis_3950
|
what are the lowest one way fares from atlanta to pittsburgh
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 atlanta : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_259
|
cheapest one way fare from indianapolis to orlando on december twenty seventh
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 indianapolis : ci ) ( to $1 orlando : ci ) ( day_number $1 27 : dn ) ( month $1 december : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3132
|
show me flights from baltimore to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3034
|
show me all the flights from charlotte to cleveland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 cleveland : ci ) ) )
|
atis_3996
|
what do these cost
|
( lambda $0 e ( fare $0 ) )
|
atis_1214
|
i need information on flights leaving philadelphia on friday arriving in oakland california
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 oakland : ci ) ( day $0 friday : da ) ) )
|
atis_163
|
baltimore to kansas city economy
|
( lambda $0 e ( and ( economy $0 ) ( from $0 baltimore : ci ) ( to $0 kansas_city : ci ) ) )
|
atis_4395
|
what is booking class c
|
c : fb
|
atis_1583
|
i would like to know flights on june fifteenth from long beach to columbus after 12 noon please
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 long_beach : ci ) ( to $0 columbus : ci ) ( day_number $0 15 : dn ) ( month $0 june : mn ) ) )
|
atis_264
|
chicago to san francisco on continental
|
( lambda $0 e ( and ( airline $0 co : al ) ( from $0 chicago : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_385
|
do you have any flights united airlines 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_1943
|
is there ground transportation from san diego airport to the downtown area
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_diego : ci ) ( from_airport $0 san_diego : ci ) ) )
|
atis_3620
|
show me us air flights from san francisco to pittsburgh on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
atis_3315
|
show me the cheapest flights round trip from new york to san jose arriving in san jose before 7pm
|
( argmin $0 ( and ( flight $0 ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 new_york : ci ) ( to $0 san_jose : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_5024
|
which united airlines flights go through denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( stop $0 denver : ci ) ) )
|
atis_701
|
fly from denver to philadelphia on continental
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4523
|
what is the earliest arrival in salt lake city of a flight from toronto
|
( argmin $0 ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 salt_lake_city : ci ) ) ( arrival_time $0 ) )
|
atis_4253
|
what flights from pittsburgh to newark on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 newark : ci ) ( day $0 monday : da ) ) )
|
atis_272
|
could i have a list of flights in first class on monday from san francisco to pittsburgh starting at noon and afterwards
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_4935
|
what's the smallest plane flying from pittsburgh to baltimore on december seventeenth
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 17 : dn ) ( month $0 december : mn ) ) ( capacity $0 ) )
|
atis_4495
|
what is the code for business class
|
( lambda $0 e ( and ( fare_basis_code $0 ) ( class_type $0 business : cl ) ) )
|
atis_1395
|
i wish to book a flight from pittsburgh to atlanta coach discount fare
|
( lambda $0 e ( and ( flight $0 ) ( discounted $0 ) ( class_type $0 coach : cl ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
|
atis_277
|
could i have the flights from newark to orlando please
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 orlando : ci ) ) )
|
atis_1151
|
i need a flight tonight from charlotte to las vegas with a stop in st. louis and i want dinner
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( tonight $0 ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
|
atis_3223
|
show me ground transport in seattle
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 seattle : ci ) ) )
|
atis_1886
|
is there a flight between san francisco and boston with a stopover in dallas fort worth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
|
atis_1446
|
i would like a nonstop flight from st. petersburg to charlotte leaving in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 afternoon : pd ) ( from $0 st_petersburg : ci ) ( to $0 charlotte : ci ) ) )
|
atis_4479
|
what is the cheapest one way fare from san francisco to boston on wednesday august twenty first
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 san_francisco : ci ) ( to $1 boston : ci ) ( day $1 wednesday : da ) ( day_number $1 21 : dn ) ( month $1 august : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3769
|
what airport in new york is closest to downtown
|
( argmin $0 ( and ( airport $0 ) ( loc : t $0 new_york : ci ) ) ( miles_distant $0 new_york : ci ) )
|
atis_4338
|
what flights leave pittsburgh july fifth after 7pm and arrive in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day_number $0 5 : dn ) ( month $0 july : mn ) ) )
|
atis_4234
|
what flights from kansas city to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : 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.