Advertisement
Guest User

Untitled

a guest
May 25th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. -- Find Stack Overflow Users In Your City (with user-links)
  2. -- A simply query to find users in your city or country. Added user links.
  3.  
  4. select distinct u.Id [User Link], u.Reputation, u.DisplayName, u.Location, u.WebsiteUrl, u.AboutMe, u.EmailHash, u.Age
  5. from Users u
  6. inner join Posts p on u.Id = p.OwnerUserId
  7.  
  8. where (u.Location like '%##Location##%') and (p.Tags like '%objective-c%' or p.Tags like '%ios%' or p.Tags like '%iphone%' or p.Tags like '%android%' or p.Tags like '%android%')
  9. order by u.Reputation desc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement