id
as internal Primary Key identifierIn the beginning it might be tempting to use the format id_${name_of_table}
for a primary key. For the table user
, the primary key would be id_user
.
Don't do this:
id
.id
columnYou might think that the id
column is special and should be written in upper-case. Don't do it. Use the lower-case format id
.