qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_1424
|
i would like a flight from washington to boston flight 324 on august twentieth
|
( lambda $0 e ( and ( flight $0 ) ( flight_number $0 324 : fn ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( day_number $0 20 : dn ) ( month $0 august : mn ) ) )
|
atis_4001
|
what do you have tomorrow morning from pittsburgh to atlanta
|
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( tomorrow $0 ) ) )
|
atis_820
|
give me the flights from los angeles to pittsburgh on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
atis_886
|
ground transportation in westchester county
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 westchester_county : ci ) ) )
|
atis_393
|
does american airlines fly from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2843
|
show me a list of flights from san francisco to boston for august thirtieth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day_number $0 30 : dn ) ( month $0 august : mn ) ) )
|
atis_1780
|
i'd like to see all the one way flights from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2462
|
on tuesday i'd like to find a flight from detroit to st. petersburg that arrives before 10pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 2200 : ti ) ( from $0 detroit : ci ) ( to $0 st_petersburg : ci ) ( day $0 tuesday : da ) ) )
|
atis_3009
|
show me all prices of economy from baltimore to dallas
|
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4809
|
what round trip flights between atlanta and denver qualify for fare code qx
|
( lambda $0 e ( and ( flight $0 ) ( fare_basis_code $0 qx : fb ) ( round_trip $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
|
atis_476
|
find a flight from charlotte to las vegas that stop in st. louis that serve dinner and i want to find the airline for this flight
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ( = ( airline : e $0 ) $1 ) ) ) )
|
atis_2982
|
show me all flights from san francisco to pittsburgh on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 friday : da ) ) )
|
atis_456
|
economy fares new york to miami round trip
|
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( round_trip $1 ) ( from $1 new_york : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_108
|
are there any 4 o'clock flights from washington to denver
|
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1600 : ti ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) )
|
atis_4031
|
what does lax stand for
|
lax : ap
|
atis_762
|
give me all flights from new york city to las vegas that arrive on a sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day_arrival $0 sunday : da ) ) )
|
atis_3427
|
show me the flights from boston to san francisco on united airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2198
|
list ground transportation in baltimore
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 baltimore : ci ) ) )
|
atis_789
|
give me return flights from philadelphia to san francisco for december third
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day_number $0 3 : dn ) ( month $0 december : mn ) ) )
|
atis_4223
|
what flights from denver to pittsburgh arrive before 8 in the morning
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 800 : ti ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2319
|
may i have a list of flights going from boston to denver on the twenty ninth of july
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 29 : dn ) ( month $0 july : mn ) ) )
|
atis_11
|
afternoon flights from boston to san francisco please that leave in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1138
|
i need a flight from toronto to san diego with a layover in washington dc on air canada
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ac : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 washington : ci ) ) )
|
atis_3580
|
show me the monday flights from san francisco to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_3507
|
show me the flights from san francisco to newark that leave after 11pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2300 : ti ) ( from $0 san_francisco : ci ) ( to $0 newark : ci ) ) )
|
atis_1278
|
i want a flight from houston to memphis on tuesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 houston : ci ) ( to $0 memphis : ci ) ( day $0 tuesday : da ) ) )
|
atis_3089
|
show me evening flights to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( to $0 baltimore : ci ) ) )
|
atis_672
|
flights from oakland to san francisco on january twenty first 1992
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 san_francisco : ci ) ( day_number $0 21 : dn ) ( month $0 january : mn ) ( year $0 1992 : yr ) ) )
|
atis_2486
|
pittsburgh to atlanta please with a stopover in fort worth
|
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( stop $0 fort_worth : ci ) ) )
|
atis_1944
|
is there ground transportation from the airport in denver to downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ( from_airport $0 denver : ci ) ) )
|
atis_1905
|
is there a flight on american airlines going from boston to san francisco on june twenty eighth
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( day_number $0 28 : dn ) ( month $0 june : mn ) ) )
|
atis_2025
|
list all flights from boston to san francisco with the maximum number of stops
|
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( stops $0 ) )
|
atis_3412
|
show me the flights from boston to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
atis_3485
|
show me the flights from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_4585
|
what is the economy thrift fare from boston to washington
|
( lambda $0 e ( exists $1 ( and ( class_type $1 thrift : cl ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_700
|
fly from dallas to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3321
|
show me the cheapest one way flights from dallas to san francisco leaving dallas after 4pm
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) ( fare $0 ) )
|
atis_3712
|
what about the flights from boston to la
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 los_angeles : ci ) ) )
|
atis_669
|
flights from newark to cleveland daily
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
|
atis_2362
|
nonstop or connecting flights from seattle to boston
|
( lambda $0 e ( and ( flight $0 ) ( or ( nonstop $0 ) ( connecting $0 ) ) ( from $0 seattle : ci ) ( to $0 boston : ci ) ) )
|
atis_119
|
are there any flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3090
|
show me fares for flights from minneapolis to seattle on july first 1993
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 minneapolis : ci ) ( to $1 seattle : ci ) ( day_number $1 1 : dn ) ( month $1 july : mn ) ( year $1 1993 : yr ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_274
|
could i have flight information on flights from pittsburgh to phoenix please
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 phoenix : ci ) ) )
|
atis_4842
|
what type of airplane is an m80
|
m80 : ac
|
atis_1396
|
i wish to fly from boston to washington please find an airline for me
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_4696
|
what is the lowest cost for a one way ticket from boston to washington
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4875
|
what's the cheapest flight from baltimore to dallas on american
|
( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) ( fare $0 ) )
|
atis_4621
|
what is the first flight from boston to stapleton airport for tomorrow
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 stapelton : ap ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
atis_1633
|
i'd like a flight from montreal to san diego for sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 san_diego : ci ) ( day $0 sunday : da ) ) )
|
atis_2748
|
san francisco to pittsburgh friday
|
( lambda $0 e ( and ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 friday : da ) ) )
|
atis_4697
|
what is the lowest fare from bwi to salt lake city
|
( min $0 ( exists $1 ( and ( from $1 bwi : ap ) ( to $1 salt_lake_city : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_215
|
can you please show me the flights from pittsburgh to boston on wednesday of next week that arrive before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
atis_1587
|
i would like to know the flights available from boston to denver arriving in denver by 8 o'clock wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 800 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) )
|
atis_1231
|
i need to fly from atlanta to charlotte north carolina next monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 charlotte : ci ) ( day $0 monday : da ) ) )
|
atis_392
|
does american airlines fly from atlanta to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_27
|
all flights from baltimore to atlanta between 1 o'clock and 3 o'clock in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1300 : ti ) ( < ( departure_time $0 ) 1500 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3909
|
what are the flights from memphis to las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ) )
|
atis_752
|
give me a flight from newark to tampa on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) )
|
atis_1810
|
i'm interested in the cheapest fare from washington to fort worth
|
( min $0 ( exists $1 ( and ( from $1 washington : ci ) ( to $1 fort_worth : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2761
|
show all airlines flying from pittsburgh to san francisco
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_478
|
find a flight from philadelphia to san francisco please on delta
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3239
|
show me ground transportation information for pittsburgh
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ) )
|
atis_4036
|
what does ord mean
|
ord : ap
|
atis_909
|
how about a flight leaving tuesday night from st. louis to burbank
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 st_louis : ci ) ( to $0 burbank : ci ) ( day $0 tuesday : da ) ) )
|
atis_3890
|
what are the flights from cleveland to indianapolis for wednesday the twelfth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 indianapolis : ci ) ( day $0 wednesday : da ) ( day_number $0 12 : dn ) ) )
|
atis_2933
|
show me all flights from new york to miami leaving on a tuesday and returning on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ( day_return $0 sunday : da ) ) )
|
atis_3621
|
show me wednesday afternoon flights from denver to 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_4121
|
what flights are between boston and atlanta on july thirty first
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day_number $0 31 : dn ) ( month $0 july : mn ) ) )
|
atis_2485
|
phoenix to newark wednesday
|
( lambda $0 e ( and ( from $0 phoenix : ci ) ( to $0 newark : ci ) ( day $0 wednesday : da ) ) )
|
atis_3014
|
show me all round trips from new york to miami leaving on tuesday
|
( lambda $0 e ( and ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
|
atis_2151
|
list flights from denver to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2180
|
list flights from phoenix to detroit on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 detroit : ci ) ( day $0 wednesday : da ) ) )
|
atis_2331
|
memphis to las vegas sunday afternoon
|
( lambda $0 e ( and ( during_day $0 afternoon : pd ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
|
atis_3538
|
show me the flights out of love field
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dal : ap ) ) )
|
atis_563
|
flight from denver to san francisco in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2812
|
show flights from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_921
|
how do i get from boston to pittsburgh
|
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_4472
|
what is the cheapest one way fare between boston and oakland
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_969
|
how many flights does american airlines have from boston to atlanta
|
( count $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
atis_1212
|
i need information on flights from washington to boston that leave on a saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( day $0 saturday : da ) ) )
|
atis_4202
|
what flights does american airlines fly from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_913
|
how about flights leaving san francisco and arriving in boston for any day
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
atis_3732
|
what airline stands for hp
|
hp : al
|
atis_2889
|
show me all flights from atlanta to denver which leave after 5 o'clock pm the day after tomorrow
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_after_tomorrow $0 ) ) )
|
atis_2764
|
show all flights and fares from denver to san francisco
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_2411
|
okay i would like to know the type of aircraft used on a flight from cleveland to dallas please
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 cleveland : ci ) ( to $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_4052
|
what does the restriction ap58 mean
|
ap_58 : rc
|
atis_723
|
from pittsburgh to baltimore
|
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
|
atis_2126
|
list daily flights of united airline from denver to baltimore with first class service
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3124
|
show me flights from atlanta to washington dc leaving on thursday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
|
atis_2123
|
list daily flights from oakland to boston using delta airlines
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 dl : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) )
|
atis_1027
|
how much is a limousine between dallas fort worth international airport and dallas
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 dallas : ci ) ( from_airport $1 dallas : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_597
|
flights between new york and san jose
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 san_jose : ci ) ) )
|
atis_6
|
a flight on continental airlines leaving boston and going to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_1061
|
i need a cheap flight from baltimore to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1449
|
i would like a ticket leaving from denver colorado to atlanta georgia with a stop in pittsburgh
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
|
atis_4738
|
what is the seating capacity of the aircraft m80
|
( capacity m80 : ac )
|
atis_2714
|
please tell me which airline has the most departures from atlanta
|
( argmax $0 ( airline $0 ) ( count $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( airline $1 $0 ) ) ) )
|
atis_997
|
how many stops on continental 1765 from boston to san francisco
|
( stops ( the $0 ( and ( flight $0 ) ( airline $0 co : al ) ( flight_number $0 1765 : fn ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ) )
|
atis_4488
|
what is the cheapest round trip flight from denver to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.