Untitled
Anonymous
plain_text
04/23/2023 5:02 PM
200 B
19
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...
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;