select p1.hn, p1.cid, concat(p1.fname," ",p1.lname) as p1name, p2.hn, p2.cid, concat(p2.fname," ",p2.lname) as p2name
from patient p1, patient p2
where
p1.fname=p2.fname
and p1.lname=p2.lname
and p1.birthday=p2.birthday
and p1.hn<>p2.hn
กรณีมีชื่อและสกุลซ้ำกันมากกว่า 1 คู่..และอาจกำหนด p1.cid=p2.cid กรณีเกิดเวชระเบียนเก่าก่อนอาจารย์ทำกำหนดระบบไม่ให้ลงทะเบียนที่มีเลขประชาชนซ้ำกัน