qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_2790
|
show delta airlines flights from jfk to miami
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 jfk : ap ) ( to $0 miami : ci ) ) )
|
atis_688
|
flights from st. paul to houston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_paul : ci ) ( to $0 houston : ci ) ) )
|
atis_317
|
dallas to oakland monday
|
( lambda $0 e ( and ( from $0 dallas : ci ) ( to $0 oakland : ci ) ( day $0 monday : da ) ) )
|
atis_1704
|
i'd like to find a flight from charlotte to las vegas and make a stop in st. louis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
|
atis_5026
|
while i'm in pittsburgh what ground transportation is available
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 pittsburgh : ci ) ) )
|
atis_2940
|
show me all flights from oakland to philadelphia on saturday which serve a meal
|
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
|
atis_4911
|
what's the ground transportation from oakland to san francisco
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 oakland : ci ) ) )
|
atis_4463
|
what is the cheapest flight from denver to pittsburgh on july twenty sixth
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 26 : dn ) ( month $0 july : mn ) ) ( fare $0 ) )
|
atis_1644
|
i'd like a flight tomorrow from san diego to toronto
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 toronto : ci ) ( tomorrow $0 ) ) )
|
atis_2318
|
may i fly from san francisco to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4807
|
what price is a limousine service in boston
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 boston : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_1018
|
how much does it cost to rent a car in tacoma
|
( lambda $0 e ( exists $1 ( and ( rental_car $1 ) ( to_city $1 tacoma : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_1436
|
i would like a list of flights from pittsburgh to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 dallas : ci ) ) )
|
atis_177
|
can i get from dallas to san francisco leaving in the morning and arriving in the morning
|
( lambda $0 e ( and ( during_day_arrival $0 morning : pd ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_50
|
all flights from pittsburgh to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_1972
|
leaving denver flying to san francisco before 10am what type of aircraft is used
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 1000 : ti ) ( from $1 denver : ci ) ( to $1 san_francisco : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_958
|
how many first class flights are provided by american airlines
|
( count $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( class_type $0 first : cl ) ) )
|
atis_64
|
all one way flights between boston and philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2350
|
newark to cleveland daily
|
( lambda $0 e ( and ( daily $0 ) ( from $0 newark : ci ) ( to $0 cleveland : ci ) ) )
|
atis_4446
|
what is the cheapest fare from dallas to denver on delta
|
( min $0 ( exists $1 ( and ( airline $1 dl : al ) ( from $1 dallas : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3947
|
what are the least expensive flights from denver to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
atis_2230
|
list the american airlines flights from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4597
|
what is the fare going from boston to dallas fort worth one way on november seventh
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( day_number $1 7 : dn ) ( month $1 november : mn ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3297
|
show me the airports serviced by tower air
|
( lambda $0 e ( and ( airport $0 ) ( services ff : al $0 ) ) )
|
atis_2566
|
please list all flights on united airlines and northwest which go to denver
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( to $0 denver : ci ) ) )
|
atis_1573
|
i would like to fly on american airlines from baltimore to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1191
|
i need flight numbers and airlines for flights departing from oakland to salt lake city on thursday departing before 8am
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( < ( departure_time $2 ) 800 : ti ) ( from $2 oakland : ci ) ( to $2 salt_lake_city : ci ) ( day $2 thursday : da ) ( = ( flight_number $2 ) $0 ) ( = ( airline : e $2 ) $1 ) ) ) ) )
|
atis_4335
|
what flights leave pittsburgh after 5pm on thursday and arrive in los angeles
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
atis_3882
|
what are the flights from boston to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_399
|
does american airlines offer a flight from boston to oakland which stops in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 boston : ci ) ( to $0 oak : ap ) ( stop $0 denver : ci ) ) )
|
atis_2478
|
philadelphia to san francisco please
|
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2955
|
show me all flights from pittsburgh to baltimore on thursday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
|
atis_3725
|
what airline is dl
|
dl : al
|
atis_4022
|
what does fare code y mean
|
y : fb
|
atis_3788
|
what are all the flights on delta in and out of fort worth
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( or ( from $0 fort_worth : ci ) ( to $0 fort_worth : ci ) ) ) )
|
atis_3760
|
what airlines have business class service between boston and san francisco
|
( lambda $0 e ( exists $1 ( and ( class_type $1 business : cl ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_2378
|
now list for me only the united flights that flight from oakland to boston
|
( lambda $0 e ( and ( flight $0 ) ( flight $0 ) ( airline $0 ua : al ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) )
|
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 ) ) )
|
atis_2162
|
list flights from la to orlando
|
( lambda $0 e ( and ( flight $0 ) ( from $0 los_angeles : ci ) ( to $0 orlando : ci ) ) )
|
atis_4140
|
what flights are there from baltimore to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_461
|
explain restriction ap/57
|
ap_57 : rc
|
atis_4219
|
what flights from chicago to kansas city in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 chicago : ci ) ( to $0 kansas_city : ci ) ) )
|
atis_4390
|
what is airline us
|
us : al
|
atis_2343
|
name 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_4773
|
what kind of airplane is flight ua 270 from denver to philadelphia
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 270 : fn ) ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_4109
|
what flights are available on dl from dallas to atlanta on monday morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 monday : da ) ) )
|
atis_3092
|
show me fares from dallas to baltimore that cost less than 300 dollars
|
( lambda $0 e ( exists $1 ( and ( < ( fare $1 ) 300 : do ) ( from $1 dallas : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1812
|
i'm looking for a flight from charlotte to las vegas that stops in st. louis hopefully a dinner flight how can i find that out
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
|
atis_2528
|
please give me round trip fares from pittsburgh to philadelphia
|
( lambda $0 e ( exists $1 ( and ( round_trip $1 ) ( from $1 pittsburgh : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3036
|
show me all the flights from columbus to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 columbus : ci ) ( to $0 baltimore : ci ) ) )
|
atis_386
|
do you have flights from st. petersburg to toronto on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_petersburg : ci ) ( to $0 toronto : ci ) ( day $0 monday : da ) ) )
|
atis_3133
|
show me flights from boston to baltimore coach on wednesday about 12 noon
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 coach : cl ) ( approx_departure_time $0 1200 : ti ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ( day $0 wednesday : da ) ) )
|
atis_409
|
does continental fly from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1451
|
i would like a twa flight from atlanta to san francisco with a stopover in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
atis_191
|
can you give me the evening flight on wednesday from washington to atlanta again
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 washington : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
atis_3354
|
show me the evening flights from baltimore to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3213
|
show me flights monday night after 8pm for dallas to boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( > ( departure_time $0 ) 2000 : ti ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
|
atis_361
|
do you have a flight from boston to fort worth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 fort_worth : ci ) ) )
|
atis_200
|
can you list all flights leaving from st. louis and arriving in milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_louis : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_3901
|
what are the flights from denver to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4963
|
which airline provides business class flights
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 business : cl ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3795
|
what are my choices of flights leaving early afternoon from minneapolis to indianapolis
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 afternoon : pd ) ( from $0 minneapolis : ci ) ( to $0 indianapolis : ci ) ) )
|
atis_3710
|
what about flights from boston to san diego
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_diego : ci ) ) )
|
atis_2243
|
list the fares of the delta airlines flights from boston to philadelphia
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( from $1 boston : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3609
|
show me the type of aircraft that canadian airlines uses
|
( lambda $0 e ( and ( aircraft_code : t $0 ) ( exists $1 ( and ( airline $1 cp : al ) ( aircraft_code $1 $0 ) ) ) ) )
|
atis_4631
|
what is the ground transportation available in fort worth
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 fort_worth : ci ) ) )
|
atis_426
|
does lufthansa fly between boston and oakland
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 lh : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
atis_4251
|
what flights from pittsburgh to atlanta on wednesday morning serves 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_3320
|
show me the cheapest one way flight from san francisco to boston leaving san francisco after 9pm
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( > ( departure_time $0 ) 2100 : ti ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) ( fare $0 ) )
|
atis_4791
|
what limousine service in toronto
|
( lambda $0 e ( and ( limousine $0 ) ( to_city $0 toronto : 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 ) ) )
|
atis_2709
|
please show me united nonstop flights between boston and san francisco departing around 5 in the evening
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 ua : al ) ( approx_departure_time $0 1700 : ti ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2447
|
on july twenty third all flights on american airlines from philadelphia to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day_number $0 23 : dn ) ( month $0 july : mn ) ) )
|
atis_1287
|
i want a flight from philadelphia to dallas with a stop in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_2857
|
show me airports near washington dc
|
( lambda $0 e ( and ( airport $0 ) ( loc : t $0 washington : ci ) ) )
|
atis_1574
|
i would like to fly on twa from baltimore to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( from $0 baltimore : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2730
|
round trip fares from baltimore to philadelphia less than 1000 dollars round trip fares from denver to philadelphia less than 1000 dollars round trip fares from pittsburgh to philadelphia less than 1000 dollars
|
( lambda $0 e ( exists $1 ( and ( 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 ) ) ( and ( < ( fare $1 ) 1000 : do ) ( from $1 baltimore : ci ) ( to $1 philadelphia : ci ) ) ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1373
|
i want to leave boston at 838 and arrive in denver at 1110 in the morning
|
( lambda $0 e ( and ( departure_time $0 838 : ti ) ( arrival_time $0 1110 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_959
|
how many first class flights does delta airlines have
|
( count $0 ( and ( flight $0 ) ( airline $0 dl : al ) ( class_type $0 first : cl ) ) )
|
atis_71
|
all right what us air flights leave from indianapolis to san diego after 130 in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( > ( departure_time $0 ) 1330 : ti ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ) )
|
atis_2749
|
saturday flight on american airlines from milwaukee to phoenix
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 milwaukee : ci ) ( to $0 phoenix : ci ) ( day $0 saturday : da ) ) )
|
atis_1334
|
i want to fly from boston to denver and i don't want any stopovers and i'd like to fly only during the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( during_day $0 afternoon : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_169
|
boston ground transportation
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ) )
|
atis_4093
|
what flights are available from dallas to atlanta with one way economy fares
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( economy $0 ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ) )
|
atis_951
|
how many cities are served by lufthansa with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 lh : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
atis_1342
|
i want to fly from denver to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1895
|
is there a flight from charlotte to newark on tuesday evening
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 charlotte : ci ) ( to $0 newark : ci ) ( day $0 tuesday : da ) ) )
|
atis_97
|
and flight from oakland to boston leaving after midnight
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 0 : ti ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) )
|
atis_2047
|
list all flights going from boston to atlanta before 7am on thursday
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 700 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day $0 thursday : da ) ) )
|
atis_2846
|
show me a list of ground transportation at boston airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 boston : ci ) ) )
|
atis_1183
|
i need flight information for a flight departing from cleveland to milwaukee wednesday after 6pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 cleveland : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
atis_3074
|
show me all united flights from denver to san francisco for september first 1991
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 1 : dn ) ( month $0 september : mn ) ( year $0 1991 : yr ) ) )
|
atis_4468
|
what is the cheapest flight from pittsburgh to atlanta
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
atis_1577
|
i would like to fly to denver for under 500 dollars please show me the airfares between pittsburgh and denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( fare $1 ) 500 : do ) ( from $1 pittsburgh : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4491
|
what is the cheapest way to fly from denver to oakland
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) ( fare $0 ) )
|
atis_2803
|
show flights between toronto and san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2277
|
list the flights that arrive and depart from general mitchell international airport
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 mke : ap ) ( to $0 mke : ap ) ) ) )
|
atis_1093
|
i need a flight from kansas city to chicago that leaves wednesday and arrives in chicago around 7pm
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1900 : ti ) ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day $0 wednesday : da ) ) )
|
atis_2239
|
list the earliest flights from atlanta to denver on a monday
|
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day $0 monday : da ) ) ( departure_time $0 ) )
|
atis_316
|
dallas to houston after 1201am
|
( lambda $0 e ( and ( > ( departure_time $0 ) 1 : ti ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.