qid
stringlengths 6
9
| source
stringlengths 7
216
| target
stringlengths 6
409
|
---|---|---|
atis_2740
|
round trip flights from minneapolis to san diego coach economy fare
|
( lambda $0 e ( and ( economy $0 ) ( to $0 san_diego : ci ) ( from $0 minneapolis : ci ) ( flight $0 ) ( class_type $0 coach : cl ) ( round_trip $0 ) ) )
|
atis_4707
|
what is the most expensive flight from boston to dallas
|
( argmax $0 ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dallas : ci ) ) ( fare $0 ) )
|
atis_4316
|
what flights leave atlanta at about 3 in the afternoon and arrive in san francisco
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1500 : ti ) ( from $0 atlanta : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_653
|
flights from milwaukee to orlando one way
|
( lambda $0 e ( and ( flight $0 ) ( oneway $0 ) ( from $0 milwaukee : ci ) ( to $0 orlando : ci ) ) )
|
atis_3237
|
show me ground transportation in westchester county
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 westchester_county : ci ) ) )
|
atis_1467
|
i would like information for flights from baltimore to dallas on early tuesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ( day $0 tuesday : da ) ) )
|
atis_3981
|
what cities are served by canadian airlines international
|
( lambda $0 e ( and ( city $0 ) ( services cp : al $0 ) ) )
|
atis_48
|
all flights from pittsburgh to philadelphia next tuesday arriving near 6 o'clock
|
( lambda $0 e ( and ( flight $0 ) ( approx_arrival_time $0 1800 : ti ) ( from $0 pittsburgh : ci ) ( to $0 philadelphia : ci ) ( day $0 tuesday : da ) ) )
|
atis_318
|
dallas to oakland saturday
|
( lambda $0 e ( and ( from $0 dallas : ci ) ( to $0 oakland : ci ) ( day $0 saturday : da ) ) )
|
atis_919
|
how can i go from the san francisco airport to downtown san francisco
|
( lambda $0 e ( and ( to_city $0 san_francisco : ci ) ( from_airport $0 sfo : ap ) ) )
|
atis_3388
|
show me the flights before 8am on august second from boston to denver on delta
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 dl : al ) ( < ( departure_time $0 ) 800 : ti ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_number $0 2 : dn ) ( month $0 august : mn ) ) )
|
atis_1609
|
i would like to see the flights available from pittsburgh to san francisco for monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ) )
|
atis_1950
|
is there ground transportation from the milwaukee airport to the downtown area
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 milwaukee : ci ) ( from_airport $0 milwaukee : ci ) ) )
|
atis_3522
|
show me the flights leaving charlotte to atlanta around 7pm next tuesday
|
( lambda $0 e ( and ( flight $0 ) ( approx_departure_time $0 1900 : ti ) ( from $0 charlotte : ci ) ( to $0 atlanta : ci ) ( day $0 tuesday : da ) ) )
|
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 ) )
|
atis_340
|
display all flights from st. petersburg and charlotte flights should leave after noon arrive after 5pm nonstop flight
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( > ( arrival_time $0 ) 1700 : ti ) ( or ( from $0 st_petersburg : ci ) ( from $0 charlotte : ci ) ) ) )
|
atis_4962
|
which airline offers the cheapest rate going from dallas to baltimore on july fourth
|
( airline : e ( argmin $0 ( and ( from $0 dallas : ci ) ( to $0 baltimore : ci ) ( day_number $0 4 : dn ) ( month $0 july : mn ) ) ( fare $0 ) ) )
|
atis_4839
|
what type of aircraft leaves from boston to washington dc before 9am
|
( lambda $0 e ( exists $1 ( and ( < ( departure_time $1 ) 900 : ti ) ( from $1 boston : ci ) ( to $1 washington : ci ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_3960
|
what are the nonstop flights from cincinnati to charlotte leaving after noon and arriving before 7pm
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( < ( arrival_time $0 ) 1900 : ti ) ( from $0 cincinnati : ci ) ( to $0 charlotte : ci ) ) )
|
atis_4181
|
what flights can i find from pittsburgh to san francisco after 9am
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 900 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3657
|
tell me about ground transportation at san francisco
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 san_francisco : ci ) ) )
|
atis_1215
|
i need information on ground transportation between airport and downtown in the city of boston
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 boston : ci ) ( from_airport $0 bos : ap ) ) )
|
atis_2415
|
okay i'd like to fly from denver to pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 pittsburgh : ci ) ) )
|
atis_3353
|
show me the evening flights from atlanta to washington on wednesdays
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 evening : pd ) ( from $0 atlanta : ci ) ( to $0 washington : ci ) ( day $0 wednesday : da ) ) )
|
atis_3790
|
what are connecting flights from chicago to seattle on june first
|
( lambda $0 e ( and ( flight $0 ) ( connecting $0 ) ( from $0 chicago : ci ) ( to $0 seattle : ci ) ( day_number $0 1 : dn ) ( month $0 june : mn ) ) )
|
atis_2905
|
show me all flights from boston to dfw
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 dfw : ap ) ) )
|
atis_518
|
find me the latest flight leaving atlanta august seventh and arriving in denver
|
( argmax $0 ( and ( flight $0 ) ( from $0 atlanta : ci ) ( to $0 denver : ci ) ( day_number $0 7 : dn ) ( month $0 august : mn ) ) ( departure_time $0 ) )
|
atis_1724
|
i'd like to fly from boston to san francisco
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4101
|
what flights are available from pittsburgh to baltimore on july twenty fifth 1991
|
( lambda $0 e ( and ( flight $0 ) ( from $0 pittsburgh : ci ) ( to $0 baltimore : ci ) ( day_number $0 25 : dn ) ( month $0 july : mn ) ( year $0 1991 : yr ) ) )
|
atis_2895
|
show me all flights from baltimore to dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 baltimore : ci ) ( to $0 dallas : ci ) ) )
|
atis_766
|
give me all the flights from miami to chicago on american airlines
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 aa : al ) ( from $0 miami : ci ) ( to $0 chicago : ci ) ) )
|
atis_3517
|
show me the flights from washington dc to san francisco with a stopover in denver
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 san_francisco : ci ) ( stop $0 denver : ci ) ) )
|
atis_1168
|
i need a round trip flight from cincinnati to san jose california
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 cincinnati : ci ) ( to $0 san_jose : ci ) ) )
|
atis_474
|
find a flight between denver and oakland the flight should leave in the afternoon and arrive near 5pm the flight should also be nonstop
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( approx_arrival_time $0 1700 : ti ) ( during_day $0 afternoon : pd ) ( from $0 denver : ci ) ( to $0 oakland : ci ) ) )
|
atis_3542
|
show me the flights that go from san diego to newark new jersey
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 newark : ci ) ) )
|
atis_4240
|
what flights from miami to indianapolis on sunday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 miami : ci ) ( to $0 indianapolis : ci ) ( day $0 sunday : da ) ) )
|
atis_4355
|
what ground transportation is available at denver airport
|
( lambda $0 e ( and ( ground_transport $0 ) ( from_airport $0 denver : ci ) ) )
|
atis_268
|
coach fares only weekdays for denver to boston
|
( lambda $0 e ( exists $1 ( and ( class_type $1 coach : cl ) ( from $1 denver : ci ) ( to $1 boston : ci ) ( weekday $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1049
|
i am interested in booking an early flight from dallas into houston and returning in the late evening
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( flight $1 ) ( during_day $1 late_evening : pd ) ( during_day $0 early : pd ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 houston : ci ) ( to $1 dallas : ci ) ( from $1 houston : ci ) ) ) )
|
atis_4991
|
which airlines serve pittsburgh
|
( lambda $0 e ( and ( airline $0 ) ( services $0 pittsburgh : ci ) ) )
|
atis_2863
|
show me all daily flights out of boston that have coach class
|
( lambda $0 e ( and ( flight $0 ) ( daily $0 ) ( class_type $0 coach : cl ) ( from $0 boston : ci ) ) )
|
atis_4677
|
what is the latest us air flight leaving philadelphia and returning to boston
|
( argmax $0 ( and ( flight $0 ) ( airline $0 us : al ) ( from $0 philadelphia : ci ) ( to $0 boston : ci ) ) ( departure_time $0 ) )
|
atis_4732
|
what is the seating capacity of a 757
|
( capacity 757 : ac )
|
atis_107
|
are snacks served on tower air
|
( lambda $0 e ( and ( meal $0 snack : me ) ( airline $0 ff : al ) ) )
|
atis_4751
|
what is the type of aircraft for united flight 21
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( airline $1 ua : al ) ( flight_number $1 21 : fn ) ( = ( aircraft_code $1 ) $0 ) ) ) )
|
atis_3006
|
show me all nonstop flights from salt lake city to cincinnati
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 salt_lake_city : ci ) ( to $0 cincinnati : ci ) ) )
|
atis_3206
|
show me flights from washington to boston on friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( day $0 friday : da ) ) )
|
atis_1983
|
list airports in arizona nevada and california please
|
( lambda $0 e ( and ( airport $0 ) ( or ( loc : t $0 arizona : st ) ( loc : t $0 nevada : st ) ( loc : t $0 california : st ) ) ) )
|
atis_2573
|
please list all the flights from boston to denver which serve meals
|
( lambda $0 e ( and ( flight $0 ) ( has_meal $0 ) ( from $0 boston : ci ) ( to $0 denver : ci ) ) )
|
atis_4777
|
what kind of ground transportation is available in atlanta
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 atlanta : ci ) ) )
|
atis_4278
|
what flights go from boston to san francisco with a stop in dallas
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( stop $0 dallas : ci ) ) )
|
atis_3658
|
tell me about ground transportation at toronto
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 toronto : ci ) ) )
|
atis_4228
|
what flights from indianapolis to memphis
|
( lambda $0 e ( and ( flight $0 ) ( from $0 indianapolis : ci ) ( to $0 memphis : ci ) ) )
|
atis_1426
|
i would like a flight from washington to boston on august twentieth at 324pm
|
( lambda $0 e ( and ( flight $0 ) ( departure_time $0 1524 : ti ) ( from $0 washington : ci ) ( to $0 boston : ci ) ( day_number $0 20 : dn ) ( month $0 august : mn ) ) )
|
atis_3058
|
show me all the flights to baltimore from denver or philadelphia or pittsburgh
|
( lambda $0 e ( and ( flight $0 ) ( or ( from $0 denver : ci ) ( from $0 philadelphia : ci ) ( from $0 pittsburgh : ci ) ) ( to $0 baltimore : ci ) ) )
|
atis_4024
|
what does flight code us mean
|
us : al
|
atis_4748
|
what is the total schedule for delta's flights to all airports
|
( lambda $0 e ( exists $1 ( and ( = ( departure_time $1 ) $0 ) ( exists $2 ( and ( airport $2 ) ( to $1 $2 ) ) ) ( flight $1 ) ( airline $1 dl : al ) ) ) )
|
atis_3386
|
show me the flights available from san francisco to pittsburgh for tuesday and also the price
|
( lambda $0 e ( lambda $1 e ( and ( flight $0 ) ( from $0 san_francisco : ci ) ( to $0 pittsburgh : ci ) ( day $0 tuesday : da ) ( = ( fare $0 ) $1 ) ) ) )
|
atis_1694
|
i'd like to book a flight from san diego to toronto
|
( lambda $0 e ( and ( flight $0 ) ( from $0 san_diego : ci ) ( to $0 toronto : ci ) ) )
|
atis_2554
|
please list all flights from dallas to philadelphia on monday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 dallas : ci ) ( to $0 philadelphia : ci ) ( day $0 monday : da ) ) )
|
atis_813
|
give me the flights from boston to san francisco leaving early today
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 early : pd ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ( today $0 ) ) )
|
atis_1476
|
i would like information on flights from oakland california to dallas leaving on sunday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 oakland : ci ) ( to $0 dallas : ci ) ( day $0 sunday : da ) ) )
|
atis_1158
|
i need a listing of flights from st. petersburg florida to tacoma washington leaving tomorrow and i would like to have a stopover in milwaukee please
|
( lambda $0 e ( and ( flight $0 ) ( from $0 st_petersburg : ci ) ( to $0 tacoma : ci ) ( stop $0 milwaukee : ci ) ( tomorrow $0 ) ) )
|
atis_2558
|
please list all flights from new york to miami any any type of class
|
( lambda $0 e ( and ( flight $0 ) ( from $0 new_york : ci ) ( to $0 miami : ci ) ) )
|
atis_2876
|
show me all flights arriving at love field from other airports
|
( lambda $0 e ( and ( flight $0 ) ( to $0 dal : ap ) ( exists $1 ( and ( airport $1 ) ( from $0 $1 ) ) ) ) )
|
atis_912
|
how about flights from dallas to atlanta on wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 morning : pd ) ( from $0 dallas : ci ) ( to $0 atlanta : ci ) ( day $0 wednesday : da ) ) )
|
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 ) ) )
|
atis_3649
|
tell me about flights from st. petersburg arriving in toronto before noon
|
( lambda $0 e ( and ( flight $0 ) ( < ( arrival_time $0 ) 1200 : ti ) ( from $0 st_petersburg : ci ) ( to $0 toronto : ci ) ) )
|
atis_2535
|
please give me the flights from boston to pittsburgh on thursday of next week
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 thursday : da ) ) )
|
atis_3260
|
show me prices of flights from baltimore to dallas
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 baltimore : ci ) ( to $1 dallas : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_438
|
does the philadelphia airport have a name
|
phl : ap
|
atis_5002
|
which flights are between boston and baltimore washington
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 baltimore : ci ) ) )
|
atis_609
|
flights from baltimore to philadelphia where the round trip fare is less than 1000 dollars
|
( lambda $0 e ( and ( flight $0 ) ( < ( fare $0 ) 1000 : do ) ( round_trip $0 ) ( from $0 baltimore : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_2621
|
please list the flights from denver to phoenix
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 phoenix : ci ) ) )
|
atis_3068
|
show me all the united airlines flights leaving dallas
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 ua : al ) ( from $0 dallas : ci ) ) )
|
atis_3870
|
what are the flights from atlanta to baltimore which arrive in baltimore at 7 o'clock pm
|
( lambda $0 e ( and ( flight $0 ) ( arrival_time $0 1900 : ti ) ( from $0 atlanta : ci ) ( to $0 baltimore : ci ) ) )
|
atis_4209
|
what flights fly from denver to san francisco on monday tuesday wednesday thursday and friday
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 san_francisco : ci ) ( day $0 monday : da ) ( or ( day $0 tuesday : da ) ( day $0 wednesday : da ) ( day $0 thursday : da ) ( day $0 friday : da ) ) ) )
|
atis_1055
|
i like to see the information for flights from pittsburgh to san francisco leaving pittsburgh after 12pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1200 : ti ) ( from $0 pittsburgh : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_3564
|
show me the latest flight from las vegas to denver
|
( argmax $0 ( and ( flight $0 ) ( from $0 las_vegas : ci ) ( to $0 denver : ci ) ) ( departure_time $0 ) )
|
atis_1354
|
i want to fly philadelphia to san francisco on july eighth
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 san_francisco : ci ) ( day_number $0 8 : dn ) ( month $0 july : mn ) ) )
|
atis_993
|
how many seats in a 100
|
( capacity 100 : ac )
|
atis_2095
|
list all the flights that arrive at general mitchell international airport
|
( lambda $0 e ( and ( flight $0 ) ( to $0 mke : ap ) ) )
|
atis_4161
|
what flights are there from phoenix to milwaukee
|
( lambda $0 e ( and ( flight $0 ) ( from $0 phoenix : ci ) ( to $0 milwaukee : ci ) ) )
|
atis_2906
|
show me all flights from boston to pittsburgh on wednesday after 6 o'clock pm
|
( lambda $0 e ( and ( flight $0 ) ( > ( departure_time $0 ) 1800 : ti ) ( from $0 boston : ci ) ( to $0 pittsburgh : ci ) ( day $0 wednesday : da ) ) )
|
atis_2142
|
list flights from boston to san francisco that serve only breakfast
|
( lambda $0 e ( and ( flight $0 ) ( meal_code $0 b : rc ) ( meal $0 breakfast : me ) ( from $0 boston : ci ) ( to $0 san_francisco : ci ) ) )
|
atis_4886
|
what's the cheapest round trip fare between boston and washington
|
( min $0 ( exists $1 ( and ( from $1 boston : ci ) ( to $1 washington : ci ) ( round_trip $1 ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1603
|
i would like to see all flights from denver to philadelphia
|
( lambda $0 e ( and ( flight $0 ) ( from $0 denver : ci ) ( to $0 philadelphia : ci ) ) )
|
atis_3207
|
show me flights going from boston to denver arriving on wednesday morning
|
( lambda $0 e ( and ( flight $0 ) ( during_day_arrival $0 morning : pd ) ( from $0 boston : ci ) ( to $0 denver : ci ) ( day_arrival $0 wednesday : da ) ) )
|
atis_1296
|
i want a flight on saturday from minneapolis to long beach
|
( lambda $0 e ( and ( flight $0 ) ( from $0 minneapolis : ci ) ( to $0 long_beach : ci ) ( day $0 saturday : da ) ) )
|
atis_1808
|
i'm interested in flying from boston to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( from $0 boston : ci ) ( to $0 atlanta : ci ) ) )
|
atis_4113
|
what flights are available sunday afternoon from oakland to dallas
|
( lambda $0 e ( and ( flight $0 ) ( during_day $0 afternoon : pd ) ( from $0 oakland : ci ) ( to $0 dallas : ci ) ( day $0 sunday : da ) ) )
|
atis_3021
|
show me all the direct flights from baltimore to atlanta
|
( lambda $0 e ( and ( flight $0 ) ( nonstop $0 ) ( from $0 baltimore : ci ) ( to $0 atlanta : ci ) ) )
|
atis_3920
|
what are the flights from orlando to cleveland on us air that arrive around 10pm
|
( lambda $0 e ( and ( flight $0 ) ( airline $0 us : al ) ( approx_arrival_time $0 2200 : ti ) ( from $0 orlando : ci ) ( to $0 cleveland : ci ) ) )
|
atis_459
|
explain meal codes sd/d
|
sd_d : rc
|
atis_254
|
cheapest fare from memphis to seattle
|
( min $0 ( exists $1 ( and ( from $1 memphis : ci ) ( to $1 seattle : ci ) ( = ( fare $1 ) $0 ) ) ) )
|
atis_1920
|
is there a round trip flight from baltimore to denver connecting in dallas
|
( lambda $0 e ( and ( flight $0 ) ( round_trip $0 ) ( from $0 baltimore : ci ) ( to $0 denver : ci ) ( stop $0 dallas : ci ) ) )
|
atis_303
|
could you tell me about ground transportation arrangements from the dallas airport to downtown dallas
|
( lambda $0 e ( and ( ground_transport $0 ) ( to_city $0 dallas : ci ) ( from_airport $0 dfw : ap ) ) )
|
atis_1156
|
i need a listing of flights from kansas city missouri to salt lake city utah
|
( lambda $0 e ( and ( flight $0 ) ( from $0 kansas_city : ci ) ( to $0 salt_lake_city : ci ) ) )
|
atis_676
|
flights from philadelphia to oakland
|
( lambda $0 e ( and ( flight $0 ) ( from $0 philadelphia : ci ) ( to $0 oakland : ci ) ) )
|
atis_1550
|
i would like to fly from boston to baltimore please tell me what are the times of the flights
|
( lambda $0 e ( exists $1 ( and ( flight $1 ) ( from $1 boston : ci ) ( to $1 baltimore : ci ) ( = ( departure_time $1 ) $0 ) ) ) )
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.