qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_2484
|
phoenix to newark on wednesday
|
( lambda $0 e ( and ( from $0 phoenix : ci ) ( to $0 newark : ci ) ( day $0 wednesday : da ) ) )
|
atis_3446
|
show me the flights from denver to atlanta on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( day $0 friday : da ) ) )
|
atis_4969
|
which airlines fly between boston and pittsburgh
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 pittsburgh : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3848
|
what are the fares for flights from la to newark leaving monday morning
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 morning : pd ) ( from $1 los_angeles : ci ) ( to $1 newark : ci ) ( day $1 monday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4280
|
what flights go from charlotte to baltimore in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ) )
|
atis_692
|
flights from westchester county to san francisco daily
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( from $0 westchester_county : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2619
|
please list the flights from dallas fort worth to boston on july twenty third
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ( day_number $0 23 : dn ) ( month $0 july : mn ) ) )
|
atis_289
|
could you please give me the round trip fare from denver to atlanta
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4070
|
what flight from boston to baltimore is the least expensive flight
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) ( fare $0 ) )
|
atis_2034
|
list all flights from memphis to seattle
|
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 seattle : ci ) ) )
|
atis_3639
|
sunday flights from new york city to las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
|
atis_3403
|
show me the flights from baltimore to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_4361
|
what ground transportation is available from the denver airport to downtown denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ( from_airport $0 denver : ci ) ) )
|
atis_4899
|
what's the earliest flight from phoenix to salt lake city
|
( argmin $0 ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 salt_lake_city : ci ) ) ( departure_time $0 ) )
|
atis_3578
|
show me the lowest price from dallas to baltimore
|
( min $0 ( exists $1 ( and ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3343
|
show me the earliest flight from denver to las vegas
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 las_vegas : ci ) ) ( departure_time $0 ) )
|
atis_295
|
could you please tell me the cheapest fare from atlanta to boston
|
( min $0 ( exists $1 ( and ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_61
|
all flights to baltimore after 6pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( to $0 baltimore : ci ) ) )
|
atis_4347
|
what flights stop in atlanta before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( stop $0 atlanta : ci ) ) )
|
atis_4175
|
what flights are there tuesday morning from dallas to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
atis_3537
|
show me the flights on twa to atlanta in the morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( during_day $0 morning : pd ) ( to $0 atlanta : ci ) ) )
|
atis_2523
|
please give me flights leaving san francisco and going to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_4718
|
what is the price of american airlines flight 19 from new york to los angeles
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( flight_number $1 19 : fn ) ( from $1 new_york : ci ) ( to $1 los_angeles : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2211
|
list nonstop flights from houston to dallas which arrive after 8pm
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( from $0 houston : ci ) ( to $0 dallas : ci ) ) )
|
atis_2702
|
please show me the flights from las vegas to detroit on the twenty eighth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 detroit : ci ) ( day_number $0 28 : dn ) ) )
|
atis_2762
|
show all airlines with flights between denver and dallas
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 denver : ci ) ( to $1 dallas : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_2720
|
rental cars in boston
|
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 boston : ci ) ) )
|
atis_4640
|
what is the last flight from boston to atlanta
|
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( departure_time $0 ) )
|
atis_3546
|
show me the flights to and from love field
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 dal : ap ) ( to $0 dal : ap ) ) ) )
|
atis_2701
|
please show me the flights from denver to baltimore between 10am and 2pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1000 : ti ) ( < ( departure_time $0 ) 1400 : ti ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3364
|
show me the fares on all flights round trip from pittsburgh to oakland
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( from $1 pittsburgh : ci ) ( to $1 oakland : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3709
|
what about a flight from boston to san francisco stopping in denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
atis_1718
|
i'd like to fly early tomorrow from columbus to minneapolis
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( from $0 columbus : ci ) ( to $0 minneapolis : ci ) ( tomorrow $0 ) ) )
|
atis_3679
|
thank you very much now can you help me with information on flights from boston to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
atis_589
|
flight numbers on american airlines from phoenix to milwaukee
|
( lambda $0 e ( exists $1 ( and ( airline $1 aa : al ) ( from $1 phoenix : ci ) ( to $1 milwaukee : ci ) ( = ( flight_number $1 ) $0 ) ) ) )
|
atis_2024
|
list all flights from boston to san francisco with more than 3 stops
|
( lambda $0 e ( and ( flight $0 ) ( > ( stops $0 ) 3 : i ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1464
|
i would like direct coach flights from pittsburgh to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( class_type $0 coach : cl ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
|
atis_590
|
flight on monday from philadelphia to oakland california early morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 oakland : ci ) ( day $0 monday : da ) ) )
|
atis_3566
|
show me the latest flight from san francisco to denver
|
( argmax $0 ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
|
atis_3565
|
show me the latest flight from salt lake city to phoenix
|
( argmax $0 ( and ( flight $0 ) ( from $0 salt_lake_city : ci ) ( to $0 phoenix : ci ) ) ( departure_time $0 ) )
|
atis_1144
|
i need a flight on sunday from long beach to columbus
|
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 columbus : ci ) ( day $0 sunday : da ) ) )
|
atis_3326
|
show me the cheapest round trip fare from baltimore to dallas
|
( min $0 ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3151
|
show me flights from denver to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
atis_4675
|
what is the latest flight you have departing dallas to philadelphia
|
( argmax $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 philadelphia : ci ) ) ( departure_time $0 ) )
|
atis_2365
|
now i need a flight from detroit to san diego leaving tuesday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 detroit : ci ) ( to $0 san_diego : ci ) ( day $0 tuesday : da ) ) )
|
atis_3098
|
show me fares leaving on tuesdays from denver to go to dallas
|
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 dallas : ci ) ( day $1 tuesday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3038
|
show me all the flights from denver to baltimore arriving may tenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 may : mn ) ( day_number_arrival $0 10 : dn ) ) )
|
atis_4063
|
what first class flights are available from denver to baltimore on july twenty fifth 1991
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 25 : dn ) ( month $0 july : mn ) ( year $0 1991 : yr ) ) )
|
atis_4853
|
what types of ground transportation are available in denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_2452
|
on monday show me flights from baltimore to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 monday : da ) ) )
|
atis_3020
|
show me all the direct flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_607
|
flights from baltimore to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_296
|
could you please tell me the cheapest flight from boston to san francisco
|
( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) ( fare $0 ) )
|
atis_587
|
flight numbers from minneapolis to long beach on june twenty six
|
( lambda $0 e ( exists $1 ( and ( = ( flight_number $1 ) $0 ) ( month $1 june : mn ) ( day_number $1 26 : dn ) ( to $1 long_beach : ci ) ( from $1 minneapolis : ci ) ) ) )
|
atis_3456
|
show me the flights from denver to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_566
|
flight from milwaukee to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 denver : ci ) ) )
|
atis_4873
|
what's the cheapest first class airfare from pittsburgh to san francisco
|
( min $0 ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2355
|
no i want to go from denver to oakland
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
|
atis_4801
|
what northwest airlines 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_2703
|
please show me the flights from washington dc to san francisco california
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3828
|
what are the coach fares from charlotte to la wednesday night
|
( lambda $0 e ( exists $1 ( and ( class_type $1 coach : cl ) ( during_day $1 late : pd ) ( from $1 charlotte : ci ) ( to $1 los_angeles : ci ) ( day $1 wednesday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_934
|
how far is the airport from san francisco
|
( miles_distant sfo : ap san_francisco : ci )
|
atis_2985
|
show me all flights from san francisco to washington dc area
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ) )
|
atis_3584
|
show me the most expensive one way first class fare from baltimore to dallas
|
( max $0 ( exists $1 ( and ( oneway $1 ) ( class_type $1 first : cl ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4455
|
what is the cheapest flight flying from boston to atlanta before 8
|
( argmin $0 ( and ( flight $0 ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
atis_4754
|
what is ua
|
ua : al
|
atis_196
|
can you list all flights from chicago to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 chicago : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_1813
|
i'm looking for a flight from oakland to denver with a stopover in dallas fort worth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 denver : ci ) ( stop $0 dallas : ci ) ) )
|
atis_133
|
are there any flights from denver to pittsburgh with stops in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_2404
|
okay give me the flights that leave denver after 7pm next monday arriving in boston
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1900 : ti ) ( from $0 denver : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
|
atis_2150
|
list flights from denver to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_321
|
define airline ua
|
ua : al
|
atis_118
|
are there any flights between pittsburgh and baltimore using a j31 aircraft
|
( lambda $0 e ( and ( flight $0 ) ( aircraft_code $0 j31 : ac ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4418
|
what is restriction ap/55
|
ap_55 : rc
|
atis_261
|
cheapest round trip fare from indianapolis to orlando on december twenty fifth
|
( min $0 ( exists $1 ( and ( from $1 indianapolis : ci ) ( to $1 orlando : ci ) ( day_number $1 25 : dn ) ( month $1 december : mn ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_598
|
flights between tampa and st. louis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 st_louis : ci ) ) )
|
atis_2306
|
looking for a flight from cleveland to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 dallas : ci ) ) )
|
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 ) ) ) )
|
atis_4286
|
what flights go from dallas to phoenix
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 phoenix : ci ) ) )
|
atis_3508
|
show me the flights from san francisco to pittsburgh on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ) )
|
atis_2124
|
list daily flights from oakland to boston using twa
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 tw : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) )
|
atis_3462
|
show me the flights from indianapolis to orlando with round trip fares less than 1288
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( < ( fare $0 ) 1288 : do ) ( from $0 indianapolis : ci ) ( to $0 orlando : ci ) ) )
|
atis_2727
|
round trip air fares from pittsburgh to philadelphia less than 1000 dollars
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( < ( fare $1 ) 1000 : do ) ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1056
|
i live in denver and i'd like to make a trip to atlanta
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3030
|
show me all the flights from boston to denver that serve lunch
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_322
|
define airline us
|
us : al
|
atis_3881
|
what are the flights from boston to orlando
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 orlando : ci ) ) )
|
atis_4550
|
what is the earliest flight from memphis to cincinnati on june thirtieth
|
( argmin $0 ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 cincinnati : ci ) ( day_number $0 30 : dn ) ( month $0 june : mn ) ) ( departure_time $0 ) )
|
atis_149
|
are there any nonstop flights leaving from denver arriving in baltimore on july seventh
|
( lambda $0 e ( and ( month_arrival $0 july : mn ) ( to $0 baltimore : ci ) ( from $0 denver : ci ) ( flight $0 ) ( day_number_arrival $0 7 : dn ) ( nonstop $0 ) ) )
|
atis_4563
|
what is the earliest flight in the morning leaving boston for baltimore
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
|
atis_2134
|
list flights between boston and san francisco that serve breakfast
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_579
|
flight information on january twenty third from denver to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 23 : dn ) ( month $0 january : mn ) ) )
|
atis_421
|
does eastern have an early afternoon flight from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ea : al ) ( during_day $0 early : pd ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2807
|
show flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4072
|
what flight goes from denver to baltimore first class on united airlines arriving on may seventh
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 may : mn ) ( day_number_arrival $0 7 : dn ) ) )
|
atis_2615
|
please list the flights from charlotte to long beach arriving after lunch time
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1400 : ti ) ( from $0 charlotte : ci ) ( to $0 long_beach : ci ) ) )
|
atis_3567
|
show me the latest flight on wednesday from atlanta to washington dc
|
( argmax $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) ( departure_time $0 ) )
|
atis_1744
|
i'd like to get a flight from washington to oakland with a stopover in dallas fort worth for september fifteenth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 oakland : ci ) ( stop $0 dallas : ci ) ( day_number $0 15 : dn ) ( month $0 september : mn ) ) )
|
atis_3200
|
show me flights from san francisco to pittsburgh on a sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 sunday : da ) ) )
|
atis_1190
|
i need flight information on thursday leaving pittsburgh and arriving in baltimore in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.