when using the stack overflow data explorer, how can I select questions with 3 or more answers?
There's an AnswerCount field on the Posts table:
AnswerCount
SELECT * FROM Posts WHERE AnswerCount >= 3 AND PostTypeId = 1