Untitled

 avatar
unknown
plain_text
2 years ago
149 B
5
Indexable
SELECT title 
FROM stackoverflow.posts p
JOIN stackoverflow.badges b ON p.user_id = b.user_id
WHERE title IS NOT NULL 
HAVING COUNT(b.id) > 1000;
Editor is loading...