Untitled

Anonymous
plain_text
05/09/2023 3:51 PM
308 B
45
Indexable
SELECT DISTINCT title
FROM stackoverflow.posts
WHERE title IS NOT NULL AND user_id IN (
  SELECT COUNT(DISTINCT u.id)
  FROM stackoverflow.users AS u
  JOIN stackoverflow.badges As b ON u.id=b.id
  WHERE reputation >= 1000);
Editor is loading...