qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_3240
show me ground transportation information for san francisco
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_francisco : ci ) ) )
atis_4008
what does code yn mean
yn : fb
atis_3896
what are the flights from denver to baltimore on august tenth
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 10 : dn ) ( month $0 august : mn ) ) )
atis_1485
i would like information on ground transportation in atlanta from the airport to the city in the morning around 9am
( lambda $0 e ( and ( ground_transport $0 ) ( during_day $0 morning : pd ) ( approx_departure_time $0 900 : ti ) ( to_city $0 atlanta : ci ) ( from_airport $0 atl : ap ) ) )
atis_4529
what is the earliest flight arriving in charlotte from st. louis on friday
( argmin $0 ( and ( flight $0 ) ( from $0 st_louis : ci ) ( to $0 charlotte : ci ) ( day_arrival $0 friday : da ) ) ( departure_time $0 ) )
atis_3129
show me flights from baltimore to dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
atis_1773
i'd like to make a trip from washington to san francisco
( lambda $0 e ( and ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
atis_2774
show all flights on lufthansa airlines out of boston
( lambda $0 e ( and ( flight $0 ) ( airline $0 lh : al ) ( from $0 boston : ci ) ) )
atis_3789
what are connecting flights from chicago into seattle on june fifth
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day_number $0 5 : dn ) ( month $0 june : mn ) ) )
atis_3791
what are fare codes qw and qx
( lambda $0 e ( or ( equals $0 qw : fb ) ( equals $0 qx : fb ) ) )
atis_2945
show me all flights from philadelphia to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 baltimore : ci ) ) )
atis_1743
i'd like to fly united airlines from washington to denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) )
atis_3110
show me flights between memphis and las vegas on sunday
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
atis_2705
please show me the philadelphia to denver saturday flights again
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 saturday : da ) ) )
atis_1637
i'd like a flight leaving atlanta august seventh and arriving in denver colorado august seventh leaving in the afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 august : mn ) ( day_number_arrival $0 7 : dn ) ( month_arrival $0 august : mn ) ) )
atis_3302
show me the cheapest fare from baltimore to dallas
( min $0 ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3495
show me the flights from salt lake city to st. petersburg late night on tuesday
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late_night : pd ) ( from $0 salt_lake_city : ci ) ( to $0 st_petersburg : ci ) ( day $0 tuesday : da ) ) )
atis_1045
i am also interested in a flight that runs from st. louis to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 st_louis : ci ) ( to $0 las_vegas : ci ) ) )
atis_1211
i need information on flights from toronto to san diego
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ) )
atis_1252
i need to know a list of flights from atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ) )
atis_3059
show me all the information about the flight from baltimore to dallas which is listed dl 1055 / dl 405
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( or ( flight_number $0 1055 : fn ) ( flight_number $0 405 : fn ) ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
atis_1010
how much does it cost to fly from atlanta to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3562
show me the latest dinner flight from baltimore to oakland
( argmax $0 ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ) ( departure_time $0 ) )
atis_1627
i'd like a flight from cincinnati to newark airport that arrives on saturday before 6pm
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 cincinnati : ci ) ( to $0 ewr : ap ) ( day_arrival $0 saturday : da ) ) )
atis_2461
on thursday i'd like a flight from st. petersburg to miami
( lambda $0 e ( and ( flight $0 ) ( from $0 st_petersburg : ci ) ( to $0 miami : ci ) ( day $0 thursday : da ) ) )
atis_3072
show me all twa flights please
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ) )
atis_2302
list united flights from denver to san francisco on wednesdays
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
atis_3005
show me all nonstop flights between denver and oakland leaving after noon and arriving after 5pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( > ( arrival_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
atis_2675
please show me all the flights from boston
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ) )
atis_1260
i need to spend much of a day on the ground in atlanta find me an early flight from boston and the lastest possible flight back from atlanta
( 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_5036
yes what flights will be used on july seventh in the morning from atlanta to boston
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( day_number $0 7 : dn ) ( month $0 july : mn ) ) )
atis_2348
new york to las vegas on sunday afternoon
( lambda $0 e ( and ( during_day $0 afternoon : pd ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
atis_1885
is there a flight between san francisco and boston with a stopover at dallas fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
atis_128
are there any flights from denver to atlanta to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
atis_4850
what types of aircraft can i get a first class ticket from philadelphia to dallas
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 philadelphia : ci ) ( to $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_1054
i have two friends that would like to visit me on wednesday here in washington dc one of them lives in denver and the other lives in miami
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( or ( from $1 denver : ci ) ( from $1 miami : ci ) ) ( to $1 washington : ci ) ( day $1 wednesday : da ) ) ) )
atis_3432
show me the flights from boston to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_110
are there any american airlines flights flying into pittsburgh between 12 and 4 in the afternoon
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( > ( arrival_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1600 : ti ) ( to $0 pittsburgh : ci ) ) )
atis_1257
i need to make reservations from denver to boston
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
atis_1105
i need a flight from new york to montreal thursday may six arriving before noon
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( day $0 thursday : da ) ( day_number $0 6 : dn ) ( month $0 may : mn ) ) )
atis_2894
show me all flights from baltimore or denver or pittsburgh that fly to philadelphia
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 baltimore : ci ) ( from $0 denver : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 philadelphia : ci ) ) )
atis_1925
is there an afternoon flight from charlotte to minneapolis around 2pm
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1400 : ti ) ( during_day $0 afternoon : pd ) ( from $0 charlotte : ci ) ( to $0 minneapolis : ci ) ) )
atis_2833
show flights on us air from pittsburgh to oakland connecting through denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ( stop $0 denver : ci ) ) )
atis_1541
i would like to find the least expensive flight from boston to denver
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
atis_2434
on april eighth i would like to book a flight from charlotte to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ( day_number $0 8 : dn ) ( month $0 april : mn ) ) )
atis_3857
what are the flights and prices from la to charlotte for monday morning
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 los_angeles : ci ) ( to $0 charlotte : ci ) ( day $0 monday : da ) ( = ( fare $0 ) $1 ) ) ) )
atis_2699
please show me the flights from atlanta to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
atis_4705
what is the minimum connection time for houston intercontinental
( lambda $0 e ( minimum_connection_time iah : ap $0 ) )
atis_2055
list all flights leaving san francisco monday afternoon arriving in pittsburgh
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
atis_2853
show me airlines between boston and san francisco
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1845
indianapolis to orlando december twenty seventh
( lambda $0 e ( and ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( day_number $0 27 : dn ) ( month $0 december : mn ) ) )
atis_4949
where does flight ua 281 from boston to oakland stop
( lambda $0 e ( stop ( the $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 281 : fn ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ) ) $0 ) )
atis_4376
what ground transportation is available into washington
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 washington : ci ) ) )
atis_4239
what flights from memphis to miami on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 miami : ci ) ( day $0 wednesday : da ) ) )
atis_2970
show me all flights from san diego to new york nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 san_diego : ci ) ( to $0 new_york : ci ) ) )
atis_1301
i want a flight that leaves thursday around 7pm from chicago to kansas city
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1900 : ti ) ( from $0 chicago : ci ) ( to $0 kansas_city : ci ) ( day $0 thursday : da ) ) )
atis_2132
list flights and fares from tacoma to orlando round trip leaving saturday returning next saturday
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 tacoma : ci ) ( to $0 orlando : ci ) ( day $0 saturday : da ) ( = ( fare $0 ) $1 ) ) ) )
atis_1685
i'd like the flights from san jose to nashville on the morning of friday june third
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 san_jose : ci ) ( to $0 nashville : ci ) ( day $0 friday : da ) ( day_number $0 3 : dn ) ( month $0 june : mn ) ) )
atis_466
explain the restriction ap/80
ap_80 : rc
atis_3664
tell me about the m80 aircraft
m80 : ac
atis_4095
what flights are available from denver to dallas fort worth in the afternoons
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 dallas : ci ) ) )
atis_1263
i need to take ten people from phoenix to san diego please give me the flights during week days
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 san_diego : ci ) ( weekday $0 ) ) )
atis_3532
show me the flights on delta to atlanta in the morning
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 morning : pd ) ( to $0 atlanta : ci ) ) )
atis_2506
please give me a flight from pittsburgh to san francisco monday
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
atis_3060
show me all the lufthansa flights between philadelphia and denver
( lambda $0 e ( and ( flight $0 ) ( airline $0 lh : al ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
atis_4298
what flights go from philadelphia to san francisco with a stopover in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_767
give me all the flights from new york to miami round trip with costs less than 466 dollars
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( < ( fare $0 ) 466 : do ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
atis_1394
i will need a car at new york
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 new_york : ci ) ) )
atis_1030
how much is a round trip fare from nashville to seattle
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 nashville : ci ) ( to $1 seattle : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_3885
what are the flights from boston to washington on october fifteenth 1991
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day_number $0 15 : dn ) ( month $0 october : mn ) ( year $0 1991 : yr ) ) )
atis_1348
i want to fly from milwaukee to orlando
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
atis_5025
which united flights from boston to san francisco make connections
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_2249
list the flights arriving in atlanta from baltimore before noon on august fourth
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ( month $0 august : mn ) ) )
atis_1857
information on flights from denver to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
atis_1512
i would like to book a flight from baltimore to newark early in the morning on april ninth
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 newark : ci ) ( day_number $0 9 : dn ) ( month $0 april : mn ) ) )
atis_1709
i'd like to find a us air flight from orlando to cleveland that arrives around 10 o'clock in the evening
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( approx_arrival_time $0 2200 : ti ) ( from $0 orlando : ci ) ( to $0 cleveland : ci ) ) )
atis_3407
show me the flights from baltimore to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 pittsburgh : ci ) ) )
atis_354
do you have a 747 that flies from san francisco to baltimore
( lambda $0 e ( and ( flight $0 ) ( aircraft_code $0 747 : ac ) ( from $0 san_francisco : ci ) ( to $0 baltimore : ci ) ) )
atis_3066
show me all the twa flights from indianapolis to houston that arrive around 11am
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( approx_arrival_time $0 1100 : ti ) ( from $0 indianapolis : ci ) ( to $0 houston : ci ) ) )
atis_2213
list nonstop flights from los angeles to pittsburgh which arrive on monday after 5pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1700 : ti ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ( day_arrival $0 monday : da ) ) )
atis_4023
what does ff mean
ff : al
atis_1543
i would like to fly from atlanta to boston arriving in boston at 5pm
( lambda $0 e ( and ( flight $0 ) ( arrival_time $0 1700 : ti ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
atis_876
ground transportation for st. paul
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 st_paul : ci ) ) )
atis_4926
what's the lowest round trip fare from dallas to atlanta
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 atlanta : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_2209
list nonstop flights from baltimore washington to oakland that arrive between 445 and 515pm
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1645 : ti ) ( < ( arrival_time $0 ) 1715 : ti ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ) )
atis_2597
please list nonstop twa flights from las vegas to new york
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 tw : al ) ( from $0 las_vegas : ci ) ( to $0 new_york : ci ) ) )
atis_2297
list type of aircraft for all flights from charlotte
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 charlotte : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4706
what is the most expensive flight from boston to dallas round trip
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ( round_trip $0 ) ) ( fare $0 ) )
atis_3028
show me all the flights from atlanta to baltimore on any airline on thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
atis_884
ground transportation in phoenix
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 phoenix : ci ) ) )
atis_490
find any flight from boston to oakland stopping in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ( stop $0 denver : ci ) ) )
atis_3414
show me the flights from boston to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_4635
what is the ground transportation from boston airport to boston downtown
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
atis_3475
show me the flights from oakland to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 denver : ci ) ) )
atis_3637
show united flights between pittsburgh and baltimore
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
atis_1142
i need a flight on american airlines from miami to chicago that arrives around 5pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( approx_arrival_time $0 1700 : ti ) ( from $0 miami : ci ) ( to $0 chicago : ci ) ) )
atis_822
give me the flights from memphis to las vegas nonstop
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ) )
atis_492
find flight from detroit to san diego on tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 detroit : ci ) ( to $0 san_diego : ci ) ( day $0 tuesday : da ) ) )
atis_665
flights from newark new jersey to minneapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 minneapolis : ci ) ) )
atis_4659
what is the latest flight from milwaukee to seattle tomorrow
( argmax $0 ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 seattle : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )