qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_2104
|
list all trans world airline flights from indianapolis to houston that arrive in houston between 1030am and 1130am
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( > ( arrival_time $0 ) 1030 : ti ) ( < ( arrival_time $0 ) 1130 : ti ) ( from $0 indianapolis : ci ) ( to $0 houston : ci ) ) )
|
atis_2200
|
list ground transportation options at phoenix
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 phoenix : ci ) ) )
|
atis_4231
|
what flights from kansas city to chicago leave next wednesday returning the following day
|
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 chicago : ci ) ( day $0 wednesday : da ) ) )
|
atis_4358
|
what ground transportation is available at the boston airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 bos : ap ) ) )
|
atis_4035
|
what does nw stand for
|
nw : al
|
atis_3040
|
show me all the flights from indianapolis to san diego on us air
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 indianapolis : ci ) ( to $0 san_diego : ci ) ) )
|
atis_3573
|
show me the list of flights between philadelphia and denver that leave in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ) )
|
atis_2301
|
list united flights from denver to san francisco on tuesdays or wednesdays
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( or ( day $0 tuesday : da ) ( day $0 wednesday : da ) ) ) )
|
atis_1366
|
i want to go from denver to atlanta round trip and make a stop at pittsburgh may i have the cheapest fare
|
( min $0 ( exists $1 ( and ( from $1 denver : ci ) ( to $1 atlanta : ci ) ( stop $1 pittsburgh : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_4797
|
what nonstop flights between atlanta and washington leave atlanta after 6 o'clock pm
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
|
atis_4235
|
what flights from las vegas to montreal on saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 montreal : ci ) ( day $0 saturday : da ) ) )
|
atis_982
|
how many nonstop flights going from dallas to oakland july twenty seventh
|
( count $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 dallas : ci ) ( to $0 oakland : ci ) ( day_number $0 27 : dn ) ( month $0 july : mn ) ) )
|
atis_3569
|
show me the latest nonstop flight from denver to washington dc
|
( argmax $0 ( and ( flight $0 ) ( nonstop $0 ) ( from $0 denver : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) )
|
atis_1912
|
is there a late afternoon flight leaving washington for denver
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( during_day $0 afternoon : pd ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) )
|
atis_1580
|
i would like to fly united airlines from washington dc to denver colorado
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 washington : ci ) ( to $0 denver : ci ) ) )
|
atis_1452
|
i would like a us air flight from toronto to san diego with a stopover in denver please
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 denver : ci ) ) )
|
atis_4247
|
what flights from newark to los angeles on wednesday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 newark : ci ) ( to $0 los_angeles : ci ) ( day $0 wednesday : da ) ) )
|
atis_5033
|
yes i'd like to find a flight from memphis to tacoma stopping in los angeles
|
( lambda $0 e ( and ( flight $0 ) ( from $0 memphis : ci ) ( to $0 tacoma : ci ) ( stop $0 los_angeles : ci ) ) )
|
atis_927
|
how expensive is the san francisco limousine service
|
( lambda $0 e ( exists $1 ( and ( limousine $1 ) ( to_city $1 san_francisco : ci ) ( = ( ground_fare $1 ) $0 ) ) ) )
|
atis_4660
|
what is the latest flight from philadelphia to boston
|
( argmax $0 ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_4683
|
what is the least expensive flight available from dallas fort worth to san francisco
|
( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) ( fare $0 ) )
|
atis_480
|
find a flight from toronto to san diego with a layover in dc on delta airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 washington : ci ) ) )
|
atis_4287
|
what flights go from dallas to san francisco before 6 o'clock sunday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1800 : ti ) ( from $0 dallas : ci ) ( during_day $0 afternoon : pd ) ( to $0 san_francisco : ci ) ( day $0 sunday : da ) ) )
|
atis_1351
|
i want to fly from philadelphia to dallas with a stop in atlanta on a breakfast flight
|
( lambda $0 e ( and ( flight $0 ) ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_803
|
give me the earliest flight tomorrow on united airlines from st. petersburg to milwaukee
|
( argmin $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 st_petersburg : ci ) ( to $0 milwaukee : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
atis_2777
|
show all flights with first class from baltimore to dallas
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_536
|
find travel arrangements for a round trip flight from boston to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_3625
|
show me which flights from san francisco to pittsburgh on a monday are first class
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_3450
|
show me the flights from denver to philadelphia again
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3086
|
show me delta flights from dallas to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 dallas : ci ) ( to $0 denver : ci ) ) )
|
atis_1563
|
i would like to fly from denver to pittsburgh on the cheapest flight possible
|
( argmin $0 ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
atis_4429
|
what is the airfare for flights from denver to pittsburgh on delta airline
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( from $1 denver : ci ) ( to $1 pittsburgh : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2981
|
show me all flights from san francisco to pittsburgh on a monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_3536
|
show me the flights on twa from atlanta in the morning
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ) )
|
atis_3214
|
show me flights on monday from philadelphia to boston after 7am
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 700 : ti ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
|
atis_2494
|
please explain fare code f
|
f : fb
|
atis_3700
|
us air next wednesday from cleveland to miami
|
( lambda $0 e ( and ( airline $0 us : al ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ( day $0 wednesday : da ) ) )
|
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 ) ) )
|
atis_3554
|
show me the ground transportation schedule in san francisco on thursday evening
|
( lambda $0 e ( exists $1 ( and ( = ( departure_time $1 ) $0 ) ( day $1 thursday : da ) ( to_city $1 san_francisco : ci ) ( ground_transport $1 ) ( during_day $1 evening : pd ) ) ) )
|
atis_390
|
does american airline fly from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_4389
|
what is airline nw
|
nw : al
|
atis_4382
|
what ground transportation is there in denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_4452
|
what is the cheapest fare one way between pittsburgh and denver
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2016
|
list all flights from baltimore to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2106
|
list all united flights from boston to san francisco with fare code qx
|
( lambda $0 e ( and ( flight $0 ) ( fare_basis_code $0 qx : fb ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4445
|
what is the cheapest fare from boston to san francisco
|
( min $0 ( exists $1 ( and ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_638
|
flights from jfk or la guardia to cleveland
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 jfk : ap ) ( from $0 lga : ap ) ) ( to $0 cleveland : ci ) ) )
|
atis_185
|
can you find me a flight from salt lake city to new york city next saturday before 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 ) ( day $0 saturday : da ) ) )
|
atis_1533
|
i would like to find a flight that goes from boston to orlando i would like it to have a stop in new york and i would like a flight that serves breakfast
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 orlando : ci ) ( stop $0 new_york : ci ) ) )
|
atis_4405
|
what is fare code h
|
h : fb
|
atis_680
|
flights from phoenix to newark
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 newark : ci ) ) )
|
atis_1559
|
i would like to fly from denver to atlanta by way of pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
|
atis_2491
|
pittsburgh to los angeles thursday evening
|
( lambda $0 e ( and ( during_day $0 evening : pd ) ( from $0 pittsburgh : ci ) ( to $0 los_angeles : ci ) ( day $0 thursday : da ) ) )
|
atis_1410
|
i would like a flight from dallas to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_485
|
find a nonstop flight between boston and washington arriving in washington around 5pm
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( approx_arrival_time $0 1700 : ti ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
|
atis_3687
|
the most expensive flight between boston and philadelphia
|
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 philadelphia : ci ) ) ( fare $0 ) )
|
atis_4404
|
what is fare code fn
|
fn : fb
|
atis_1814
|
i'm looking for a flight from pittsburgh to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1530
|
i would like to find a flight from charlotte north carolina to las vegas i would like a stopover in st. louis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 las_vegas : ci ) ( stop $0 st_louis : ci ) ) )
|
atis_3693
|
united airlines stopping in denver
|
( lambda $0 e ( and ( airline $0 ua : al ) ( stop $0 denver : ci ) ) )
|
atis_1220
|
i need the cost of a ticket going from denver to baltimore a first class ticket on united airlines
|
( lambda $0 e ( exists $1 ( and ( airline $1 ua : al ) ( class_type $1 first : cl ) ( from $1 denver : ci ) ( to $1 baltimore : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3392
|
show me the flights from all airports to love field
|
( lambda $0 e ( and ( flight $0 ) ( to $0 dal : ap ) ( exists $1 ( and ( airport $1 ) ( from $0 $1 ) ) ) ) )
|
atis_4823
|
what time zone is denver in
|
( lambda $0 e ( and ( time_zone_code $0 ) ( loc : t denver : ci $0 ) ) )
|
atis_462
|
explain restriction ap80
|
ap_80 : rc
|
atis_3183
|
show me flights from pittsburgh to atlanta on monday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ( day $0 monday : da ) ) )
|
atis_1835
|
in atlanta i would like information on ground transportation
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ) )
|
atis_4348
|
what flights takeoff and land at general mitchell international
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 mke : ap ) ( to $0 mke : ap ) ) ) )
|
atis_4076
|
what flights are available between boston and washington arriving in washington at 630
|
( lambda $0 e ( and ( flight $0 ) ( arrival_time $0 630 : ti ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
|
atis_2841
|
show me a list of flights from denver to san francisco for september first 1991
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day_number $0 1 : dn ) ( month $0 september : mn ) ( year $0 1991 : yr ) ) )
|
atis_4884
|
what's the cheapest one way flight from oakland to washington dc
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 oakland : ci ) ( to $0 washington : ci ) ) ( fare $0 ) )
|
atis_1349
|
i want to fly from philadelphia to dallas and make a stopover in atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( stop $0 atlanta : ci ) ) )
|
atis_2228
|
list the alaska airlines flights arriving in burbank
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 as : al ) ( to $0 burbank : ci ) ) )
|
atis_4351
|
what ground transport is available in minneapolis
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 minneapolis : ci ) ) )
|
atis_553
|
flight from cleveland to nashville
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 nashville : ci ) ) )
|
atis_3220
|
show me flights to san francisco from philadelphia stopping in dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_4213
|
what flights from atlanta to washington
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ) )
|
atis_4098
|
what flights are available from denver to philadelphia with stopover in pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ( stop $0 pittsburgh : ci ) ) )
|
atis_3177
|
show me flights from oakland to dallas on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 dallas : ci ) ( day $0 sunday : da ) ) )
|
atis_2030
|
list all flights from denver to san francisco on wednesday afternoon
|
( 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_2768
|
show all flights from denver to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1433
|
i would like a flight on tuesday which leaves from san diego to indianapolis indiana and that leaves in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_diego : ci ) ( to $0 indianapolis : ci ) ( day $0 tuesday : da ) ) )
|
atis_286
|
could you please give me a one way fare from pittsburgh to atlanta
|
( lambda $0 e ( exists $1 ( and ( oneway $1 ) ( from $1 pittsburgh : ci ) ( to $1 atlanta : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_465
|
explain the restriction ap/57
|
ap_57 : rc
|
atis_5000
|
which flight from pittsburgh to baltimore carries the smallest number of passengers
|
( argmin $0 ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) ( capacity $0 ) )
|
atis_37
|
all flights from charlotte to anywhere on us air around 1pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( approx_departure_time $0 1300 : ti ) ( from $0 charlotte : ci ) ) )
|
atis_3759
|
what airlines go to pittsburgh
|
( lambda $0 e ( exists $1 ( and ( to $1 pittsburgh : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_3169
|
show me flights from milwaukee to orlando on wednesday evening or thursday mornings
|
( lambda $0 e ( and ( flight $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( or ( and ( during_day $0 evening : pd ) ( day $0 wednesday : da ) ) ( and ( during_day $0 morning : pd ) ( day $0 thursday : da ) ) ) ) )
|
atis_3461
|
show me the flights from indianapolis to montreal
|
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 montreal : ci ) ) )
|
atis_4856
|
what types of meals are available
|
( lambda $0 e ( and ( meal : t $0 ) ) )
|
atis_1202
|
i need information from denver to pittsburgh
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_3827
|
what are the coach fares for flights from pittsburgh to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 coach : cl ) ( from $1 pittsburgh : ci ) ( to $1 denver : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_622
|
flights from cleveland to kansas city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 cleveland : ci ) ( to $0 kansas_city : ci ) ) )
|
atis_4398
|
what is delta's schedule of morning flights to atlanta
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( during_day $1 morning : pd ) ( to $1 atlanta : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_1996
|
list all daily flights between boston and oakland and between oakland and boston using delta airlines
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( airline $0 dl : al ) ( or ( and ( from $0 oakland : ci ) ( to $0 boston : ci ) ) ( and ( from $0 boston : ci ) ( to $0 oakland : ci ) ) ) ) )
|
atis_1632
|
i'd like a flight from las vegas to detroit on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 detroit : ci ) ( day $0 monday : da ) ) )
|
atis_2839
|
show me a list of flights from boston to dc arriving before 9am on july twenty second
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 900 : ti ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( month_arrival $0 july : mn ) ( day_number_arrival $0 22 : dn ) ) )
|
atis_2815
|
show flights from denver to oakland that arrive after 12 o'clock
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
|
atis_2758
|
shortest morning flights from cincinnati to tampa
|
( argmin $0 ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 cincinnati : ci ) ( to $0 tampa : ci ) ) ( time_elapsed $0 ) )
|
atis_2255
|
list the flights between san jose and houston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_jose : ci ) ( to $0 houston : ci ) ) )
|
atis_2916
|
show me all flights from denver to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.