SURVEYS
SurveyID UserID Question Choice1 Choice2 Choice3
RESPONSES
UserID SurveyID
Something like this I think should do?
SELECT * FROM Surveys s WHERE s.UserID != 28 AND s.SurveyID NOT IN (SELECT R.SurveyID FROM Responses R WHERE R.UserID = 28)