Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of cilerler

cilerler

cilerler has asked 23 questions and find answers to 28 problems.

Stats

1.6k
EtPoint
607
Vote count
23
questions
28
answers

About

SELECT TOP (10) Reputation 
FROM Users 
WHERE LOWER(Location) LIKE '%bocaraton%' 
      OR LOWER(Location) LIKE '%boyntonbeach%'
      OR LOWER(Location) LIKE '%delraybeach%'
      OR LOWER(Location) LIKE '%deerfieldbeach%'
      OR LOWER(Location) LIKE '%coconutcreek%'
      OR LOWER(Location) LIKE '%coralsprings%'
      OR LOWER(Location) LIKE '%margate%'
      OR LOWER(Location) LIKE '%pompanobeach%'
ORDER BY Reputation DESC;

#GO