PHP database table name


Database table name naming follows the following specifications:
a. Table names use lowercase letters;
b. For ordinary data tables, use _t ending;
c. For views, use the _v ending;
d. For table names composed of multiple words, use _interval;
Example: user_info_t and book_store_v, etc.