qid
stringlengths 6
9
| source
stringlengths 6
259
| target
stringlengths 6
409
| anonymized_target
stringlengths 16
454
|
---|---|---|---|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_2918
|
show me all flights from denver to philadelphia on saturday after sunday which leave after noon
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ( day $0 sunday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_4506
|
what is the cost of a ticket going from denver to boston july twenty fifth 1991
|
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 boston : ci ) ( day_number $1 25 : dn ) ( month $1 july : mn ) ( year $1 1991 : yr ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( year $1 ANON_ENTITY : yr ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3346
|
show me the earliest flight on august second from boston to denver that serves a meal
|
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) ( departure_time $0 ) )
|
atis_3238
|
show me ground transportation information for dallas fort worth
|
( lambda $0 e ( and ( to_city $0 dallas : ci ) ( ground_transport $0 ) ) )
|
( lambda $0 e ( and ( to_city $0 ANON_ENTITY : ci ) ( ground_transport $0 ) ) )
|
atis_134
|
are there any flights from milwaukee to tacoma on friday june eleventh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 tacoma : ci ) ( day $0 friday : da ) ( day_number $0 11 : dn ) ( month $0 june : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_1103
|
i need a flight from new york city to montreal thursday may six
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 montreal : ci ) ( day $0 thursday : da ) ( day_number $0 6 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_1324
|
i want to fly dallas to san francisco on monday july eighth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ( day_number $0 8 : dn ) ( month $0 july : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_2655
|
please repeat the flight departures for monday august nineteenth from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ( day_number $0 19 : dn ) ( month $0 august : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3879
|
what are the flights from boston to denver on tuesday october fifteenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 tuesday : da ) ( day_number $0 15 : dn ) ( month $0 october : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3895
|
what are the flights from dallas to san francisco on tuesday october first
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ( day $0 tuesday : da ) ( day_number $0 1 : dn ) ( month $0 october : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3906
|
what are the flights from las vegas to burbank also on saturday may twenty two
|
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 burbank : ci ) ( day $0 saturday : da ) ( day_number $0 22 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3907
|
what are the flights from las vegas to burbank on saturday may twenty two
|
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 burbank : ci ) ( day $0 saturday : da ) ( day_number $0 22 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3917
|
what are the flights from nashville to tacoma on tuesday the eighteenth of may
|
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( to $0 tacoma : ci ) ( day $0 tuesday : da ) ( day_number $0 18 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3933
|
what are the flights from tacoma to san jose also on tuesday the eighteenth of may
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tacoma : ci ) ( to $0 san_jose : ci ) ( day $0 tuesday : da ) ( day_number $0 18 : dn ) ( month $0 may : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_3941
|
what are the flights on tuesday october first from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ( day $0 tuesday : da ) ( day_number $0 1 : dn ) ( month $0 october : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_293
|
could you please show me all the weekday flights between denver and dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 dallas : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_300
|
could you show me all weekday flights from phoenix to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 denver : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_633
|
flights from denver to westchester county new york weekdays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 westchester_county : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_1261
|
i need to take ten people from denver to phoenix please give me the flights during the week
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 phoenix : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_2683
|
please show me flights available from pittsburgh to atlanta on a weekday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_3197
|
show me flights from san francisco to denver on weekdays
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_3706
|
weekday flights from san francisco to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ( weekday $0 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( weekday $0 ) ) )
|
atis_807
|
give me the flights and fares for a trip to cleveland from miami on wednesday
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ( day $0 wednesday : da ) ( fare $0 $1 ) ) ) )
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ( fare $0 $1 ) ) ) )
|
atis_529
|
find the flights that leave philadelphia and arrive in dallas by noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_838
|
give me the flights from salt lake city to new york city arriving before 6pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 salt_lake_city : ci ) ( to $0 new_york : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1237
|
i need to fly from dallas to san francisco and be in san francisco by 4pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : 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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1782
|
i'd like to see flights from baltimore to atlanta that arrive before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2810
|
show flights from cleveland to miami that arrive before 4pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_2930
|
show me all flights from minneapolis to san diego that arrive before 7pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 minneapolis : ci ) ( to $0 san_diego : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3140
|
show me flights from boston to san francisco arriving before 1pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1300 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3510
|
show me the flights from st. petersburg to salt lake city that arrive before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 st_petersburg : ci ) ( to $0 salt_lake_city : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3649
|
tell me about flights from st. petersburg arriving in toronto before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 st_petersburg : ci ) ( to $0 toronto : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4214
|
what flights from baltimore to san francisco arrive before 8pm in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 2000 : ti ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4215
|
what flights from boston arrive in dallas fort worth before 5pm
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4223
|
what flights from denver to pittsburgh arrive before 8 in the morning
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 800 : ti ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_4318
|
what flights leave boston and arrive in philadelphia before 7am
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 700 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_418
|
does dl stand for delta
|
( equals dl : al ( abbrev delta : al ) )
|
( equals ANON_ENTITY : al ( abbrev ANON_ENTITY : al ) )
|
atis_3666
|
tell me about twa flight 539
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( flight_number $0 539 : fn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( flight_number $0 ANON_ENTITY : fn ) ) )
|
atis_99
|
and from milwaukee to atlanta before 10am daily
|
( lambda $0 e ( and ( daily $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 milwaukee : ci ) ( to $0 atlanta : ci ) ) )
|
( lambda $0 e ( and ( daily $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_3869
|
what are the flights for united airlines on september twentieth in the morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( during_day $0 morning : pd ) ( day_number $0 20 : dn ) ( month $0 september : mn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( during_day $0 ANON_ENTITY : pd ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
atis_2936
|
show me all flights from new york to miami on a tuesday with round trip fare less than 932 dollars
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 932 : do ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) ANON_ENTITY : do ) ( round_trip $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_2937
|
show me all flights from new york to miami on a tuesday with round trip fares under 932 dollars
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 932 : do ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) ANON_ENTITY : do ) ( round_trip $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_3175
|
show me flights from new york to miami on a tuesday with a round trip fare less than 466 dollars
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 466 : do ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ( day $0 tuesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) ANON_ENTITY : do ) ( round_trip $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_905
|
hi i'm calling from boston i'd like to make a flight to either orlando or los angeles
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( or ( to $0 orlando : ci ) ( to $0 los_angeles : ci ) ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( or ( to $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ) )
|
atis_3454
|
show me the flights from denver to pittsburgh and atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( or ( to $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( or ( to $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : 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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( or ( flight_number $0 ANON_ENTITY : fn ) ( flight_number $0 ANON_ENTITY : fn ) ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
atis_1503
|
i would like the flights available from boston to denver arriving in denver on 9 o'clock wednesday morning on or by 9 o'clock wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( or ( and ( arrival_time $0 900 : ti ) ( day $0 wednesday : da ) ) ( and ( < ( arrival_time $0 ) 900 : ti ) ( day $0 wednesday : da ) ) ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( or ( and ( arrival_time $0 ANON_ENTITY : ti ) ( day $0 ANON_ENTITY : da ) ) ( and ( < ( arrival_time $0 ) ANON_ENTITY : ti ) ( day $0 ANON_ENTITY : da ) ) ) ) )
|
atis_3255
|
show me one way flights from milwaukee to orlando wednesday
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) )
|
atis_270
|
columbus to chicago one way before 10am
|
( lambda $0 e ( and ( oneway $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 columbus : ci ) ( to $0 chicago : ci ) ) )
|
( lambda $0 e ( and ( oneway $0 ) ( < ( departure_time $0 ) ANON_ENTITY : ti ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.