qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_4987
|
which airlines have nonstop flights from kansas city to chicago
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( nonstop $1 ) ( from $1 kansas_city : ci ) ( to $1 chicago : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_2733
|
round trip fares from denver to philadelphia under 1000 dollars and pittsburgh to philadelphia under 1000 dollars
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( round_trip $1 ) ( or ( and ( < ( fare $1 ) 1000 : do ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ) ( and ( < ( fare $1 ) 1000 : do ) ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ) ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_5028
|
would you tell me the cheapest one way fare from boston to oakland
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4760
|
what is your last trip on august twenty seventh from washington to boston
|
( argmax $0 ( and ( from $0 washington : ci ) ( to $0 boston : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
|
atis_83
|
am flights from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_79
|
also show me all flights from oakland to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 denver : ci ) ) )
|
atis_662
|
flights from new york to miami
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_324
|
delta flights to dallas please
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( to $0 dallas : ci ) ) )
|
atis_1440
|
i would like a morning flight from milwaukee to denver colorado please
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 milwaukee : ci ) ( to $0 denver : ci ) ) )
|
atis_4658
|
what is the latest flight from boston to denver that serves a meal
|
( argmax $0 ( and ( flight $0 ) ( has_meal $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
|
atis_1130
|
i need a flight from san francisco to boston that leaves after 8pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
atis_2253
|
list the flights arriving in baltimore from pittsburgh on august third
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 august : mn ) ( day_number_arrival $0 3 : dn ) ) )
|
atis_2376
|
now i'd like information on flights from denver to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_808
|
give me the flights and fares on december twenty seventh from indianapolis to orlando
|
( 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_1510
|
i would like to book a flight for august twenty seventh with us air from baltimore to oakland what flights do you have available
|
( lambda $0 e ( and ( flight $0 ) ( flight $0 ) ( airline $0 us : al ) ( from $0 baltimore : ci ) ( to $0 oakland : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) )
|
atis_3105
|
show me first class flights one way tampa to st. louis
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( class_type $0 first : cl ) ( from $0 tampa : ci ) ( to $0 st_louis : ci ) ) )
|
atis_2593
|
please list ground transportation in atlanta
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ) )
|
atis_2576
|
please list all the flights from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3329
|
show me the cities served by canadian airlines international
|
( lambda $0 e ( and ( city $0 ) ( services cp : al $0 ) ) )
|
atis_656
|
flights from montreal and phoenix to las vegas
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 pheonix : ci ) ( from $0 montreal : ci ) ) ( to $0 las_vegas : ci ) ) )
|
atis_3070
|
show me all the us air flights leaving pittsburgh between 12 and 4 in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( departure_time $0 ) 1600 : ti ) ( from $0 pittsburgh : ci ) ) )
|
atis_858
|
give me the round trip flights from cleveland to miami next wednesday
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ( day $0 wednesday : da ) ) )
|
atis_1383
|
i want to see the cheapest flights from denver to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
atis_4564
|
what is the earliest flight in the morning to arrive in baltimore from boston
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
|
atis_4295
|
what flights go from philadelphia to dallas via atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_833
|
give me the flights from phoenix to milwaukee on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
atis_2927
|
show me all flights from miami to new york
|
( lambda $0 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ) )
|
atis_1614
|
i would like to see the flights from denver to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3797
|
what are my meal options from boston to denver
|
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( meal $1 ) $0 ) ) ) )
|
atis_4681
|
what is the least expensive fare from baltimore to san francisco leaving on september thirtieth
|
( min $0 ( exists $1 ( and ( from $1 baltimore : ci ) ( to $1 san_francisco : ci ) ( day_number $1 30 : dn ) ( month $1 september : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3356
|
show me the evening flights from philadelphia to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 philadelphia : ci ) ( to $0 baltimore : ci ) ) )
|
atis_213
|
can you list the earliest flights from oakland to salt lake city on thursday
|
( argmin $0 ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 salt_lake_city : ci ) ( day $0 thursday : da ) ) ( departure_time $0 ) )
|
atis_2520
|
please give me flights from atlanta to boston on wednesday afternoon and thursday morning
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ( or ( and ( during_day $0 afternoon : pd ) ( day $0 wednesday : da ) ) ( and ( during_day $0 morning : pd ) ( day $0 thursday : da ) ) ) ) )
|
atis_131
|
are there any flights from denver to pittsburgh connecting in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_3087
|
show me early friday morning flights from san francisco to boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 friday : da ) ) )
|
atis_5023
|
which united airlines flight flies from boston to san francisco and makes a stopover in philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 philadelphia : ci ) ) )
|
atis_2524
|
please give me ground transportation information between dallas fort worth airport and downtown dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
|
atis_3467
|
show me the flights from love field
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dal : ap ) ) )
|
atis_3800
|
what are the afternoon flights between washington and boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 washington : ci ) ( to $0 boston : ci ) ) )
|
atis_448
|
does us air fly from washington dc to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) )
|
atis_3765
|
what airlines leave from washington
|
( lambda $0 e ( exists $1 ( and ( from $1 washington : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_699
|
flights to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( to $0 baltimore : ci ) ) )
|
atis_103
|
and what are the flights from nashville to tacoma on the eighteenth again
|
( lambda $0 e ( and ( flight $0 ) ( from $0 nashville : ci ) ( to $0 tacoma : ci ) ( day_number $0 18 : dn ) ) )
|
atis_4642
|
what is the last flight from dallas to boston
|
( argmax $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_523
|
find the cheapest one way fare from pittsburgh to san francisco
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3017
|
show me all the cities that midwest express serves
|
( lambda $0 e ( and ( city $0 ) ( services yx : al $0 ) ) )
|
atis_3851
|
what are the first class and coach fares for flights from chicago to kansas city arriving around 7pm next thursday
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( or ( class_type $1 coach : cl ) ( class_type $1 first : cl ) ) ( approx_arrival_time $1 1900 : ti ) ( from $1 chicago : ci ) ( to $1 kansas_city : ci ) ( day_arrival $1 thursday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1102
|
i need a flight from montreal quebec to san diego california leaving this sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 san_diego : ci ) ( day $0 sunday : da ) ) )
|
atis_1821
|
i'm looking for ground transportation in dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ) )
|
atis_1415
|
i would like a flight from philadelphia to dallas arrive dallas about 12 noon
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1200 : ti ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_165
|
baltimore to philadelphia wednesday
|
( lambda $0 e ( and ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ( day $0 wednesday : da ) ) )
|
atis_4676
|
what is the latest return flight from atlanta to boston
|
( argmax $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_3308
|
show me the cheapest flight from pittsburgh to atlanta on wednesday which leaves before noon and serves breakfast
|
( argmin $0 ( and ( flight $0 ) ( meal $0 breakfast : me ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) ( fare $0 ) )
|
atis_4285
|
what flights go from dallas to denver leaving after 3pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1500 : ti ) ( from $0 dallas : ci ) ( to $0 denver : ci ) ) )
|
atis_3189
|
show me flights from pittsburgh to san francisco on friday leaving after 12 noon
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 friday : da ) ) )
|
atis_2555
|
please list all flights from dallas to pittsburgh on july fourth 1991
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 4 : dn ) ( month $0 july : mn ) ( year $0 1991 : yr ) ) )
|
atis_3383
|
show me the flights arriving on baltimore on june fourteenth
|
( lambda $0 e ( and ( flight $0 ) ( to $0 baltimore : ci ) ( month_arrival $0 june : mn ) ( day_number_arrival $0 14 : dn ) ) )
|
atis_3962
|
what are the nonstop flights on america west or southwest air from kansas city to burbank on saturday may twenty two
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 hp : al ) ( from $0 kansas_city : ci ) ( to $0 burbank : ci ) ( day $0 saturday : da ) ( day_number $0 22 : dn ) ( month $0 may : mn ) ) )
|
atis_2499
|
please find me a flight between boston and philadelphia that arrives in philadelphia close to 5pm
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1700 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_395
|
does american airlines fly from philadelphia to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_625
|
flights from dallas to houston in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) )
|
atis_3997
|
what do you have from philadelphia to dallas on saturday morning
|
( lambda $0 e ( and ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 saturday : da ) ) )
|
atis_947
|
how many cities are served by american airline with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
atis_761
|
give me all flights from boston to philadelphia next week arriving after lunch
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1400 : ti ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3430
|
show me the flights from boston to san francisco that stop in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_2739
|
round trip flights between new york and miami
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_1443
|
i would like a nonstop flight from memphis to las vegas on march second
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day_number $0 2 : dn ) ( month $0 march : mn ) ) )
|
atis_4039
|
what does restriction ap/80 mean
|
ap_80 : rc
|
atis_645
|
flights from la guardia to jfk
|
( lambda $0 e ( and ( flight $0 ) ( from $0 lga : ap ) ( to $0 jfk : ap ) ) )
|
atis_1882
|
is there a flight around 3pm from charlotte to minneapolis
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1500 : ti ) ( from $0 charlotte : ci ) ( to $0 minneapolis : ci ) ) )
|
atis_3802
|
what are the afternoon flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4795
|
what nonstop flights are available from oakland to philadelphia arriving between 5 and 6pm
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1700 : ti ) ( < ( arrival_time $0 ) 1800 : ti ) ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4147
|
what flights are there from denver to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
atis_2598
|
please list only the flights from cleveland to dallas that leave before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 cleveland : ci ) ( to $0 dallas : ci ) ) )
|
atis_2541
|
please give me the united airlines flights from denver to baltimore that are the first class flights please
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4584
|
what is the earliest united airlines flight flying from denver to baltimore and arriving on july fourth
|
( argmin $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 4 : dn ) ( month $0 july : mn ) ) ( departure_time $0 ) )
|
atis_2822
|
show flights from philadelphia to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4946
|
where does canadian airlines international fly
|
( lambda $0 e ( and ( exists $1 ( and ( flight $1 ) ( airline $1 cp : al ) ( or ( to $1 $0 ) ( from $1 $0 ) ) ) ) ) )
|
atis_2286
|
list the nonstop flights on wednesday june second from miami to washington arriving in washington between 1115am and 1245pm
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( arrival_time $0 ) 1115 : ti ) ( < ( arrival_time $0 ) 1245 : ti ) ( from $0 miami : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ( day_number $0 2 : dn ) ( month $0 june : mn ) ) )
|
atis_4066
|
what flight do you have from dallas to denver on august twenty seventh in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 denver : ci ) ( day_number $0 27 : dn ) ( month $0 august : mn ) ) )
|
atis_2827
|
show flights from pittsburgh to oakland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
|
atis_4207
|
what flights does delta have from denver to dallas after 5
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 denver : ci ) ( to $0 dallas : ci ) ) )
|
atis_3268
|
show me round trip fares from san jose to salt lake city
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 san_jose : ci ) ( to $1 salt_lake_city : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_183
|
can i see ground transportation from long beach airport to downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 long_beach : ci ) ( from_airport $0 long_beach : ci ) ) )
|
atis_3316
|
show me the cheapest flights round trip from new york to san jose
|
( argmin $0 ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 san_jose : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_4057
|
what does yn stand for
|
yn : fb
|
atis_1169
|
i need a sunday flight from tampa to charlotte
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tampa : ci ) ( to $0 charlotte : ci ) ( day $0 sunday : da ) ) )
|
atis_4460
|
what is the cheapest flight from dallas to baltimore
|
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) ( fare $0 ) )
|
atis_4691
|
what is the least expensive one way fare from boston to pittsburgh
|
( min $0 ( exists $1 ( and ( = ( fare $1 ) $0 ) ( to $1 pittsburgh : ci ) ( from $1 boston : ci ) ( oneway $1 ) ) ) )
|
atis_1711
|
i'd like to find 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_4459
|
what is 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_1178
|
i need fare information from denver to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2129
|
list departure times from denver to philadelphia which are later than 10 o'clock and earlier than 2pm
|
( lambda $0 e ( exists $1 ( and ( > ( departure_time $1 ) 1000 : ti ) ( < ( departure_time $1 ) 1400 : ti ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2532
|
please give me the flight times i would like to fly from boston to baltimore in the morning before 8
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 800 : ti ) ( during_day $1 morning : pd ) ( from $1 boston : ci ) ( to $1 baltimore : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_397
|
does american airlines fly to san francisco from atlanta
|
( lambda $0 e ( and ( to $0 san_francisco : ci ) ( from $0 atlanta : ci ) ( flight $0 ) ( airline $0 aa : al ) ) )
|
atis_1291
|
i want a flight from toronto to montreal that leaves early friday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 toronto : ci ) ( to $0 montreal : ci ) ( day $0 friday : da ) ) )
|
atis_3661
|
tell me about ground transportation in st. petersburg airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 st_petersburg : ci ) ) )
|
atis_3971
|
what are the schedule of flights from boston to san francisco for august first
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( day_number $1 1 : dn ) ( month $1 august : mn ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_3458
|
show me the flights from dulles to san francisco leaving after 6pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 iad : ap ) ( to $0 san_francisco : ci ) ) )
|
atis_1630
|
i'd like a flight from indianapolis to toronto leaving thursday morning nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 morning : pd ) ( from $0 indianapolis : ci ) ( to $0 toronto : 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.