qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_4391
what is american's last flight from boston to washington dc on july twenty first
( argmax $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day_number $0 21 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) )
atis_593
flights between baltimore and washington dc
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 washington : ci ) ) )
atis_4909
what's the first flight from boston to san francisco
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_2563
please list all flights leaving on thursday morning from new york city to toronto
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 new_york : ci ) ( to $0 toronto : ci ) ( day $0 thursday : da ) ) )
atis_260
cheapest round trip airfare from tacoma to orlando
( min $0 ( exists $1 ( and ( from $1 tacoma : ci ) ( to $1 orlando : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_2880
show me all flights between boston and washington
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
atis_3391
show me the flights between houston and orlando
( lambda $0 e ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 orlando : ci ) ) )
atis_3910
what are the flights from memphis to tacoma
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ) )
atis_4971
which airlines fly from boston to san francisco
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_4060
what evening flights do you have available from baltimore to philadelphia
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
atis_4615
what is the first flight from atlanta to boston leaving on thursday september fifth
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( day $0 thursday : da ) ( day_number $0 5 : dn ) ( month $0 september : mn ) ) ( departure_time $0 ) )
atis_1966
kansas city to las vegas economy
( lambda $0 e ( and ( economy $0 ) ( from $0 kansas_city : ci ) ( to $0 las_vegas : ci ) ) )
atis_75
all round trip flights between new york and miami that are first class
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 first : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
atis_3583
show me the most expensive fare
( max $0 ( exists $1 ( = ( fare $1 ) $0 ) ) )
atis_3635
show the flights from san francisco to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ) )
atis_4865
what's a flight that goes from baltimore to seattle
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 seattle : ci ) ) )
atis_3520
show me the flights going from pittsburgh to san francisco on monday
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
atis_2416
okay i'm looking for a flight from tampa to st. louis leaving before 10am any day
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 tampa : ci ) ( to $0 st_louis : ci ) ) )
atis_3972
what are the seating capacities of planes between pittsburgh and baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 pittsburgh : ci ) ( to $1 baltimore : ci ) ( = ( capacity $1 ) $0 ) ) ) )
atis_2801
show flights between denver and san francisco for september seventeenth
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 17 : dn ) ( month $0 september : mn ) ) )
atis_5003
which flights are serviced by american airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ) )
atis_1570
i would like to fly from pittsburgh to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
atis_2653
please list the wednesday american airline flights from milwaukee to san jose
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 san_jose : ci ) ( day $0 wednesday : da ) ) )
atis_3431
show me the flights from boston to san francisco that stop in dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_4555
what is the earliest flight from pittsburgh to san francisco
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_1840
in flight meal oakland to philadelphia saturday
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 oakland : ci ) ( to $1 philadelphia : ci ) ( day $1 saturday : da ) ( = ( meal $1 ) $0 ) ) ) )
atis_1247
i need to go from boston to dallas
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
atis_2001
list all day time flights from pittsburgh to boston
( lambda $0 e ( and ( flight $0 ) ( during_day $0 daytime : pd ) ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ) )
atis_3249
show me nonstop flights from toronto to st. petersburg
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 toronto : ci ) ( to $0 st_petersburg : ci ) ) )
atis_2468
on usa air how many flights leaving oakland on july twenty seventh to boston nonstop
( count $0 ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 us : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ( day_number $0 27 : dn ) ( month $0 july : mn ) ) )
atis_2408
okay i need to see economy flights on united between dallas and baltimore
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( airline $0 ua : al ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
atis_3211
show me flights leaving from denver colorado to pittsburgh pennsylvania on wednesdays after 5pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
atis_2668
please show me airlines with service from boston to denver
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_4244
what flights from montreal to las vegas on saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 las_vegas : ci ) ( day $0 saturday : da ) ) )
atis_986
how many passengers can a boeing 737 hold
( capacity boeing : mf )
atis_2082
list all round trip fares from pittsburgh to washington dc
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 pittsburgh : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2738
round trip flights between houston and las vegas
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 houston : ci ) ( to $0 las_vegas : ci ) ) )
atis_2632
please list the flights from pittsburgh to baltimore arriving may seventh
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number_arrival $0 7 : dn ) ( month_arrival $0 may : mn ) ) )
atis_3653
tell me about flights leaving from atlanta and going to charlotte north carolina next monday i need to know about flights that arrive in charlotte between 415 and 530pm
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1615 : ti ) ( < ( arrival_time $0 ) 1730 : ti ) ( from $0 atlanta : ci ) ( to $0 charlotte : ci ) ( day $0 monday : da ) ) )
atis_2424
okay show me all the flights to baltimore
( lambda $0 e ( and ( flight $0 ) ( to $0 baltimore : ci ) ) )
atis_101
and how much does it cost to travel from boston airport to downtown
( lambda $0 e ( exists $1 ( and ( to_city $1 boston : ci ) ( from_airport $1 bos : ap ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_3646
tell me about flights from charlotte to atlanta next tuesday
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
atis_2043
list all flights going from boston to atlanta after 6 o'clock on wednesday and before 7 o'clock am on thursday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( < ( departure_time $0 ) 700 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ( day $0 thursday : da ) ) )
atis_1486
i would like information on ground transportation in the city of atlanta from airport to downtown
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ( from_airport $0 atl : ap ) ) )
atis_594
flights between boston and philadelphia that arrive after 2 o'clock and before 5 o'clock on tuesday
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 200 : ti ) ( < ( arrival_time $0 ) 500 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ( day $0 tuesday : da ) ) )
atis_3897
what are the flights from denver to baltimore on united airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
atis_946
how many booking classes are there
( count $0 ( booking_class : t $0 ) )
atis_1901
is there a flight leaving at 1505 from pittsburgh to baltimore on july twenty fifth 1991
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1505 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 25 : dn ) ( month $0 july : mn ) ( year $0 1991 : yr ) ) )
atis_1258
i need to rent a car at tampa
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 tampa : ci ) ) )
atis_1683
i'd like the earliest flight information from boston to san francisco with a meal
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_4081
what flights are available friday from philadelphia to oakland
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 oakland : ci ) ( day $0 friday : da ) ) )
atis_2158
list flights from indianapolis to memphis on monday
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 memphis : ci ) ( day $0 monday : da ) ) )
atis_1455
i would like an afternoon flight leaving tuesday san diego to indianapolis
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
atis_506
find me all the round trip flights from burbank to milwaukee stopping in st. louis
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 burbank : ci ) ( to $0 milwaukee : ci ) ( stop $0 st_louis : ci ) ) )
atis_1453
i would like an afternoon flight from denver colorado to dallas texas
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 dallas : ci ) ) )
atis_524
find the earliest breakfast flight from boston to oakland
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) ( departure_time $0 ) )
atis_1205
i need information on a flight from washington to fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 fort_worth : ci ) ) )
atis_4308
what flights go from seattle to boston via minneapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 seattle : ci ) ( to $0 boston : ci ) ( stop $0 minneapolis : ci ) ) )
atis_2109
list all us air flights from miami to cleveland leaving on sunday afternoon
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( during_day $0 afternoon : pd ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ( day $0 sunday : da ) ) )
atis_1175
i need an early flight from dallas to houston
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) )
atis_4833
what type of aircraft is used for the american flight leaving at 419pm
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( departure_time $1 1619 : ti ) ( from $1 cincinnati : ci ) ( to $1 burbank : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_4097
what flights are available from denver to philadelphia on wednesday
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) )
atis_1251
i need to go to san diego from toronto but i want to stopover in denver
( lambda $0 e ( and ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 denver : ci ) ) )
atis_46
all flights from montreal less than 150 dollars
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 150 : do ) ( from $0 montreal : ci ) ) )
atis_4275
what flights go from boston to orlando
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 orlando : ci ) ) )
atis_3164
show me flights from los angeles to pittsburgh on monday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
atis_3963
what are the prices of the flights from atlanta to dallas in the morning
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 morning : pd ) ( from $1 atlanta : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_2567
please list all flights on united airlines out of denver before noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
atis_3677
thank you for that information now i would like to book a flight from philadelphia to boston on the night of april sixteen around 9 o'clock
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ( during_day $0 late : pd ) ( month $0 april : mn ) ( approx_departure_time $0 2100 : ti ) ( day_number $0 16 : dn ) ) )
atis_4196
what flights do you have from newark new jersey to ontario california that connect in phoenix
( lambda $0 e ( and ( stop $0 phoenix : ci ) ( flight $0 ) ( to $0 ontario : ci ) ( from $0 newark : ci ) ) )
atis_147
are there any nonstop flights from san francisco to boston on thursdays
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 thursday : da ) ) )
atis_2968
show me all flights from san diego to los angeles
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 los_angeles : ci ) ) )
atis_2572
please list all the arriving and departing flights from general mitchell international
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 mke : ap ) ( to $0 mke : ap ) ) ) )
atis_4456
what is the cheapest flight from atlanta to pittsburgh one way
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
atis_4665
what is the latest flight from washington dc to denver
( argmax $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
atis_2073
list all nonstop flights from los angeles to pittsburgh before 5pm on tuesday
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( departure_time $0 ) 1700 : ti ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
atis_1786
i'd like to see the fare code again qx
qx : fb
atis_2084
list all round trip flights between indianapolis and orlando on the twenty seventh of december
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( day_number $0 27 : dn ) ( month $0 december : mn ) ) )
atis_4225
what flights from detroit to st. petersburg
( lambda $0 e ( and ( flight $0 ) ( from $0 detroit : ci ) ( to $0 st_petersburg : ci ) ) )
atis_4105
what flights are available from pittsburgh to oakland airport
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 oak : ap ) ) )
atis_1145
i need a flight on thursday before 8am from oakland to salt lake city
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 thursday : da ) ) )
atis_2241
list the earliest flights from st. paul to san jose
( argmin $0 ( and ( flight $0 ) ( from $0 st_paul : ci ) ( to $0 san_jose : ci ) ) ( departure_time $0 ) )
atis_1312
i want information on flights from atlanta to washington dc i want to leave wednesday after 4pm or thursday before 9am
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( or ( and ( > ( departure_time $0 ) 1600 : ti ) ( day $0 wednesday : da ) ) ( and ( < ( departure_time $0 ) 900 : ti ) ( day $0 thursday : da ) ) ) ) )
atis_2190
list flights from san francisco to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ) )
atis_312
daily flights from newark to cleveland departing 5 o'clock pm
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( departure_time $0 1700 : ti ) ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
atis_3339
show me the direct flights from san francisco to boston
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_4512
what is the cost of the air taxi operation at philadelphia international airport
( lambda $0 e ( exists $1 ( and ( air_taxi_operation $1 ) ( from_airport $1 phl : ap ) ( = ( ground_fare $1 ) $0 ) ) ) )
atis_3295
show me the airlines with first class flights
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 first : cl ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_2410
okay i would like to fly from atlanta to philadelphia
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
atis_4624
what is the flight number for the continental flight which leaves denver at 1220pm and goes to san francisco
( lambda $0 e ( exists $1 ( and ( airline $1 co : al ) ( departure_time $1 1220 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( flight_number $1 ) $0 ) ) ) )
atis_1192
i need flight numbers for those flights departing on thursday before 8am from oakland going to salt lake city
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 800 : ti ) ( from $1 oakland : ci ) ( to $1 salt_lake_city : ci ) ( day $1 thursday : da ) ( = ( flight_number $1 ) $0 ) ) ) )
atis_4053
what does ua stand for
ua : al
atis_3365
show me the first class and coach flights between jfk and orlando
( lambda $0 e ( and ( flight $0 ) ( or ( class_type $0 first : cl ) ( class_type $0 coach : cl ) ) ( from $0 jfk : ap ) ( to $0 orlando : ci ) ) )
atis_3783
what are all the available meals
( lambda $0 e ( meal_code $0 ) )
atis_1369
i want to know the cheapest way to fly from denver to oakland
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) ( fare $0 ) )
atis_4693
what is the least expensive one way ticket from atlanta to denver leaving on october twelfth
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( day_number $1 12 : dn ) ( month $1 october : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_3218
show me flights to dallas from san francisco and atlanta and pittsburgh
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 san_francisco : ci ) ( from $0 pittsburgh : ci ) ( from $0 atlanta : ci ) ) ( to $0 dallas : ci ) ) )
atis_2014
list all flights from baltimore to atlanta after 12 noon thursday
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
atis_1557
i would like to fly from dallas to denver on the morning of august twenty seventh leaving at 650
( lambda $0 e ( and ( departure_time $0 650 : ti ) ( month $0 august : mn ) ( to $0 denver : ci ) ( from $0 dallas : ci ) ( flight $0 ) ( during_day $0 morning : pd ) ( day_number $0 27 : dn ) ) )
atis_4094
what flights are available from denver to baltimore first class on united airlines arriving may seventh before noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 may : mn ) ( day_number_arrival $0 7 : dn ) ) )