qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_3980
|
what car rentals are available next sunday from denver airport
|
( lambda $0 e ( and ( from_airport $0 den : ap ) ( day $0 sunday : da ) ( rental_car $0 ) ) )
|
atis_1107
|
i need a flight from new york to toronto thursday may six arriving by noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 new_york : ci ) ( to $0 toronto : ci ) ( day $0 thursday : da ) ( day_number $0 6 : dn ) ( month $0 may : mn ) ) )
|
atis_3825
|
what are the coach fares for flights from charlotte to newark tuesday evening
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( class_type $1 coach : cl ) ( during_day $1 evening : pd ) ( from $1 charlotte : ci ) ( to $1 newark : ci ) ( day $1 tuesday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2508
|
please give me a list of all the flights between dallas and baltimore and their cost
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_1797
|
i'd need information please on a flight from washington dc san francisco california
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_1508
|
i would like to arrange a flight from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_127
|
are there any flights from dallas fort worth to boston leaving before 10am
|
( lambda $0 e ( and ( flight $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 dallas : ci ) ( to $0 boston : ci ) ) )
|
atis_4829
|
what type of aircraft are used on flights from cleveland to dallas that leave before noon
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 1200 : ti ) ( from $1 cleveland : ci ) ( to $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_2437
|
on april twenty would like to fly from denver to pittsburgh at about 8 o'clock in the morning
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 800 : ti ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ( day_number $0 20 : dn ) ( month $0 april : mn ) ) )
|
atis_403
|
does any airline have an early afternoon flight from boston to denver
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( during_day $1 early : pd ) ( during_day $1 afternoon : pd ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_150
|
are there any other cities that i can fly from boston to dallas through that i can get a flight earlier than 1017 in the morning
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( < ( departure_time $1 ) 1017 : ti ) ( from $1 boston : ci ) ( to $1 dallas : ci ) ( stop $1 $0 ) ) ) )
|
atis_4945
|
where does canadian airlines international fly to
|
( lambda $0 e ( and ( exists $1 ( and ( flight $1 ) ( airline $1 cp : al ) ( to $1 $0 ) ) ) ) )
|
atis_2444
|
on flight us air 2153 from san francisco to baltimore what time and what city does the plane stop in between
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( from $2 san_francisco : ci ) ( to $2 baltimore : ci ) ( airline $2 us : al ) ( flight_number $2 2153 : fn ) ( stop $2 $0 ) ( = ( stop_arrival_time $2 ) $1 ) ) ) ) )
|
atis_2442
|
on eastern flight 825 flying from atlanta to denver can you tell me what type of aircraft is used on a flight when it leaves at 555
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ea : al ) ( flight_number $1 825 : fn ) ( departure_time $1 555 : ti ) ( from $1 atlanta : ci ) ( to $1 denver : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_62
|
all northwest and united airlines flights with stopovers in denver
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 nw : al ) ( airline $0 ua : al ) ) ( stop $0 denver : ci ) ) )
|
atis_2544
|
please list all airline flights between denver and boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 boston : ci ) ) )
|
atis_4191
|
what flights do you have between pittsburgh and atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3109
|
show me flights between denver and baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3557
|
show me the itinerary of the connecting flight from boston to denver that departs boston at 10am
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( departure_time $0 1000 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_4473
|
what is the cheapest one way fare from any city to another
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1576
|
i would like to fly to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( to $0 baltimore : ci ) ) )
|
atis_3632
|
show the flights from denver to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3590
|
show me the nonstop flights from houston to dallas
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 houston : ci ) ( to $0 dallas : ci ) ) )
|
atis_3285
|
show me the airlines between boston and toronto
|
( lambda $0 e ( exists $1 ( and ( from $1 boston : ci ) ( to $1 toronto : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_2153
|
list flights from denver to san francisco no denver to philadelphia
|
( lambda $0 e ( and ( to $0 philadelphia : ci ) ( not ( to $0 san_francisco : ci ) ) ( from $0 denver : ci ) ( flight $0 ) ( from $0 denver : ci ) ) )
|
atis_4332
|
what flights leave philadelphia for dallas and depart before noon on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_3676
|
thank you for that information now i would like information on a flight on april sixteen from atlanta to philadelphia early in the morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day_number $0 16 : dn ) ( month $0 april : mn ) ) )
|
atis_222
|
can you show me flights from dallas to atlanta on tuesday night
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
atis_4890
|
what's the difference between fare code q and fare code b
|
( lambda $0 e ( and ( fare_basis_code $0 q : fb ) ( fare_basis_code $0 f : fb ) ) )
|
atis_120
|
are there any flights from atlanta to denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ) )
|
atis_2380
|
now show me all round trip flights from burbank to seattle that arrive before 7pm in seattle
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 burbank : ci ) ( to $0 seattle : ci ) ) )
|
atis_3134
|
show me flights from boston to denver early am on tuesday
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day $0 tuesday : da ) ) )
|
atis_4289
|
what flights go from denver to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
atis_2283
|
list the nonstop flights from miami to new york on a sunday along with the fares that are less than 466 dollars
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( nonstop $0 ) ( < ( fare $0 ) 466 : do ) ( from $0 miami : ci ) ( to $0 new_york : ci ) ( day $0 sunday : da ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_181
|
can i have a rental car in houston
|
( lambda $0 e ( and ( rental_car $0 ) ( to_city $0 houston : ci ) ) )
|
atis_968
|
how many flights does alaska airlines have to burbank
|
( count $0 ( and ( flight $0 ) ( airline $0 as : al ) ( to $0 burbank : ci ) ) )
|
atis_627
|
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_3330
|
show me the cities served by nationair
|
( lambda $0 e ( and ( city $0 ) ( services nx : al $0 ) ) )
|
atis_4941
|
when is the earliest flight from boston to denver
|
( departure_time ( argmin $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) ) )
|
atis_3454
|
show me the flights from denver to pittsburgh and atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( or ( to $0 pittsburgh : ci ) ( to $0 atlanta : ci ) ) ) )
|
atis_1365
|
i want to go from denver to atlanta round trip and make a stop at pittsburgh is this possible
|
( lambda $0 e ( and ( from $0 denver : ci ) ( to $0 atlanta : ci ) ( stop $0 pittsburgh : ci ) ) )
|
atis_4427
|
what is the aircraft type with the greatest seating capacity
|
( argmax $0 ( aircraft $0 ) ( capacity $0 ) )
|
atis_4006
|
what does code y mean
|
y : fb
|
atis_614
|
flights from charlotte to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3078
|
show me boston ground transportation
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ) )
|
atis_266
|
cleveland to miami on wednesday arriving before 4pm
|
( lambda $0 e ( and ( < ( arrival_time $0 ) 1600 : ti ) ( from $0 cleveland : ci ) ( to $0 miami : ci ) ( day $0 wednesday : da ) ) )
|
atis_3841
|
what are the evening flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3973
|
what are the sunday flights from oakland to washington dc
|
( lambda $0 e ( and ( flight $0 ) ( from $0 oakland : ci ) ( to $0 washington : ci ) ( day $0 sunday : da ) ) )
|
atis_1932
|
is there an early morning delta airlines flight between boston and washington
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 boston : ci ) ( to $0 washington : ci ) ) )
|
atis_2199
|
list ground transportation in detroit
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 detroit : ci ) ) )
|
atis_3190
|
show me flights from pittsburgh to san francisco on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
|
atis_1807
|
i'm interested in flying from atlanta to boston i'd like to fly during breakfast
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 breakfast : pd ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_225
|
can you show me the available flights from baltimore to dallas with economy fares
|
( lambda $0 e ( and ( flight $0 ) ( economy $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_4201
|
what flights do you have today from san francisco to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( today $0 ) ) )
|
atis_4994
|
which cities are serviced by both american and delta airlines
|
( lambda $0 e ( and ( city $0 ) ( services aa : al $0 ) ( services dl : al $0 ) ) )
|
atis_2068
|
list all flights on united from san francisco to boston with fare code qx
|
( lambda $0 e ( and ( flight $0 ) ( fare_basis_code $0 qx : fb ) ( airline $0 ua : al ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ) )
|
atis_2098
|
list all the flights that depart from general mitchell international
|
( lambda $0 e ( and ( flight $0 ) ( from $0 mke : ap ) ) )
|
atis_1186
|
i need flight information for flights departing from cleveland to milwaukee on wednesday after 5pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1700 : ti ) ( from $0 cleveland : ci ) ( to $0 milwaukee : ci ) ( day $0 wednesday : da ) ) )
|
atis_2963
|
show me all flights from pittsburgh to oakland that arrive after 10am
|
( lambda $0 e ( and ( flight $0 ) ( > ( arrival_time $0 ) 1000 : ti ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
|
atis_4038
|
what does restriction ap/57
|
ap_57 : rc
|
atis_2489
|
pittsburgh to boston saturday
|
( lambda $0 e ( and ( from $0 pittsburgh : ci ) ( to $0 boston : ci ) ( day $0 saturday : da ) ) )
|
atis_2186
|
list flights from pittsburgh to los angeles which leave on thursday after 5pm
|
( 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_4647
|
what is the last flight of the day to leave baltimore for boston
|
( argmax $0 ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_2870
|
show me all first class fares from new york to miami leaving on a tuesday
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 new_york : ci ) ( to $1 miami : ci ) ( day $1 tuesday : da ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2349
|
new york to las vegas sunday afternoon
|
( lambda $0 e ( and ( during_day $0 afternoon : pd ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
|
atis_3730
|
what airline is us
|
us : al
|
atis_284
|
could you please find me the cheapest one way fare from boston to philadelphia
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 boston : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3306
|
show me the cheapest fares from san diego to miami one way
|
( min $0 ( exists $1 ( and ( oneway $1 ) ( from $1 san_diego : ci ) ( to $1 miami : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_920
|
how do i get downtown from the toronto airport
|
( lambda $0 e ( and ( from_airport $0 toronto : ci ) ) )
|
atis_4553
|
what is the earliest flight from ontario to memphis
|
( argmin $0 ( and ( flight $0 ) ( from $0 ontario : ci ) ( to $0 memphis : ci ) ) ( departure_time $0 ) )
|
atis_2392
|
of the flights available from dallas to baltimore on august third which airline has the least expensive flight
|
( airline : e ( argmin $0 ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day_number $0 3 : dn ) ( month $0 august : mn ) ) ( fare $0 ) ) )
|
atis_2354
|
next sunday flights from miami to cleveland after 1200 hours
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 miami : ci ) ( to $0 cleveland : ci ) ( day $0 sunday : da ) ) )
|
atis_5014
|
which flights on northwest and united airlines stop in denver before noon
|
( lambda $0 e ( and ( flight $0 ) ( or ( airline $0 ua : al ) ( airline $0 nw : al ) ) ( < ( arrival_time $0 ) 1200 : ti ) ( stop $0 denver : ci ) ) )
|
atis_922
|
how do i get from bwi to washington
|
( lambda $0 e ( and ( to_city $0 washington : ci ) ( from_airport $0 bwi : ap ) ) )
|
atis_4822
|
what time is the last flight from washington to san francisco
|
( departure_time ( argmax $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) ( departure_time $0 ) ) )
|
atis_1402
|
i would like a flight between denver and san francisco leaving from denver in the afternoon and arriving at 5pm
|
( lambda $0 e ( and ( flight $0 ) ( arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4894
|
what's the earliest flight from boston to bwi that serves dinner
|
( argmin $0 ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 boston : ci ) ( to $0 bwi : ap ) ) ( departure_time $0 ) )
|
atis_4263
|
what flights from st. paul to kansas city on friday with supper served
|
( lambda $0 e ( and ( flight $0 ) ( meal $0 dinner : me ) ( from $0 st_paul : ci ) ( to $0 kansas_city : ci ) ( day $0 friday : da ) ) )
|
atis_2469
|
one way flights from ontario to tacoma leaving before 10am on any day and first class
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( class_type $0 first : cl ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 ontario : ci ) ( to $0 tacoma : ci ) ) )
|
atis_2273
|
list the flights from toronto to salt lake city
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_4108
|
what flights are available monday from san francisco to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 monday : da ) ) )
|
atis_1546
|
i would like to fly from atlanta to san francisco with a stopover in dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_617
|
flights from cincinnati to denver on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 cincinnati : ci ) ( to $0 denver : ci ) ) )
|
atis_1092
|
i need a flight from kansas city to chicago next wednesday that reaches chicago around 7 in the evening
|
( 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_4186
|
what flights depart from pittsburgh and arrive in oakland california
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 oakland : ci ) ) )
|
atis_612
|
flights from boston flights from philadelphia to boston on monday
|
( lambda $0 e ( and ( flight $0 ) ( flight $0 ) ( from $0 philadelphia : ci ) ( from $0 boston : ci ) ( to $0 boston : ci ) ( day $0 monday : da ) ) )
|
atis_885
|
ground transportation in san jose
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_jose : ci ) ) )
|
atis_3444
|
show me the flights from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_777
|
give me flights from san francisco to boston on thursday afternoon
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 san_francisco : ci ) ( to $0 boston : ci ) ( day $0 thursday : da ) ) )
|
atis_1638
|
i'd like a flight on american from newark to nashville
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 newark : ci ) ( to $0 nashville : ci ) ) )
|
atis_3252
|
show me one way flights from indianapolis to memphis before 10am on any day
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( < ( departure_time $0 ) 1000 : ti ) ( from $0 indianapolis : ci ) ( to $0 memphis : ci ) ) )
|
atis_4750
|
what is the transportation time from the airport to boston
|
( lambda $0 e ( exists $1 ( and ( minutes_distant $1 $0 ) ( to_city $1 boston : ci ) ( from_airport $1 boston : ci ) ) ) )
|
atis_4916
|
what's the latest flight from houston to dallas
|
( argmax $0 ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 dallas : ci ) ) ( departure_time $0 ) )
|
atis_28
|
all flights from baltimore to philadelphia less than 1000 dollars
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 1000 : do ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3280
|
show me the afternoon flights from washington to boston
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 washington : ci ) ( to $0 boston : ci ) ) )
|
atis_3604
|
show me the round trip tickets from baltimore to atlanta
|
( lambda $0 e ( and ( round_trip $0 ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3393
|
show me the flights from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_74
|
all round trip flights between new york and miami coach fare
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( class_type $0 coach : cl ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_4078
|
what flights are available friday afternoon from atlanta to dallas
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 atlanta : ci ) ( to $0 dallas : ci ) ( day $0 friday : da ) ) )
|
atis_3505
|
show me the flights from san francisco to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 dallas : ci ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.