qid
stringlengths 6
9
| source
stringlengths 6
259
| target
stringlengths 6
409
| anonymized_target
stringlengths 16
454
|
---|---|---|---|
atis_3660
|
tell me about ground transportation between the dallas fort worth airport and downtown dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( from_airport $0 ANON_ENTITY : ap ) ) )
|
atis_4359
|
what ground transportation is available from la guardia airport into new york city
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 new_york : ci ) ( from_airport $0 lga : ap ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( from_airport $0 ANON_ENTITY : ap ) ) )
|
atis_4412
|
what is ground transportation between the san francisco airport and the city
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_francisco : ci ) ( from_airport $0 sfo : ap ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( from_airport $0 ANON_ENTITY : ap ) ) )
|
atis_4634
|
what is the ground transportation between airport and baltimore
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 baltimore : ci ) ( from_airport $0 bwi : ap ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( from_airport $0 ANON_ENTITY : ap ) ) )
|
atis_4635
|
what is the ground transportation from boston airport to boston downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( from_airport $0 ANON_ENTITY : ap ) ) )
|
atis_4636
|
what is the ground transportation from philadelphia airport to the city proper
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ( from_airport $0 phl : ap ) ) )
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 ANON_ENTITY : ci ) ( from_airport $0 ANON_ENTITY : ap ) ) )
|
atis_3717
|
what aircraft has the largest seating capacity
|
( argmax $0 ( aircraft $0 ) ( capacity $0 ) )
|
( argmax $0 ( aircraft $0 ) ( capacity $0 ) )
|
atis_4427
|
what is the aircraft type with the greatest seating capacity
|
( argmax $0 ( aircraft $0 ) ( capacity $0 ) )
|
( argmax $0 ( aircraft $0 ) ( capacity $0 ) )
|
atis_2865
|
show me all direct flights from dallas fort worth to either san francisco or oakland
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 dallas : ci ) ( or ( to $0 san_francisco : ci ) ( to $0 oakland : ci ) ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( or ( to $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ) )
|
atis_4982
|
which airlines have first class flights today
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 first : cl ) ( today $1 ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 ANON_ENTITY : cl ) ( today $1 ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_3328
|
show me the cheapest round trips from dallas to baltimore
|
( argmin $0 ( and ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
( argmin $0 ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
atis_4492
|
what is the cheapest way to travel round trip from milwaukee to san francisco
|
( argmin $0 ( and ( from $0 milwaukee : ci ) ( to $0 san_francisco : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
( argmin $0 ( and ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( round_trip $0 ) ) ( fare $0 ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( airline $0 ANON_ENTITY : al ) ( 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_4765
|
what kind of aircraft does delta use before 8am on august second from boston to denver
|
( lambda $0 e ( exists $1 ( and ( airline $1 dl : al ) ( < ( departure_time $1 ) 800 : ti ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( day_number $1 2 : dn ) ( month $1 august : mn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( airline $1 ANON_ENTITY : al ) ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day_number $1 ANON_ENTITY : dn ) ( month $1 ANON_ENTITY : mn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_961
|
how many first class flights does united airlines have departing from boston today
|
( count $0 ( and ( flight $0 ) ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 boston : ci ) ( today $0 ) ) )
|
( count $0 ( and ( flight $0 ) ( airline $0 ANON_ENTITY : al ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( today $0 ) ) )
|
atis_1064
|
i need a first class ticket on united airlines from denver to baltimore scheduled for december seventeenth
|
( lambda $0 e ( and ( airline $0 ua : al ) ( class_type $0 first : cl ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( day_number $0 17 : dn ) ( month $0 december : mn ) ) )
|
( lambda $0 e ( and ( airline $0 ANON_ENTITY : al ) ( class_type $0 ANON_ENTITY : cl ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ) )
|
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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( class_type $1 ANON_ENTITY : cl ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3829
|
what are the coach fares from la to charlotte monday morning
|
( lambda $0 e ( exists $1 ( and ( class_type $1 coach : cl ) ( during_day $1 morning : pd ) ( from $1 los_angeles : ci ) ( to $1 charlotte : ci ) ( day $1 monday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( class_type $1 ANON_ENTITY : cl ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2037
|
list all flights from new york to las vegas that fly nonstop on sunday and list flights from memphis to las vegas that fly nonstop on sunday
|
( lambda $0 e ( or ( and ( flight $0 ) ( nonstop $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ( and ( flight $0 ) ( nonstop $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ) )
|
( lambda $0 e ( or ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ) )
|
atis_2215
|
list nonstop flights on sunday from new york to las vegas and list nonstop flights on sunday from memphis to las vegas
|
( lambda $0 e ( or ( and ( flight $0 ) ( nonstop $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ( and ( flight $0 ) ( nonstop $0 ) ( from $0 memphis : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) ) )
|
( lambda $0 e ( or ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ( and ( flight $0 ) ( nonstop $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( day $0 ANON_ENTITY : da ) ) ) )
|
atis_3807
|
what are the cheapest fares for flights from newark to la leaving wednesday after 3pm
|
( min $0 ( exists $1 ( and ( flight $1 ) ( > ( departure_time $1 ) 1500 : ti ) ( from $1 newark : ci ) ( to $1 los_angeles : ci ) ( day $1 wednesday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
( min $0 ( exists $1 ( and ( flight $1 ) ( > ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( day $1 ANON_ENTITY : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2497
|
please find a flight round trip from los angeles to tacoma washington with a stopover in san francisco not exceeding the price of 300 dollars for june tenth 1993
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 los_angeles : ci ) ( to $0 tacoma : ci ) ( stop $0 san_francisco : ci ) ( < ( cost $0 ) 300 : do ) ( day_number $0 10 : dn ) ( month $0 june : mn ) ( year $0 1993 : yr ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ( < ( cost $0 ) ANON_ENTITY : do ) ( day_number $0 ANON_ENTITY : dn ) ( month $0 ANON_ENTITY : mn ) ( year $0 ANON_ENTITY : yr ) ) )
|
atis_2252
|
list the flights arriving in baltimore from denver on august third
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ( month_arrival $0 august : mn ) ( day_number_arrival $0 3 : dn ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( month_arrival $0 ANON_ENTITY : mn ) ( day_number_arrival $0 ANON_ENTITY : dn ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( month_arrival $0 ANON_ENTITY : mn ) ( day_number_arrival $0 ANON_ENTITY : dn ) ) )
|
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 ) ) )
|
( lambda $0 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( month_arrival $0 ANON_ENTITY : mn ) ( day_number_arrival $0 ANON_ENTITY : dn ) ) )
|
atis_2327
|
may i please see airlines and flight numbers from new york to toronto on the same date june seventeenth also arriving in toronto before noon thank you
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( < ( arrival_time $2 ) 1200 : ti ) ( from $2 new_york : ci ) ( to $2 toronto : ci ) ( day_number $2 17 : dn ) ( month $2 june : mn ) ( = ( flight_number $2 ) $1 ) ( = ( airline : e $2 ) $0 ) ) ) ) )
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( < ( arrival_time $2 ) ANON_ENTITY : ti ) ( from $2 ANON_ENTITY : ci ) ( to $2 ANON_ENTITY : ci ) ( day_number $2 ANON_ENTITY : dn ) ( month $2 ANON_ENTITY : mn ) ( = ( flight_number $2 ) $1 ) ( = ( ANON_ENTITY : e $2 ) $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 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( > ( departure_time $1 ) ANON_ENTITY : ti ) ( < ( departure_time $1 ) ANON_ENTITY : ti ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_401
|
does any airline have an afternoon flight from atlanta to boston
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 afternoon : pd ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_402
|
does any airline have an afternoon flight from boston to oakland
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 afternoon : pd ) ( from $1 boston : ci ) ( to $1 oakland : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 ANON_ENTITY : pd ) ( from $1 ANON_ENTITY : ci ) ( to $1 ANON_ENTITY : ci ) ( = ( ANON_ENTITY : e $1 ) $0 ) ) ) )
|
atis_2852
|
show me airline abbreviations
|
( lambda $0 e ( airline $0 ) )
|
( lambda $0 e ( airline $0 ) )
|
atis_3296
|
show me the airlines
|
( lambda $0 e ( airline $0 ) )
|
( lambda $0 e ( airline $0 ) )
|
atis_3735
|
what airlines are there
|
( lambda $0 e ( airline $0 ) )
|
( lambda $0 e ( airline $0 ) )
|
atis_4965
|
which airlines are represented in the database
|
( lambda $0 e ( airline $0 ) )
|
( lambda $0 e ( airline $0 ) )
|
atis_2798
|
show flights and fare information from pittsburgh connecting through denver to oakland
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ( stop $0 denver : ci ) ( = ( fare $0 ) $1 ) ) ) )
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ( = ( fare $0 ) $1 ) ) ) )
|
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 ) ) ) ) )
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( to $1 $0 ) ) ) ) )
|
atis_948
|
how many cities are served by continental with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 co : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( to $1 $0 ) ) ) ) )
|
atis_949
|
how many cities are served by delta airlines with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 dl : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( to $1 $0 ) ) ) ) )
|
atis_950
|
how many cities are served by eastern with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( to $1 $0 ) ) ) ) )
|
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 ) ) ) ) )
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( to $1 $0 ) ) ) ) )
|
atis_952
|
how many cities are served by twa with first class flights
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 tw : al ) ( class_type $1 first : cl ) ( to $1 $0 ) ) ) ) )
|
( count $0 ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 ANON_ENTITY : al ) ( class_type $1 ANON_ENTITY : cl ) ( to $1 $0 ) ) ) ) )
|
atis_105
|
anything from baltimore or washington with a stopover in denver going to san francisco
|
( lambda $0 e ( and ( or ( from $0 baltimore : ci ) ( from $0 washington : ci ) ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
( lambda $0 e ( and ( or ( from $0 ANON_ENTITY : ci ) ( from $0 ANON_ENTITY : ci ) ) ( to $0 ANON_ENTITY : ci ) ( stop $0 ANON_ENTITY : ci ) ) )
|
atis_329
|
describe fare code qx
|
qx : fb
|
ANON_ENTITY : fb
|
atis_458
|
explain fare code qx
|
qx : fb
|
ANON_ENTITY : fb
|
atis_463
|
explain the fare code q
|
q : fb
|
ANON_ENTITY : fb
|
atis_467
|
fare code y what does that mean
|
y : fb
|
ANON_ENTITY : fb
|
atis_1786
|
i'd like to see the fare code again qx
|
qx : fb
|
ANON_ENTITY : fb
|
atis_2494
|
please explain fare code f
|
f : fb
|
ANON_ENTITY : fb
|
atis_3987
|
what class is fare code q
|
q : fb
|
ANON_ENTITY : fb
|
atis_4005
|
what does code qw mean
|
qx : fb
|
ANON_ENTITY : fb
|
atis_4006
|
what does code y mean
|
y : fb
|
ANON_ENTITY : fb
|
atis_4007
|
what does code y stand for
|
y : fb
|
ANON_ENTITY : fb
|
atis_4008
|
what does code yn mean
|
yn : fb
|
ANON_ENTITY : fb
|
atis_4014
|
what does fare code bh mean
|
bh : fb
|
ANON_ENTITY : fb
|
atis_4015
|
what does fare code f mean
|
f : fb
|
ANON_ENTITY : fb
|
atis_4016
|
what does fare code h mean
|
h : fb
|
ANON_ENTITY : fb
|
atis_4017
|
what does fare code m mean
|
m : fb
|
ANON_ENTITY : fb
|
atis_4018
|
what does fare code q mean
|
q : fb
|
ANON_ENTITY : fb
|
atis_4019
|
what does fare code qo mean
|
qo : fb
|
ANON_ENTITY : fb
|
atis_4020
|
what does fare code qw mean
|
qw : fb
|
ANON_ENTITY : fb
|
atis_4021
|
what does fare code qx mean
|
qx : fb
|
ANON_ENTITY : fb
|
atis_4022
|
what does fare code y mean
|
y : fb
|
ANON_ENTITY : fb
|
atis_4025
|
what does fn under fare code mean
|
fn : fb
|
ANON_ENTITY : fb
|
atis_4046
|
what does the fare code f mean
|
f : fb
|
ANON_ENTITY : fb
|
atis_4047
|
what does the fare code qw mean
|
qw : fb
|
ANON_ENTITY : fb
|
atis_4048
|
what does the fare code qx mean
|
qx : fb
|
ANON_ENTITY : fb
|
atis_4049
|
what does the fare code y mean
|
y : fb
|
ANON_ENTITY : fb
|
atis_4050
|
what does the fare code yn mean
|
yn : fb
|
ANON_ENTITY : fb
|
atis_4057
|
what does yn stand for
|
yn : fb
|
ANON_ENTITY : fb
|
atis_4395
|
what is booking class c
|
c : fb
|
ANON_ENTITY : fb
|
atis_4401
|
what is fare class h
|
h : fb
|
ANON_ENTITY : fb
|
atis_4402
|
what is fare code c
|
c : fb
|
ANON_ENTITY : fb
|
atis_4403
|
what is fare code f
|
f : fb
|
ANON_ENTITY : fb
|
atis_4404
|
what is fare code fn
|
fn : fb
|
ANON_ENTITY : fb
|
atis_4405
|
what is fare code h
|
h : fb
|
ANON_ENTITY : fb
|
atis_4406
|
what is fare code m
|
m : fb
|
ANON_ENTITY : fb
|
atis_4407
|
what is fare code q
|
q : fb
|
ANON_ENTITY : fb
|
atis_4408
|
what is fare code qo mean
|
qo : fb
|
ANON_ENTITY : fb
|
atis_4409
|
what is fare code qw
|
qw : fb
|
ANON_ENTITY : fb
|
atis_4410
|
what is fare code y mean
|
y : fb
|
ANON_ENTITY : fb
|
atis_4586
|
what is the fare code y and what is the fare code h
|
h : fb
|
ANON_ENTITY : fb
|
atis_4752
|
what is the yn code
|
yn : fb
|
ANON_ENTITY : fb
|
atis_4866
|
what's fare code yn
|
yn : fb
|
ANON_ENTITY : fb
|
atis_211
|
can you list flights from washington to toronto with the lowest one way fares
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 washington : ci ) ( to $0 toronto : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_1501
|
i would like the flight from atlanta to denver that has the cheapest one way fare
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_1698
|
i'd like to book the cheapest one way flight from denver to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_1818
|
i'm looking for a flight traveling from boston to denver one way and the cheapest way possible
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_2041
|
list all flights from tampa florida to miami that are the cheapest one way
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 tampa : ci ) ( to $0 miami : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_2234
|
list the cheapest one way flight from miami florida to charlotte north carolina
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 miami : ci ) ( to $0 charlotte : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_3319
|
show me the cheapest one way flight from atlanta to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_3322
|
show me the cheapest one way flights from montreal to orlando
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 montreal : ci ) ( to $0 orlando : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_3323
|
show me the cheapest one way flights from orlando to montreal
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 orlando : ci ) ( to $0 montreal : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_3810
|
what are the cheapest one way flights from atlanta to denver
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_3811
|
what are the cheapest one way flights from atlanta to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_3812
|
what are the cheapest one way flights from denver to atlanta
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_3813
|
what are the cheapest one way flights from pittsburgh to atlanta
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_4456
|
what is the cheapest flight from atlanta to pittsburgh one way
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_4467
|
what is the cheapest flight from pittsburgh to atlanta one way
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_4480
|
what is the cheapest one way flight from atlanta to boston
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_4882
|
what's the cheapest one way flight from denver to pittsburgh
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
atis_4883
|
what's the cheapest one way flight from oakland to boston
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 oakland : ci ) ( to $0 boston : ci ) ) ( fare $0 ) )
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 ANON_ENTITY : ci ) ( to $0 ANON_ENTITY : ci ) ) ( fare $0 ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.