qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_4727
|
what is the schedule of flights from boston to denver next monday
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 denver : ci ) ( day $1 monday : da ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_1851
|
information on american airlines from fort worth texas to philadelphia
|
( lambda $0 e ( and ( airline $0 aa : al ) ( from $0 fort_worth : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4623
|
what is the first flight that travels from atlanta to baltimore that serves lunch
|
( argmin $0 ( and ( flight $0 ) ( meal $0 lunch : me ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) ( departure_time $0 ) )
|
atis_3003
|
show me all midwest express flights from detroit to chicago
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 yx : al ) ( from $0 detroit : ci ) ( to $0 chicago : ci ) ) )
|
atis_3627
|
show morning flights from philadelphia to dallas
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_1802
|
i'm in miami and i'd like to travel to las vegas on sunday
|
( lambda $0 e ( and ( from $0 miami : ci ) ( to $0 las_vegas : ci ) ( day $0 sunday : da ) ) )
|
atis_2229
|
list the alaska airlines flights departing from burbank
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 as : al ) ( from $0 burbank : ci ) ) )
|
atis_3670
|
tell me distance from orlando airport to the city
|
( lambda $0 e ( and ( miles_distant $0 ) ( to_city $0 orlando : ci ) ( from_airport $0 mco : ap ) ) )
|
atis_178
|
can i go from boston to san francisco with a stopover in denver
|
( lambda $0 e ( and ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
atis_498
|
find me a flight from atlanta to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_2388
|
oakland to philadelphia saturday
|
( lambda $0 e ( and ( from $0 oakland : ci ) ( to $0 philadelphia : ci ) ( day $0 saturday : da ) ) )
|
atis_484
|
find a flight on delta from philadelphia to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4293
|
what flights go from newark to boston after 1024 in the morning
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1024 : ti ) ( from $0 newark : ci ) ( to $0 boston : ci ) ) )
|
atis_4656
|
what is the latest flight between washington and boston
|
( argmax $0 ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_3786
|
what are all the flights from boston to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) )
|
atis_4493
|
what is the coach economy class night service from boston to san francisco
|
( lambda $0 e ( exists $1 ( and ( class_type $1 coach : cl ) ( during_day $1 late : pd ) ( from $1 boston : ci ) ( to $1 san_francisco : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_2246
|
list the flight from philadelphia to san francisco on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3613
|
show me the united flights from denver to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4005
|
what does code qw mean
|
qx : fb
|
atis_4434
|
what is the available ground transportation between san francisco and downtown
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_francisco : ci ) ( from_airport $0 san_francisco : ci ) ) )
|
atis_877
|
ground transportation from airport in boston to downtown boston
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
|
atis_1166
|
i need a return flight from denver to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 atlanta : ci ) ) )
|
atis_1689
|
i'd like to arrange for two friends to fly into los angeles next saturday evening one of the people is coming from kansas city and the other is coming from las vegas
|
( lambda $0 e ( and ( flight $0 ) ( to $0 los_angeles : ci ) ( or ( from $0 kansas_city : ci ) ( from $0 las_vegas : ci ) ) ) )
|
atis_1340
|
i want to fly from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4282
|
what flights go from chicago to seattle on saturday on continental airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 co : al ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
atis_273
|
could i have a listing of flights leaving boston going to baltimore leaving wednesday after 2100
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 2100 : ti ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ( day $0 wednesday : da ) ) )
|
atis_3387
|
show me the flights before 11am on august second from boston to denver on delta
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( < ( departure_time $0 ) 1100 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
|
atis_4561
|
what is the earliest flight i can get from baltimore to boston
|
( argmin $0 ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_759
|
give me a list of flights between pittsburgh and baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ) )
|
atis_2218
|
list round trip flights between boston and oakland using twa
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( airline $0 tw : al ) ( from $0 boston : ci ) ( to $0 oakland : ci ) ) )
|
atis_1597
|
i would like to make a reservation for a flight to denver from philadelphia on this coming sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 denver : ci ) ( day $0 sunday : da ) ) )
|
atis_1356
|
i want to go and take a plane in atlanta and fly to boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_2821
|
show flights from philadelphia to dallas on saturday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ( day $0 saturday : da ) ) )
|
atis_3721
|
what airline is a s as in sam
|
as : al
|
atis_4575
|
what is the earliest flight that goes from atlanta to washington on thursday
|
( argmin $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) ( departure_time $0 ) )
|
atis_1249
|
i need to go from philadelphia to dallas
|
( lambda $0 e ( and ( from $0 philadelphia : ci ) ( to $0 dallas : ci ) ) )
|
atis_3094
|
show me fares from miami to new york
|
( lambda $0 e ( exists $1 ( and ( from $1 miami : ci ) ( to $1 new_york : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1598
|
i would like to make a round trip between washington and san francisco
|
( lambda $0 e ( and ( round_trip $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_992
|
how many people will a 757 hold
|
( capacity 757 : ac )
|
atis_2093
|
list all the flights from atlanta to philadelphia on august the first
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 philadelphia : ci ) ( day_number $0 1 : dn ) ( month $0 august : mn ) ) )
|
atis_3345
|
show me the earliest flight from san jose to pittsburgh that serves a snack
|
( argmin $0 ( and ( flight $0 ) ( meal $0 snack : me ) ( from $0 san_jose : ci ) ( to $0 pittsburgh : ci ) ) ( departure_time $0 ) )
|
atis_2515
|
please give me fares from denver to philadelphia
|
( lambda $0 e ( exists $1 ( and ( from $1 denver : ci ) ( to $1 philadelphia : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_3178
|
show me flights from philadelphia to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4769
|
what kind of aircraft will i be flying on if i take a first class american airlines flight from philadelphia to dallas
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 aa : al ) ( class_type $1 first : cl ) ( from $1 philadelphia : ci ) ( to $1 dallas : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_1274
|
i want a flight from boston to denver that stops in pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( stop $0 pittsburgh : ci ) ) )
|
atis_1843
|
in the month of december are there any flights from atlanta to denver that stop in boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( stop $0 boston : ci ) ( month $0 december : mn ) ) )
|
atis_4934
|
what's the schedule of flights from atlanta to boston on august first
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 atlanta : ci ) ( to $1 boston : ci ) ( day_number $1 1 : dn ) ( month $1 august : mn ) ( = ( departure_time $1 ) $0 ) ) ) )
|
atis_1466
|
i would like flights between boston and atlanta on july eleven departing at one in the afternoon
|
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1300 : ti ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ( day_number $0 11 : dn ) ( month $0 july : mn ) ) )
|
atis_3544
|
show me the flights that go from tacoma to miami
|
( lambda $0 e ( and ( flight $0 ) ( from $0 tacoma : ci ) ( to $0 miami : ci ) ) )
|
atis_319
|
dallas to san francisco leaving after 4 in the afternoon please
|
( lambda $0 e ( and ( > ( departure_time $0 ) 1600 : ti ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_184
|
can i take a single airline from la to charlotte to newark back to la
|
( lambda $0 e ( and ( airline $0 ) ( exists $1 ( and ( flight $1 ) ( from $1 los_angeles : ci ) ( to $1 charlotte : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 charlotte : ci ) ( to $1 newark : ci ) ( airline $1 $0 ) ) ) ( exists $1 ( and ( flight $1 ) ( from $1 newark : ci ) ( to $1 los_angeles : ci ) ( airline $1 $0 ) ) ) ) )
|
atis_4199
|
what flights do you have leaving boston going to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4741
|
what is the seating capacity of the various airplanes that united airlines uses
|
( lambda $0 e ( lambda $1 e ( exists $2 ( and ( flight $2 ) ( airline $2 ua : al ) ( = ( aircraft_code $2 ) $1 ) ( = ( capacity $2 ) $0 ) ) ) ) )
|
atis_4157
|
what flights are there from new york to las vegas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 las_vegas : ci ) ) )
|
atis_4102
|
what flights are available from pittsburgh to baltimore on thursday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day $0 thursday : da ) ) )
|
atis_4266
|
what flights from toronto to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 toronto : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_4019
|
what does fare code qo mean
|
qo : fb
|
atis_2028
|
list all flights from chicago to seattle on continental which depart on saturday and serve meals
|
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( airline $0 co : al ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day $0 saturday : da ) ) )
|
atis_839
|
give me the flights from san francisco to washington dc for december first
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 washington : ci ) ( day_number $0 1 : dn ) ( month $0 december : mn ) ) )
|
atis_3983
|
what cities does northwest fly out of
|
( lambda $0 e ( and ( city $0 ) ( exists $1 ( and ( flight $1 ) ( airline $1 nw : al ) ( from $1 $0 ) ) ) ) )
|
atis_4627
|
what is the ground transport in denver
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 denver : ci ) ) )
|
atis_2792
|
show departures and arrivals in atlanta for american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( or ( from $0 atlanta : ci ) ( to $0 atlanta : ci ) ) ) )
|
atis_539
|
find travel arrangements for a round trip flight from dallas to pittsburgh arriving after 8pm
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( > ( arrival_time $0 ) 2000 : ti ) ( from $0 dallas : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_1154
|
i need a list of late afternoon flights from chicago to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( during_day $0 afternoon : pd ) ( from $0 chicago : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_3690
|
tuesday morning flights between charlotte and baltimore
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 charlotte : ci ) ( to $0 baltimore : ci ) ( day $0 tuesday : da ) ) )
|
atis_801
|
give me the earliest flight tomorrow from st. petersburg to milwaukee on a airline other than twa
|
( argmin $0 ( and ( flight $0 ) ( not ( airline $0 tw : al ) ) ( from $0 st_petersburg : ci ) ( to $0 milwaukee : ci ) ( tomorrow $0 ) ) ( departure_time $0 ) )
|
atis_2245
|
list the first class flights from baltimore to denver
|
( lambda $0 e ( and ( flight $0 ) ( class_type $0 first : cl ) ( from $0 baltimore : ci ) ( to $0 denver : ci ) ) )
|
atis_4261
|
what flights from st. paul to kansas city on friday with dinner 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_1135
|
i need a flight from st. petersburg to miami for thursday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_petersburg : ci ) ( to $0 miami : ci ) ( day $0 thursday : da ) ) )
|
atis_3605
|
show me the round trip tickets from baltimore to dallas
|
( lambda $0 e ( and ( round_trip $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_3470
|
show me the flights from montreal to chicago
|
( lambda $0 e ( and ( flight $0 ) ( from $0 montreal : ci ) ( to $0 chicago : ci ) ) )
|
atis_210
|
can you list flights from boston to washington with the lowest one way fares that leave on saturday
|
( argmin $0 ( and ( flight $0 ) ( oneway $0 ) ( from $0 boston : ci ) ( to $0 washington : ci ) ( day $0 saturday : da ) ) ( fare $0 ) )
|
atis_4438
|
what is the cheapest coach flight between dallas and baltimore leaving august tenth
|
( argmin $0 ( and ( flight $0 ) ( class_type $0 coach : cl ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day_number $0 10 : dn ) ( month $0 august : mn ) ) ( fare $0 ) )
|
atis_2512
|
please give me all the flights from long beach california to memphis tennessee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 long_beach : ci ) ( to $0 memphis : ci ) ) )
|
atis_65
|
all right do you have a flight from atlanta to boston
|
( lambda $0 e ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 boston : ci ) ) )
|
atis_863
|
great now what i want to find out is on april twentieth from washington to denver do you have a flight least expensive fare around 5 o'clock in the morning
|
( argmin $0 ( and ( flight $0 ) ( approx_departure_time $0 500 : ti ) ( from $0 washington : ci ) ( to $0 denver : ci ) ( day_number $0 20 : dn ) ( month $0 april : mn ) ) ( fare $0 ) )
|
atis_374
|
do you have a united flight from dallas to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 dallas : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4577
|
what is the earliest flight that i can get from bwi to boston logan
|
( argmin $0 ( and ( flight $0 ) ( from $0 bwi : ap ) ( to $0 bos : ap ) ) ( departure_time $0 ) )
|
atis_4148
|
what flights are there from houston to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 houston : ci ) ( to $0 dallas : ci ) ) )
|
atis_4970
|
which airlines fly between toronto and san diego
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 toronto : ci ) ( to $1 san_diego : ci ) ( = ( airline : e $1 ) $0 ) ) ) )
|
atis_1132
|
i need a flight from san francisco to pittsburgh and then pittsburgh to new york and new york to san francisco
|
( lambda $0 e ( lambda $1 e ( lambda $2 e ( and ( flight $0 ) ( flight $1 ) ( flight $2 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( from $1 pittsburgh : ci ) ( to $1 new_york : ci ) ( from $2 new_york : ci ) ( to $2 san_francisco : ci ) ) ) ) )
|
atis_3977
|
what are your flights from dallas to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ) )
|
atis_3069
|
show me all the united flights from boston to denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_2557
|
please list all flights from nashville to memphis on monday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 nashville : ci ) ( to $0 memphis : ci ) ( day $0 monday : da ) ) )
|
atis_1026
|
how much is a flight from washington to montreal
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 washington : ci ) ( to $1 montreal : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_2328
|
may i see all nonstop flights from st. petersburg to charlotte
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 st_petersburg : ci ) ( to $0 charlotte : ci ) ) )
|
atis_341
|
display all flights from toronto to san diego on us air stopping over in denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 toronto : ci ) ( to $0 san_diego : ci ) ( stop $0 denver : ci ) ) )
|
atis_4408
|
what is fare code qo mean
|
qo : fb
|
atis_875
|
ground transportation for las vegas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 las_vegas : ci ) ) )
|
atis_1506
|
i would like the time of your earliest flight in the morning from philadelphia to washington on american airlines
|
( departure_time ( argmin $0 ( and ( flight $0 ) ( airline $0 aa : al ) ( during_day $0 morning : pd ) ( from $0 philadelphia : ci ) ( to $0 washington : ci ) ) ( departure_time $0 ) ) )
|
atis_3168
|
show me flights from milwaukee to orlando on wednesday after 6pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ( day $0 wednesday : da ) ) )
|
atis_372
|
do you have a twa flight leaving early in the morning to san francisco from denver
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 tw : al ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_2624
|
please list the flights from memphis to new york city on a monday night
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 late : pd ) ( from $0 memphis : ci ) ( to $0 new_york : ci ) ( day $0 monday : da ) ) )
|
atis_2990
|
show me all flights on thursday from atlanta to oakland which arrive in oakland before 5 o'clock pm and serve a meal
|
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( < ( arrival_time $0 ) 1700 : ti ) ( from $0 atlanta : ci ) ( to $0 oakland : ci ) ( day $0 thursday : da ) ) )
|
atis_2259
|
list the flights from denver to baltimore
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 baltimore : ci ) ) )
|
atis_2568
|
please list all flights that leave denver before noon on northwest airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 nw : al ) ( < ( departure_time $0 ) 1200 : ti ) ( from $0 denver : ci ) ) )
|
atis_3523
|
show me the flights leaving from atlanta for washington dc on thursday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 thursday : da ) ) )
|
atis_4609
|
what is the first class fare from indianapolis to orlando
|
( lambda $0 e ( exists $1 ( and ( class_type $1 first : cl ) ( from $1 indianapolis : ci ) ( to $1 orlando : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_889
|
ground transportation philadelphia
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 philadelphia : ci ) ) )
|
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 ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.