MySQL naming / coding conventions: tips on mySQL database

MySQL_Workbench_Visual_Design_Windows

MySQL database naming conventions

There are coding standards on each programming language but in terms of MySQL I haven’t found any universal coding practice that everyone follows so i looked into different open source framework and popular PHP based software and found some generally applied standards on naming so I am trying to summaries it in this article.

Properly design MySQL with proper naming conventions will help to write SQL query faster, helps to remove confusions and conflicts both on queries and programming language.

MySQL Name conventions general rules:

  • Use lowercase: Will help on speed typing, avoid mistakes dues to case sensitivity e.t.c
  • No space – use underscore instead
  • No numbers in name only alpha English characters
  • Valid understandable names like  blog, ecommerce e.t.c but not like project, james, e.t.c
  • Name should be self explanatory
  • Names should not be more than 64 characters.
  • Avoid prefix

MySQL Database name convention:

Follow all the rules on general rules above.

  • Name can be both singular and plural but database represent one database so it should be singular if possible.
  • Avoid prefix if possible.

 

MySQL Table name:

  • Lower case table name: Mysql is usually hosted in Linux server which is case sensitive so for best practice table name should be all lower case. Many PHP or other programming framework auto detect or auto generate class based on table names and most of them expect lower table name.
  • Table name is Singular:
    We think table holds so may things like user table holds many users in the table, so name should be plural but table is a single entity as Model is only one so its odd to have plural table name.  So name your table like user, invoice, comment.
  • Prefix in table name: I have seen many times that table name has prefix usually db name or project name. Some time it is necessary to have prefix as in hosting envirnment we have many tables in one db to overcome limitation of db by hosting providers. But try to aviod them. Name should be small and meaningful rather than long menaning less names. If we cant avoid prefix then we can fix it by php classes.

 

Field Names:

Use all above cases i.e lowercase, no space, no numbers, and avoid prefix.

  • Choose short and one or two words as possible.
  • Field names should be understand able eg: price, company_name, e.t.c
  • Primary column name: Primary key can be id, or table name _id. Its depends on your own choice but for me, I prefer id as its self explanatory.
  • Avoid using reserve word as field name: order, date, name are reserve word for database avoid using it. You can add prefix to these names to make it understandable like user_name, signup_date e.t.c
  • Avoid using column with same name as table name. This can cause confusion while writing query.
  • Do define foreign key on database schema.
  • Avoid abbreviated, concatenated, or acronym-based names
  • Foreign key column must have table name with their primary key, eg: blog_id represents foreign key id from table blog.
  • Avoid semantically – meaningful primary key names. A classic design mistake is creating a table with primary key that has actual meaning like ‘name’ as primary key. In this case if some one change his name then relationship with other table will be effected and name can be repetitive (not unique).

Summary:

Make your table naming convention understandable for both database designers and programmers. It should avoid anything that might cause confusion, issues on linking tables to one another. And finally it should be readable for programming language or framework that is implemented.

 

One thought on “MySQL naming / coding conventions: tips on mySQL database

  1. Pierre-Aurélien Georges May 15, 2019 / 4:52 am

    Hi, you could also add : standard tables (containing items, objects, or concepts) should be named using substantives (such as “person”, “address”, “account”, etc.) whereas N to N relationship join tables should be named using verbal sentences (such as “is_owner_of”, “was_involved_in”, “is_related_to”, etc.), where the first foreign key should be the subject of the verbal proposition, and the second foreign key is the complement. E.g. “user_id is_owner_of house_id” or “house_id is_owned_by user_id” bit not “house_id is_owner_of user_id”…

Leave a comment