qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_581
flight leaving from oakland to salt lake city
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_3202
show me flights from seattle to san francisco that leave after 5pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 seattle : ci ) ( to $0 san_francisco : ci ) ) )
atis_2394
okay all right do you have a flight on united airlines from atlanta to washington
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
atis_3784
what are all the flights available between pittsburgh and dallas fort worth
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 dallas : ci ) ) )
atis_1431
i would like a flight on continental airlines on august twentieth from washington to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 washington : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 20 : dn ) ( month $0 august : mn ) ) )
atis_3305
show me the cheapest fares from miami to new york leaving on a sunday
( min $0 ( exists $1 ( and ( from $1 miami : ci ) ( to $1 new_york : ci ) ( day $1 sunday : da ) ( = ( fare $1 ) $0 ) ) ) )
atis_4753
what is tpa
tpa : ap
atis_4500
what is the cost of a first class ticket from dallas fort worth to san francisco
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4802
what northwest flights leave denver before noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
atis_2551
please list all flights between indianapolis and orlando on the twenty seventh of december
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( day_number $0 27 : dn ) ( month $0 december : mn ) ) )
atis_2951
show me all flights from phoenix to milwaukee on american airlines on wednesday
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
atis_3526
show me the flights next tuesday between philadelphia and san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ) )
atis_2772
show all flights from pittsburgh to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
atis_4745
what is the smallest aircraft available to fly on from pittsburgh to baltimore
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) ( capacity $0 ) )
atis_2440
on continental airlines any class service from san francisco to pittsburgh
( lambda $0 e ( and ( airline $0 co : al ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ) )
atis_2959
show me all flights from pittsburgh to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
atis_4447
what is the cheapest fare from dallas to denver round trip
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 denver : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_980
how many flights go from dallas to baltimore on july nineteenth
( count $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day_number $0 19 : dn ) ( month $0 july : mn ) ) )
atis_1522
i would like to book a flight on june first from los angeles to pittsburgh in the late afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( during_day $0 afternoon : pd ) ( from $0 los_angeles : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 1 : dn ) ( month $0 june : mn ) ) )
atis_2779
show all nonstop flights from atlanta to san francisco
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ) )
atis_1581
i would like to fly us air from orlando to cleveland in the late evening what do you have available
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( during_day $0 late_evening : pd ) ( from $0 orlando : ci ) ( to $0 cleveland : ci ) ) )
atis_3764
what airlines have nonstop early afternoon flights from boston to denver
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( during_day $1 early : pd ) ( during_day $1 afternoon : pd ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_3990
what continental flights go from chicago to seattle before 10am in the morning that have a meal
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 co : al ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ) )
atis_1738
i'd like to fly from san francisco to boston with a stopover in dallas fort worth and i want to fly on delta airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( stop $0 dallas : ci ) ) )
atis_2996
show me all flights to dallas from san francisco 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_1652
i'd like a one way ticket from milwaukee to orlando either wednesday evening or thursday morning
( lambda $0 e ( and ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( or ( and ( day $0 wednesday : da ) ( during_day $0 evening : pd ) ) ( and ( day $0 thursday : da ) ( during_day $0 morning : pd ) ) ) ) )
atis_4375
what ground transportation is available in san francisco
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_francisco : ci ) ) )
atis_3001
show me all ground transportation in washington dc
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 washington : ci ) ) )
atis_1185
i need flight information for flights departing from cleveland going back to milwaukee wednesday after 5pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 cleveland : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
atis_1752
i'd like to go from detroit to san diego on wednesday evening june second
( lambda $0 e ( and ( during_day $0 evening : pd ) ( from $0 detroit : ci ) ( to $0 san_diego : ci ) ( day $0 wednesday : da ) ( day_number $0 2 : dn ) ( month $0 june : mn ) ) )
atis_230
can you show me the list of flights that fly from washington to san francisco via dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_3528
show me the flights on continental from indianapolis to san diego in the afternoon tomorrow
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( during_day $0 afternoon : pd ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ( tomorrow $0 ) ) )
atis_283
could you please find me a nonstop flight from atlanta to baltimore on a boeing 757 arriving at 7pm
( lambda $0 e ( and ( flight $0 ) ( manufacturer $0 boeing : mf ) ( nonstop $0 ) ( aircraft_code $0 757 : ac ) ( arrival_time $0 1900 : ti ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
atis_1749
i'd like to go from boston to san francisco stopping in pittsburgh
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 pittsburgh : ci ) ) )
atis_2969
show me all flights from san diego to miami with a stop in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 miami : ci ) ( stop $0 denver : ci ) ) )
atis_1338
i want to fly from cleveland to san diego tomorrow and stop in indianapolis
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 san_diego : ci ) ( stop $0 indianapolis : ci ) ( tomorrow $0 ) ) )
atis_4812
what stops does dl 838 make from san francisco to atlanta
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( flight_number $1 838 : fn ) ( from $1 san_francisco : ci ) ( to $1 atlanta : ci ) ( stop $1 $0 ) ) ) )
atis_4881
what's the cheapest of the dallas to atlanta flights which are after 2 in the afternoon
( argmin $0 ( and ( flight $0 ) ( > ( departure_time $0 ) 1400 : ti ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
atis_3449
show me the flights from denver to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 las_vegas : ci ) ) )
atis_1829
i'm traveling to dallas from philadelphia
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
atis_3726
what airline is ea the abbreviation for
ea : al
atis_3073
show me all united airlines first class flights
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ) )
atis_1031
how much is a round trip first class fare between boston and washington
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( class_type $1 first : cl ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_4274
what flights go from boston to denver before 10am
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_4551
what is the earliest flight from memphis to las vegas
( argmin $0 ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ) ( departure_time $0 ) )
atis_2608
please list the flight schedule from baltimore to san francisco on friday nights
( lambda $0 e ( exists $1 ( and ( during_day $1 late : pd ) ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( day $1 friday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_88
american flight 4400 from cincinnati to houston
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( flight_number $0 4400 : fn ) ( from $0 cincinnati : ci ) ( to $0 houston : ci ) ) )
atis_2179
list flights from phoenix to detroit on thursday june twenty fourth
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 detroit : ci ) ( day $0 thursday : da ) ( day_number $0 24 : dn ) ( month $0 june : mn ) ) )
atis_2345
need a flight from pittsburgh to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
atis_3673
tell me the flights that leave philadelphia and go to dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
atis_1702
i'd like to buy a coach class ticket from denver to atlanta with a stopover in pittsburgh
( lambda $0 e ( and ( class_type $0 coach : cl ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
atis_4309
what flights go from tampa to charlotte on sunday
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
atis_648
flights from long beach to nashville
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 nashville : ci ) ) )
atis_4129
what flights are there arriving in chicago on continental after 11pm
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( arrival_time $0 ) 2300 : ti ) ( to $0 chicago : ci ) ) )
atis_2412
okay i'd like a flight from boston to san francisco that leaves before 8am
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_995
how many seats in a 734
( capacity 734 : ac )
atis_3083
show me continental flights leaving chicago on saturday morning
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( day $0 saturday : da ) ) )
atis_4257
what flights from seattle to salt lake city
( lambda $0 e ( and ( flight $0 ) ( from $0 seattle : ci ) ( to $0 salt_lake_city : ci ) ) )
atis_3359
show me the fare from dallas to san francisco
( lambda $0 e ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1118
i need a flight from phoenix to detroit leaving monday evening
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 phoenix : ci ) ( to $0 detroit : ci ) ( day $0 monday : da ) ) )
atis_2118
list daily flights from boston to oakland using united airlines
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
atis_3756
what airlines fly into salt lake city
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( to $1 salt_lake_city : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_2433
on a flight from san francisco to atlanta that leaves before 8am is there such a flight
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 san_francisco : ci ) ( to $0 atlanta : ci ) ) )
atis_3640
sunday's flights between tampa and charlotte
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
atis_667
flights from newark to cleveland 5 o'clock pm daily
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( departure_time $0 1700 : ti ) ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
atis_1759
i'd like to know the earliest flight from boston to atlanta
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( departure_time $0 ) )
atis_1606
i would like to see the daily flights from baltimore to philadelphia
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
atis_2294
list the total number of flights between all airports by delta
( count $0 ( and ( flight $0 ) ( airline $0 dl : al ) ) )
atis_2552
please list all flights from atlanta to baltimore on wednesday and thursday
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( or ( day $0 wednesday : da ) ( day $0 thursday : da ) ) ) )
atis_1309
i want an early morning flight from boston to philadelphia
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
atis_2450
on monday i would like to travel from charlotte north carolina to phoenix arizona i would like to arrive in phoenix before 4pm
( lambda $0 e ( and ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 charlotte : ci ) ( to $0 phoenix : ci ) ( day $0 monday : da ) ) )
atis_2700
please 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_3277
show me round trips from houston to las vegas nonstop
( lambda $0 e ( and ( nonstop $0 ) ( round_trip $0 ) ( from $0 houston : ci ) ( to $0 las_vegas : ci ) ) )
atis_4346
what flights return from denver to philadelphia on a saturday
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
atis_900
hi i need to go from newark to nashville on american airlines leaving around 630pm
( lambda $0 e ( and ( airline $0 aa : al ) ( approx_departure_time $0 1830 : ti ) ( from $0 newark : ci ) ( to $0 nashville : ci ) ) )
atis_3442
show me the flights from dallas to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
atis_4397
what is cvg
cvg : ap
atis_4301
what flights go from pittsburgh to denver after 2pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1400 : ti ) ( from $0 pittsburgh : ci ) ( to $0 denver : ci ) ) )
atis_2533
please give me the flight times the morning on united airlines for september twentieth from philadelphia to san francisco
( lambda $0 e ( exists $1 ( and ( airline $1 ua : al ) ( during_day $1 morning : pd ) ( from $1 philadelphia : ci ) ( to $1 san_francisco : ci ) ( day_number $1 20 : dn ) ( month $1 september : mn ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_4997
which delta flights depart from san francisco heading toward boston after 12 noon
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
atis_3731
what airline is yx
yx : al
atis_1389
i want to travel from philadelphia to san francisco with a stopover in dallas
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
atis_2722
repeating leaving denver to san francisco before 10am what type of aircraft is used
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_2923
show me all flights from denver to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_2689
please show me flights from denver to san francisco on wednesday after 1300 hours
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1300 : ti ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 wednesday : da ) ) )
atis_1104
i need a flight from new york city to montreal tomorrow
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( tomorrow $0 ) ) )
atis_325
delta flights to san francisco please
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( to $0 san_francisco : ci ) ) )
atis_345
display flights from dallas to atlanta which depart between 2pm and 6pm
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1400 : ti ) ( < ( departure_time $0 ) 1800 : ti ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ) )
atis_2819
show flights from new york city to las vegas
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ) )
atis_1803
i'm interested in a flight from dallas to washington and i'm also interested in going to baltimore
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 washington : ci ) ) )
atis_23
all flights and fares from dallas
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( = ( fare $0 ) $1 ) ) ) )
atis_1
a breakfast flight from denver to san francisco please
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_2926
show me all flights from kansas city to chicago on june sixteenth arriving around 7 o'clock in the evening
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1900 : ti ) ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day_number $0 16 : dn ) ( month $0 june : mn ) ) )
atis_4763
what kind of aircraft do you have flying from boston to san francisco on august twenty seventh
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( day_number $1 27 : dn ) ( month $1 august : mn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
atis_708
from denver to baltimore
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
atis_3377
show me the flights arriving around noon in baltimore from denver
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1200 : ti ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
atis_3443
show me the flights from dallas to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) )
atis_2160
list flights from kansas city to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 denver : ci ) ) )
atis_555
flight from dallas to milwaukee
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 milwaukee : ci ) ) )
atis_1824
i'm requesting flight information on a flight 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 ) ) )