qid
stringlengths
6
9
source
stringlengths
7
216
target
stringlengths
6
409
atis_3143
show me flights from boston to washington on monday
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day $0 monday : da ) ) )
atis_2609
please list the flight times for boston to pittsburgh
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_2227
list the alaska airline flights from burbank
( lambda $0 e ( and ( flight $0 ) ( airline $0 as : al ) ( from $0 burbank : ci ) ) )
atis_2002
list all direct flights from boston to denver
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
atis_1584
i would like to know if i fly on american flight number 813 from boston to oakland if i will stop enroute at another city
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 813 : fn ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( stop $1 $0 ) ) ) )
atis_1517
i would like to book a flight from chicago to seattle on june fourth
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day_number $0 4 : dn ) ( month $0 june : mn ) ) )
atis_4212
what flights from atlanta to toronto
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 toronto : ci ) ) )
atis_3148
show me flights from dallas to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ) )
atis_1072
i need a flight from baltimore to dallas tomorrow morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( tomorrow $0 ) ) )
atis_2691
please show me flights from pittsburgh to atlanta on wednesday morning serving breakfast
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
atis_1799
i'm flying from boston to dallas
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
atis_2820
show flights from philadelphia to boston
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) )
atis_4242
what flights from milwaukee to san jose on wednesday on american airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 san_jose : ci ) ( day $0 wednesday : da ) ) )
atis_2633
please list the flights from st. paul to kansas city on friday night that serve meals
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( during_day $0 late : pd ) ( from $0 st_paul : ci ) ( to $0 kansas_city : ci ) ( day $0 friday : da ) ) )
atis_3958
what are the nonstop flights between houston and memphis
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 houston : ci ) ( to $0 memphis : ci ) ) )
atis_3404
show me the flights from baltimore to oakland please
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ) )
atis_4800
what northwest airline 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_3246
show me nonstop flights from miami to new york with coach class fares
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( class_type $0 coach : cl ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ) )
atis_4505
what is the cost of a round trip ticket flying from boston to dallas dallas to oakland leaving july first
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( stop $1 dallas : ci ) ( day_number $1 1 : dn ) ( month $1 july : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_2684
please show me flights from atlanta to oakland california on thursday after 1600 hours
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1600 : ti ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ( day $0 thursday : da ) ) )
atis_115
are there any flights available from baltimore to dallas monday afternoon
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 monday : da ) ) )
atis_4384
what is 73s
73s : ac
atis_4898
what's the earliest flight from nashville to tacoma on american on tuesday the eighteenth of may
( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 nashville : ci ) ( to $0 tacoma : ci ) ( day $0 tuesday : da ) ( day_number $0 18 : dn ) ( month $0 may : mn ) ) ( departure_time $0 ) )
atis_4614
what is the first flight from atlanta to baltimore that serves lunch
( argmin $0 ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
atis_3702
we're going from denver to san francisco
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
atis_3596
show me the one way flights from atlanta to pittsburgh
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) )
atis_337
display all flights from denver to san francisco on august seven
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 7 : dn ) ( month $0 august : mn ) ) )
atis_2687
please show me flights from dallas to atlanta on monday
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 monday : da ) ) )
atis_4142
what flights are there from boston to denver on monday morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) )
atis_1973
leaving washington going to san francisco the latest flight
( argmax $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_753
give me a flight from philadelphia to denver on sunday
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 sunday : da ) ) )
atis_1938
is there ground transportation available at the salt lake city airport
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 slc : ap ) ) )
atis_673
flights from oakland to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 san_francisco : ci ) ) )
atis_2712
please tell me the times of the flights between boston and baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 baltimore : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
atis_3511
show me the flights from st. petersburg to toronto that arrive before noon
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 st_petersburg : ci ) ( to $0 toronto : ci ) ) )
atis_1201
i need information for ground transportation denver colorado
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
atis_4260
what flights from st. paul to kansas city on friday with breakfast served
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 st_paul : ci ) ( to $0 kansas_city : ci ) ( day $0 friday : da ) ) )
atis_424
does flight ua 270 from denver to philadelphia have a meal
( lambda $0 e ( and ( has_meal $0 ) ( to $0 philadelphia : ci ) ( from $0 denver : ci ) ( flight $0 ) ( airline $0 ua : al ) ( flight_number $0 270 : fn ) ) )
atis_4421
what is restriction ap57
ap_57 : rc
atis_3715
what afternoon flights are available from denver to san francisco on wednesdays
( 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_664
flights from newark new jersey to cleveland
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
atis_350
do any of the san francisco to boston flights leave on friday
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 friday : da ) ) )
atis_447
does us air fly from dc to dallas
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 washington : ci ) ( to $0 dallas : ci ) ) )
atis_709
from denver to pittsburgh on april twenty first i need the cheapest flight
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 21 : dn ) ( month $0 april : mn ) ) ( fare $0 ) )
atis_1924
is there a united flight from baltimore to san francisco on the morning of august twenty seventh
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) )
atis_1221
i need the earliest flight from denver to boston that serves dinner
( argmin $0 ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
atis_3922
what are the flights from philadelphia to dallas on october first 1991
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( month $0 october : mn ) ( year $0 1991 : yr ) ( day_number $0 1 : dn ) ) )
atis_2766
show all flights between san francisco and philadelphia for september fifteenth
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 philadelphia : ci ) ( day_number $0 15 : dn ) ( month $0 september : mn ) ) )
atis_387
do you have ground transportation between airport and downtown in boston
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
atis_3547
show me the flights to love field from all other airports
( lambda $0 e ( and ( flight $0 ) ( to $0 dal : ap ) ( exists $1 ( and ( airport $1 ) ( from $0 $1 ) ) ) ) )
atis_1337
i want to fly from boston to san francisco
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
atis_4547
what is the earliest flight from boston to san francisco
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) )
atis_3205
show me flights from washington dc to san francisco with a stopover in denver
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
atis_1608
i would like to see the economy fares for pittsburgh to philadelphia
( lambda $0 e ( exists $1 ( and ( economy $1 ) ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_830
give me the flights from phoenix to milwaukee on american airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ) )
atis_4762
what is yyz
yyz : ap
atis_3418
show me the flights from boston to pittsburgh leaving wednesdays and thursdays
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( or ( day $0 wednesday : da ) ( day $0 thursday : da ) ) ) )
atis_1734
i'd like to fly from philadelphia to dallas through atlanta
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
atis_5022
which united airlines flight flies across this continent and leaves from boston goes to dallas and 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_4979
which airlines go from san francisco to washington by way of indianapolis
( lambda $0 e ( exists $1 ( and ( from $1 san_francisco : ci ) ( to $1 washington : ci ) ( stop $1 indianapolis : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1006
how much does flight ua 281 from boston to denver cost
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 281 : fn ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_400
does any airline have a jet flight between pittsburgh and baltimore
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( jet $1 ) ( from $1 pittsburgh : ci ) ( to $1 baltimore : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_1253
i need to know if there are any direct flights from st. petersburg florida to tacoma washington leaving preferably tomorrow morning
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 morning : pd ) ( from $0 st_petersburg : ci ) ( to $0 tacoma : ci ) ( tomorrow $0 ) ) )
atis_21
all fares and flights from philadelphia
( lambda $0 e ( lambda $1 e ( and ( flight $1 ) ( from $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
atis_1305
i want a return flight from washington to dallas on american airlines
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 washington : ci ) ( to $0 dallas : ci ) ) )
atis_237
can you tell me the afternoon nonstop flights departing from atlanta to boston
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
atis_3107
show me flights arriving in baltimore from pittsburgh between 4 and 5pm
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1600 : ti ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
atis_3665
tell me about the type of aircraft called an m80
m80 : ac
atis_671
flights from newark to tampa on friday on us air
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 newark : ci ) ( to $0 tampa : ci ) ( day $0 friday : da ) ) )
atis_845
give me the flights with the fares from indianapolis to orlando on december twenty seventh
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ( day_number $0 27 : dn ) ( month $0 december : mn ) ( = ( fare $0 ) $1 ) ) ) )
atis_4601
what is the fare on november seventh going one way from dallas to san francisco
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 dallas : ci ) ( to $1 san_francisco : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
atis_1353
i want to fly philadelphia to dallas on july eighth
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day_number $0 8 : dn ) ( month $0 july : mn ) ) )
atis_4871
what's the cheapest fare for a round trip from indianapolis to orlando on december twenty seventh
( min $0 ( exists $1 ( and ( from $1 indianapolis : ci ) ( to $1 orlando : ci ) ( day_number $1 27 : dn ) ( month $1 december : mn ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
atis_3451
show me the flights from denver to philadelphia and the flights from pittsburgh to philadelphia
( lambda $0 e ( or ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) ) ) )
atis_869
ground transportation atl to atlanta
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ( from_airport $0 atl : ap ) ) )
atis_3686
the latest flight from baltimore to oakland please and i'd like a meal with that
( argmax $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ) ( departure_time $0 ) )
atis_604
flights from atlanta to washington dc on thursday morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
atis_3868
what are the flights dallas to boston on monday morning
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
atis_902
hi i'd like a flight from tampa to montreal
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 montreal : ci ) ) )
atis_2904
show me all flights from boston to detroit
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 detroit : ci ) ) )
atis_1747
i'd like to go from boston to denver at 9 o'clock saturday night
( lambda $0 e ( and ( departure_time $0 2100 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 saturday : da ) ( during_day $0 late : pd ) ) )
atis_3310
show me the cheapest flights from atlanta to denver
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
atis_2051
list all flights leaving denver on continental on sunday after 2134
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( > ( departure_time $0 ) 2134 : ti ) ( from $0 denver : ci ) ( day $0 sunday : da ) ) )
atis_4047
what does the fare code qw mean
qw : fb
atis_3928
what are the flights from san francisco to denver
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) )
atis_2757
shortest flights from nashville to st. petersburg
( argmin $0 ( and ( flight $0 ) ( from $0 nashville : ci ) ( to $0 st_petersburg : ci ) ) ( time_elapsed $0 ) )
atis_5015
which flights on united airlines and northwest go through denver
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( stop $0 denver : ci ) ) )
atis_4417
what is ord
ord : ap
atis_696
flights on sunday from tampa to charlotte
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
atis_1179
i need flight and airline information for a flight from denver to salt lake city on monday departing after 5pm
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 salt_lake_city : ci ) ( day $0 monday : da ) ( = ( airline : e $0 ) $1 ) ) ) )
atis_4868
what's the airport at orlando
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 orlando : ci ) ) )
atis_2173
list flights from ontario california to orlando
( lambda $0 e ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 orlando : ci ) ) )
atis_1090
i need a flight from indianapolis to houston on twa
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 indianapolis : ci ) ( to $0 houston : ci ) ) )
atis_848
give me the latest flight tomorrow on united airlines from milwaukee to tacoma
( argmax $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 milwaukee : ci ) ( to $0 tacoma : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
atis_1769
i'd like to leave atlanta in the afternoon and arrive in philadelphia at 5pm
( lambda $0 e ( and ( arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ) )
atis_3808
what are the cheapest flights from denver to pittsburgh that stop in atlanta
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) ( fare $0 ) )
atis_3745
what airlines fly from boston to pittsburgh
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
atis_605
flights from atlanta to washington dc
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
atis_174
can i fly from boston to baltimore washington
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) )
atis_2269
list the flights from salt lake city to st. petersburg
( lambda $0 e ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 st_petersburg : ci ) ) )