Well, it is obvious that your database table names have an absolutely derived one , which should be named in the standard style, which I still arbitrarily define.
First, all table names must have the prefix "t_". After that, the only entity name in StudlyCaps, for example. "Client". Immediately after this, it should contain the number of columns created in the first version of the schema, for historical purposes, followed by the underscore and the exact normal form of the data; either "1", "2", "3" or "B" for BCNF. Any higher normal forms are indicated by the letter "P".
Some examples of valid names:
t_Customer_6_3 t_Order_5_B t_OrderLine_4_2
I think my question is that it really doesn't matter if the name is conditional enough and the naming is consistent.
Rob Apr 30 '09 at 20:56 2009-04-30 20:56
source share