在 Stack Overflow 上尋找特定地區的用戶

Find Stack Overflow Users In Your City (with user-links)
Find Stack Overflow Users In Your City (those with user-links)

select Id [User Link], Reputation, DisplayName, Location, WebsiteUrl
from Users
where replace(LOWER(Location), ' ','') like replace(LOWER('%##Location##%'), ' ','') AND WebsiteUrl != ''
order by Reputation desc


本文連結