我正在学习数据库国际化并有一个“小”问题。
我有一个名为的表,categories
其中包含字段id
,等。并且,该表也具有字段、、和其他字段。name
description
products
id
category_id
name
description
categories table
id | name | description | ...others
和
products table
id | category_id | name | description | ...others
我需要将这些(和其他)表国际化。因此,开始的方法是再创建三个表并更改第一个表。
languages table
id | name | code
categories table
id | ...others
category_languages table
id | category_id | language_id | name | description
products table
id | category_id | ...others
product_languages table
id | product_id | language_id | name | description
好吧,主要问题是:有办法将本地化“集中”在一张表中吗?我忘记了什么?
谢谢!