qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_2696
|
please show me round trip tickets from denver to oakland
|
( lambda $0 e ( and ( round_trip $0 ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
|
atis_2048
|
list all flights going from boston to atlanta on wednesday after 6 o'clock pm on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
atis_1445
|
i would like a nonstop flight from philadelphia to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 philadelphia : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_2651
|
please list the tuesday flights from atlanta to st. louis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 st_louis : ci ) ( day $0 tuesday : da ) ) )
|
atis_1621
|
i'd also like to see a list of the flights from pittsburgh to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
|
atis_1649
|
i'd like a morning flight from newark to los angeles
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 newark : ci ) ( to $0 los_angeles : ci ) ) )
|
atis_92
|
american flights from san francisco please
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 san_francisco : ci ) ) )
|
atis_4670
|
what is the latest flight leaving las vegas for ontario
|
( argmax $0 ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 ontario : ci ) ) ( departure_time $0 ) )
|
atis_1700
|
i'd like to book two flights to westchester county
|
( lambda $0 e ( and ( flight $0 ) ( to $0 westchester_county : ci ) ) )
|
atis_4245
|
what flights from new york to los angeles after 10am
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1000 : ti ) ( from $0 new_york : ci ) ( to $0 los_angeles : ci ) ) )
|
atis_3375
|
show me the flight that leaves philadelphia in the afternoon and arrives in the evening in denver
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 evening : pd ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
|
atis_2770
|
show all flights from pittsburgh to oakland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
|
atis_1566
|
i would like to fly from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_234
|
can you tell me about flights from san jose to nashville on saturday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_jose : ci ) ( to $0 nashville : ci ) ( day $0 saturday : da ) ) )
|
atis_3229
|
show me ground transportation in dallas please
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
|
atis_2948
|
show me all flights from philadelphia to denver on sunday which leave philadelphia after noon
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 sunday : da ) ) )
|
atis_4399
|
what is dl
|
dl : al
|
atis_897
|
hi could i get a one way ticket from milwaukee to orlando
|
( lambda $0 e ( and ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
atis_4940
|
when does continental fly from philadelphia to denver on sundays
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 co : al ) ( from $1 philadelphia : ci ) ( to $1 denver : ci ) ( day $1 sunday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2692
|
please show me flights from pittsburgh to boston on saturday morning after 8am
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 800 : ti ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 saturday : da ) ) )
|
atis_961
|
how many first class flights does united airlines have departing from boston today
|
( count $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 boston : ci ) ( today $0 ) ) )
|
atis_1285
|
i want a flight from ontario to chicago
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 chicago : ci ) ) )
|
atis_3158
|
show me flights from denver to san francisco on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
|
atis_983
|
how many northwest flights leave st. paul
|
( count $0 ( and ( flight $0 ) ( airline $0 nw : al ) ( from $0 st_paul : ci ) ) )
|
atis_2849
|
show me a list of the flights from san francisco to boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
atis_1336
|
i want to fly from boston to san francisco via dallas fort worth on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_4164
|
what flights are there from pittsburgh to san francisco on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
|
atis_3362
|
show me the fares from dallas to san francisco
|
( lambda $0 e ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3022
|
show me all the eastern airlines flights leaving pittsburgh between 12 and 4 in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( departure_time $0 ) 1600 : ti ) ( from $0 pittsburgh : ci ) ) )
|
atis_1269
|
i want a flight between oakland and boston that arrives before 5pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) )
|
atis_5010
|
which flights go from new york to miami and back
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_3777
|
what are all flights from philadelphia to denver on wednesdays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 wednesday : da ) ) )
|
atis_5021
|
which transcontinental flight on united airlines from boston to dallas makes a stopover in philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( stop $0 philadelphia : ci ) ) )
|
atis_2602
|
please list the american airlines flights from houston to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 houston : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_2635
|
please list the flights from washington dc to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ) )
|
atis_4425
|
what is the abbreviation d10
|
d10 : ac
|
atis_1120
|
i need a flight from pittsburgh to los angeles thursday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
atis_4552
|
what is the earliest flight from oakland to washington dc on sunday
|
( argmin $0 ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 washington : ci ) ( day $0 sunday : da ) ) ( departure_time $0 ) )
|
atis_3488
|
show me the flights from pittsburgh to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 dallas : ci ) ) )
|
atis_450
|
does us air have any flights out of atlanta to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
|
atis_635
|
flights from indianapolis nashville memphis to seattle
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 nashville : ci ) ( from $0 memphis : ci ) ( from $0 indianapolis : ci ) ) ( to $0 seattle : ci ) ) )
|
atis_1997
|
list all daily flights between boston and oakland as well as boston and oakland using american airline
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
atis_444
|
does united airlines have flights between boston and denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_4145
|
what flights are there from dallas to houston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) )
|
atis_338
|
display all flights from pittsburgh to san francisco on august second
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
|
atis_868
|
ground transport phoenix
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 phoenix : ci ) ) )
|
atis_4092
|
what flights are available from dallas fort worth to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ) )
|
atis_1887
|
is there a flight between washington dc and san francisco on us air at 8am
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( departure_time $0 800 : ti ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2565
|
please list all flights on united airlines and northwest airlines that go into denver and all flights on northwest airlines and united airlines that fly out of denver
|
( lambda $0 e ( or ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( from $0 denver : ci ) ) ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( to $0 denver : ci ) ) ) )
|
atis_2592
|
please list ground transportation from ewr into new york city
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 new_york : ci ) ( from_airport $0 ewr : ap ) ) )
|
atis_389
|
do you have the fare for traveling from oakland airport to oakland downtown
|
( lambda $0 e ( exists $1 ( and ( to_city $1 oakland : ci ) ( from_airport $1 oak : ap ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_2942
|
show me all flights from orlando to montreal please
|
( lambda $0 e ( and ( flight $0 ) ( from $0 orlando : ci ) ( to $0 montreal : ci ) ) )
|
atis_2036
|
list all flights from nashville to seattle
|
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( to $0 seattle : ci ) ) )
|
atis_1473
|
i would like information on flights from dallas fort worth to atlanta on wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
atis_436
|
does midwest express serve philadelphia
|
( services yx : al philadelphia : ci )
|
atis_4344
|
what flights leaving pittsburgh arrive in denver and leave after say 6 o'clock at night
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
|
atis_3311
|
show me the cheapest flights from baltimore to dallas
|
( argmin $0 ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) ( fare $0 ) )
|
atis_5
|
a flight from baltimore to san francisco arriving between 5 and 8pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1700 : ti ) ( < ( arrival_time $0 ) 2000 : ti ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4559
|
what is the earliest flight from washington to san francisco
|
( argmin $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
|
atis_3900
|
what are the flights from denver to san francisco on tuesday october fifteenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ( day_number $0 15 : dn ) ( month $0 october : mn ) ) )
|
atis_2864
|
show me all delta airlines flights from montreal to orlando
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 montreal : ci ) ( to $0 orlando : ci ) ) )
|
atis_4896
|
what's the earliest flight from boston to philadelphia
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
|
atis_109
|
are there any airlines that have flights from boston to philadelphia that leave before 630am
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 630 : ti ) ( from $1 boston : ci ) ( to $1 philadelphia : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_1034
|
how much is coach flight from pittsburgh to atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 coach : cl ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3559
|
show me the last flight from denver to boston
|
( argmax $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_368
|
do you have a flight from san francisco to atlanta around 8am
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 800 : ti ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3067
|
show me all the types of aircraft
|
( lambda $0 e ( aircraft_code : t $0 ) )
|
atis_834
|
give me the flights from phoenix to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_3892
|
what are the flights from dallas to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
|
atis_1607
|
i would like to see the economy fares for denver to philadelphia
|
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1283
|
i want a flight from milwaukee to orlando one way leaving after 5pm on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
|
atis_3904
|
what are the flights from kansas city to burbank on saturday may twenty two on southwest
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 wn : al ) ( from $0 kansas_city : ci ) ( to $0 burbank : ci ) ( day $0 saturday : da ) ( day_number $0 22 : dn ) ( month $0 may : mn ) ) )
|
atis_443
|
does united airlines fly from denver to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_5019
|
which northwest flights stop in denver before noon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( arrival_time $0 ) 1200 : ti ) ( stop $0 denver : ci ) ) )
|
atis_3397
|
show me the flights from atlanta to denver on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) )
|
atis_3631
|
show sunday flights from seattle to chicago
|
( lambda $0 e ( and ( flight $0 ) ( from $0 seattle : ci ) ( to $0 chicago : ci ) ( day $0 sunday : da ) ) )
|
atis_4592
|
what is the fare from philadelphia to pittsburgh business class one way
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( class_type $1 business : cl ) ( from $1 philadelphia : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4517
|
what is the distance from la guardia to new york's downtown
|
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 new_york : ci ) ( from_airport $0 lga : ap ) ) )
|
atis_643
|
flights from kansas city to cleveland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 cleveland : ci ) ) )
|
atis_570
|
flight from philadelphia to dallas arriving before 4pm on saturday
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 saturday : da ) ) )
|
atis_451
|
earliest flight from atlanta to philadelphia
|
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
|
atis_1197
|
i need information flight information for tuesday on a flight leaving baltimore bound for dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 tuesday : da ) ) )
|
atis_1070
|
i need a flight 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_3111
|
show me flights between memphis tennessee and las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ) )
|
atis_2385
|
now show me the flights from memphis to cleveland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 cleveland : ci ) ) )
|
atis_2938
|
show me all flights from new york to milwaukee on northwest airlines departing at 720am
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( departure_time $0 720 : ti ) ( from $0 new_york : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_2525
|
please give me ground transportation information for denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_4771
|
what kind of airplane goes from boston to san francisco before noon
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 1200 : ti ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_3053
|
show me all the flights out of boston today
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( today $0 ) ) )
|
atis_2224
|
list the airlines with flights to or from denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( or ( from $1 denver : ci ) ( to $1 denver : ci ) ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3434
|
show me the flights from cincinnati to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cincinnati : ci ) ( to $0 denver : ci ) ) )
|
atis_2196
|
list flights tomorrow from san diego to phoenix
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 phoenix : ci ) ( tomorrow $0 ) ) )
|
atis_3
|
a first class flight on american to san francisco on tuesday in the next week
|
( 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_2399
|
okay can you tell me the flight cost between denver and atlanta
|
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4527
|
what is the earliest breakfast flight from philadelphia to fort worth
|
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 philadelphia : ci ) ( to $0 fort_worth : ci ) ) ( departure_time $0 ) )
|
atis_989
|
how many people fit on a 72s airplane
|
( capacity 72s : ac )
|
atis_306
|
could you tell me the cheapest fare from atlanta to boston on thirty first of august
|
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( day_number $1 31 : dn ) ( month $1 august : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_10
|
afternoon flight 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 ) ) )
|
atis_14
|
airline code as
|
as : al
|
atis_2784
|
show all wednesday morning flights from denver to boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 boston : ci ) ( day $0 wednesday : da ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.