我使用了以下 mysql 查询:
select q.question,q.formnumber,g.forename,a.guardiancode from tblfeedbackquestions q
join tblfeedbackanswers a on q.id=a.questionid join tblguardian g on g.guardiancode=a.guardiancode where q.formnumber='3'
此查询的输出是:
现在我想要的只是相同监护人代码的第一行应该出现在第 1 行和第 2 行的输出中,我的监护人代码为 10025,但我只想要第一行,并且对于每个唯一的监护人代码也是如此。请帮助我。