Do you prefix each field in a table with abbreviated table name?
Example:
Table: User
Fields:
user_id
user_name
user_password
Or d
If you are using a UNIQUE PREFIX for each table, then
Don't do that. It's redundant and leads to frustration in the long run.
The only field, where you could apply this might be id
, because user_id
would obviously be the id of the user and it would simplify writing joins in SQL. But I wouldn't even do that.