CUSTOM-รายงานผู้ป่วยที่มีชื่อ - นามสกุล ซ้ำ
โดยให้ออก hn , ชื่อพ่อ , ชื่อแม่ , cid
ต้องขอบใจน้อง golf_win และ พี่ขวดครับ
select p.cid, p.hn,concat(p.fname," ",p.lname) as ptname,
p.birthday, p.fathername, p.mathername
from patient p, patient p2
where p.fname = p2.fname
and p.lname = p2.lname
and p.hn <> p2.hn
group by p.hn
order by ptname ,p.hn desc