我正在开发一个 Web 应用程序,它将以两种语言提供,将来可能会添加更多语言。
我在设计表格时发现了一个问题;这是结构:
Table: Tag;
Columns: TagId (PK) {this column it's referenced by other tables like Posts, Users, etc...}
Table: TagLocale
Columns: TagLocaleId (PK), TagId(FK), LanguageId (FK), Name (the tag string)
一张只有一列的表格是错误的,对吧?任何人都可以在这里帮助我吗?
提前致谢,
仁南