Do database tables need to have IDs?
- by Arturas M
Is an ID field is always needed in database tables?
In my case I have a user with firstName, lastName and email fields. email is unique and not null, so it could be used as an ID, right? So in that case, could/should I try to remove the ID?
Also I want to have another table which extends this one. Let's say its called patient and it has it's own…