I’m designing a simple registration system for a website, that lets users register only if they are accepted by certain criteria (radio buttons selected) . My entities are:
Potential customers, Po_cus PK
----------------------------------------
User name, User_id PK
---------------------------------------
Password, Pass_id PK
----------------------------------------
User name, password (Composite table)
User_Id FK
Pass_Id FK
------------------------------------------------
Eligible, Pass_Id
I have created an erd however I seem to have created a loop between password, username and potential customer. Oh btw ive separated username and password for security reasons. Any ideas on how to break the loop would be handy thanks.