qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_4698
|
what is the lowest fare from denver to atlanta
|
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_336
|
display all flights from dallas to boston on july thirtieth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ( day_number $0 30 : dn ) ( month $0 july : mn ) ) )
|
atis_4357
|
what ground transportation is available at the baltimore airport
|
( lambda $0 e ( and ( from_airport $0 bwi : ap ) ( ground_transport $0 ) ) )
|
atis_1325
|
i want to fly denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2402
|
okay does twa have a flight from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3859
|
what are the flights available after 6pm between san francisco and boston
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
atis_1579
|
i would like to fly to san francisco from washington dc
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_96
|
and a flight from st. louis to burbank that leaves tuesday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 st_louis : ci ) ( to $0 burbank : ci ) ( day $0 tuesday : da ) ) )
|
atis_4085
|
what flights are available from boston to atlanta on july seventh 8am
|
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day_number $0 7 : dn ) ( month $0 july : mn ) ) )
|
atis_3250
|
show me oakland to dallas flights
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 dallas : ci ) ) )
|
atis_3692
|
united airlines flights stopping in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( stop $0 denver : ci ) ) )
|
atis_2637
|
please list the flights taking off and landing on general mitchell international airport
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 mke : ap ) ( to $0 mke : ap ) ) ) )
|
atis_4137
|
what flights are there from atlanta to oakland on thursday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ( day $0 thursday : da ) ) )
|
atis_3737
|
what airlines fly between atlanta and san francisco
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_4912
|
what's the ground transportation like at pittsburgh
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ) )
|
atis_129
|
are there any flights from denver to atlanta which connect in pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
|
atis_2561
|
please list all flights from san francisco to pittsburgh on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 sunday : da ) ) )
|
atis_2119
|
list daily flights from denver to baltimore with first class service
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_1635
|
i'd like a flight from st. petersburg to miami on that next thursday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_petersburg : ci ) ( to $0 miami : ci ) ( day $0 thursday : da ) ) )
|
atis_1985
|
list airports in new york
|
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 new_york : ci ) ) )
|
atis_4956
|
which airline has the most business class flights
|
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( class_type $1 business : cl ) ( airline $1 $0 ) ) ) )
|
atis_1123
|
i need a flight from pittsburgh to new york leaving at 5pm
|
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1700 : ti ) ( from $0 pittsburgh : ci ) ( to $0 new_york : ci ) ) )
|
atis_4504
|
what is the cost of a round trip ticket first class between oak and atl
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 oak : ap ) ( to $1 atl : ap ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3555
|
show me the ground transportation to westchester county
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 westchester_county : ci ) ) )
|
atis_1398
|
i would like a connecting flight from dallas to san francisco leaving after 4 o'clock
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4714
|
what is the price of a first class ticket from atlanta to san francisco
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_370
|
do you have a flight on wednesday from denver to washington dc nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
|
atis_1788
|
i'd like to see the flights from baltimore to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2504
|
please give grounds transportation at dallas airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 dallas : ci ) ) )
|
atis_2773
|
show all flights leaving monday morning from boston to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_2116
|
list daily flights from boston to oakland using continental airlines
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
atis_4337
|
what flights leave pittsburgh for denver on monday night
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) )
|
atis_4284
|
what flights go from dallas to denver after 3pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1500 : ti ) ( from $0 dallas : ci ) ( to $0 denver : ci ) ) )
|
atis_1820
|
i'm looking for flights from pittsburgh to philadelphia leaving before 9am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_994
|
how many seats in a 72s
|
( capacity 72s : ac )
|
atis_881
|
ground transportation in las vegas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 las_vegas : ci ) ) )
|
atis_737
|
get flights from toronto to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_231
|
can you show me the price of a flight to washington from atlanta on thursday morning
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 morning : pd ) ( from $1 washington : ci ) ( to $1 atlanta : ci ) ( day $1 thursday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_377
|
do you have an american airlines flight from denver to san francisco in the early morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1413
|
i would like a flight from nashville to st. louis that arrives in st. louis around 6pm and is nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( approx_arrival_time $0 1800 : ti ) ( from $0 nashville : ci ) ( to $0 st_louis : ci ) ) )
|
atis_2910
|
show me all flights from charlotte
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ) )
|
atis_2007
|
list all flights arriving in pittsburgh monday evening from san francisco that first class
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( during_day_arrival $0 evening : pd ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day_arrival $0 monday : da ) ) )
|
atis_432
|
does midwest express serve cleveland
|
( services yx : al cleveland : ci )
|
atis_4296
|
what flights go from philadelphia to dallas with a stopover in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_3949
|
what are the lowest one way fares from atlanta to denver
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4394
|
what is bna
|
bna : ap
|
atis_1361
|
i want to go from boston to oakland on united and leave at 838am which flight should i take
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( departure_time $0 838 : ti ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
atis_3042
|
show me all the flights from montreal to detroit
|
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 detroit : ci ) ) )
|
atis_4277
|
what flights go from boston to pittsburgh after 6 o'clock next tuesday
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 600 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
atis_3483
|
show me the flights from philadelphia to dallas with a stop in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_1378
|
i want to leave philadelphia and arrive in atlanta on a thursday
|
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
|
atis_1591
|
i would like to know the types of ground transportation from the airport to las vegas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 las_vegas : ci ) ( from_airport $0 las_vegas : ci ) ) )
|
atis_1143
|
i need a flight 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_2643
|
please list the morning flights from kansas city to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 kansas_city : ci ) ( to $0 atlanta : ci ) ) )
|
atis_172
|
boston to pittsburgh
|
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_3727
|
what airline is ea
|
ea : al
|
atis_3863
|
what are the flights between cincinnati and san jose california which leave after 6pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 cincinnati : ci ) ( to $0 san_jose : ci ) ) )
|
atis_1876
|
is there a delta flight from boston to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_2654
|
please list united flights between boston and denver departing at 9am
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( departure_time $0 900 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_3296
|
show me the airlines
|
( lambda $0 e ( airline $0 ) )
|
atis_814
|
give me the flights from chicago to seattle on continental that have meals early saturday morning
|
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 co : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
atis_2256
|
list the flights from baltimore to seattle that stop in minneapolis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 seattle : ci ) ( stop $0 minneapolis : ci ) ) )
|
atis_2266
|
list the flights from philadelphia to san francisco via dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_948
|
how many cities are served by continental with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 co : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
atis_16
|
airlines that fly to miami from new york on friday
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 new_york : ci ) ( to $1 miami : ci ) ( day $1 friday : da ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_2026
|
list all flights from burbank to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 burbank : ci ) ( to $0 denver : ci ) ) )
|
atis_2020
|
list all flights from boston to oakland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
atis_4388
|
what is airline ff
|
ff : al
|
atis_367
|
do you have a flight from salt lake city to st. petersburg
|
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 st_petersburg : ci ) ) )
|
atis_1406
|
i would like a flight from boston to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3176
|
show me flights from new york to miami
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_2932
|
show me all flights from montreal
|
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ) )
|
atis_3367
|
show me the first class and coach flights from kennedy airport to miami
|
( lambda $0 e ( and ( flight $0 ) ( or ( class_type $0 first : cl ) ( class_type $0 coach : cl ) ) ( from $0 jfk : ap ) ( to $0 miami : ci ) ) )
|
atis_3436
|
show me the flights from cleveland to memphis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 memphis : ci ) ) )
|
atis_4786
|
what kind of plane is used on the earliest flight from boston to san francisco afternoon
|
( lambda $0 e ( aircraft ( argmin $1 ( and ( flight $1 ) ( during_day $1 afternoon : pd ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ) ( departure_time $1 ) ) $0 ) )
|
atis_4877
|
what's the cheapest flight from denver to pittsburgh for both one way and round trip flights
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( or ( oneway $0 ) ( round_trip $0 ) ) ) ( fare $0 ) )
|
atis_4096
|
what flights are available from denver to philadelphia on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 monday : da ) ) )
|
atis_3527
|
show me the flights on american airlines from fort worth to denver on the evening of july eleventh
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 fort_worth : ci ) ( to $0 denver : ci ) ( day_number $0 11 : dn ) ( month $0 july : mn ) ( during_day $0 evening : pd ) ) )
|
atis_4531
|
what is the earliest flight between logan and bwi
|
( argmin $0 ( and ( flight $0 ) ( from $0 bos : ap ) ( to $0 bwi : ap ) ) ( departure_time $0 ) )
|
atis_4650
|
what is the latest afternoon flight departing san francisco and arriving in boston on november ninth
|
( argmax $0 ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day_number $0 9 : dn ) ( month $0 november : mn ) ) ( departure_time $0 ) )
|
atis_1848
|
information on afternoon flights from philadelphia to denver
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
|
atis_4411
|
what is ff
|
ff : al
|
atis_5020
|
which of the flights from pittsburgh to baltimore on july twenty fifth 1991 carries the smallest number of passengers
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 25 : dn ) ( month $0 july : mn ) ( year $0 1991 : yr ) ) ( capacity $0 ) )
|
atis_5009
|
which flights from pittsburgh to atlanta have the lowest coach class fares
|
( argmin $0 ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
atis_4413
|
what is hp
|
hp : al
|
atis_1935
|
is there ground transportation available at the denver airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 den : ap ) ) )
|
atis_239
|
can you tell me the cheapest 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_1624
|
i'd like a flight from baltimore to boston as early in the morning as i can
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_3032
|
show me all the flights from burbank to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 burbank : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_4510
|
what is the cost of limousine service in philadelphia
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 philadelphia : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_542
|
first class american flight from philadelphia to dallas on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 wednesday : da ) ) )
|
atis_2851
|
show me about the ground transportation in boston
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ) )
|
atis_2725
|
return from miami to new york on tower air on saturdays
|
( lambda $0 e ( and ( airline $0 ff : al ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ( day $0 saturday : da ) ) )
|
atis_2454
|
on november twenty third what flights are available between boston and denver on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 23 : dn ) ( month $0 november : mn ) ) )
|
atis_1459
|
i would like an early morning flight from chicago into seattle on continental airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ) )
|
atis_1668
|
i'd like flight information from dallas fort worth to boston on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ( day $0 tuesday : da ) ) )
|
atis_3867
|
what are the flights between pittsburgh and san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1903
|
is there a flight leaving san francisco to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
|
atis_552
|
flight from boston to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) )
|
atis_362
|
do you have a flight from boston to san francisco with a stopover in fort worth dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 fort_worth : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.