84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
java Why does the Mybatis system add table prefixes when designing tables? Are there any disadvantages in not adding them?
Thanks
Obviously to distinguish projects. When there are many database tables, table prefixes can be used to achieve faster search, maintenance, etc.
This is really a poor design. Different databases should be used to distinguish projects!
This is a habit developed by old programmers for future generations haha
Generally related to business logic.
For example, system-related tables sys_user, sys_role, etc.Query related tables query_money, query_time, etc.
Obviously to distinguish projects. When there are many database tables, table prefixes can be used to achieve faster search, maintenance, etc.
This is really a poor design. Different databases should be used to distinguish projects!
This is a habit developed by old programmers for future generations haha
Generally related to business logic.
For example, system-related tables sys_user, sys_role, etc.
Query related tables query_money, query_time, etc.