我知道大多数人使用下面的方法并为需要翻译的特定表创建一个翻译表,但这可能相当于一大堆表。
CREATE TABLE Product
(
Product_id
,ProductTrans_id -- FK
)
CREATE TABLE ProductTranslation
(
ProductTrans_id
,Product_id
,Name
,Descr
,lang_code
)
下面的方法可行吗?假设您有很多表需要翻译超过 1 列。您可以执行以下操作并将所有翻译保存在 1 个表中吗?我想随着时间的推移,这张桌子的大小会大大增加。
CREATE TABLE translation_entry (
translation_id int,
language_id int,
table_name nvarchar(200),
table_column_name nvarchar(200),
table_row_id bigint,
translated_text ntext
)
CREATE TABLE translation_language (
id int,
language_code CHAR(2)
)
所以使用第二种方法你会得到这样的文本
select
product.name
,translation_entry.translated_text
from product
inner join translation_entry on product.product_id = translation_entry.table_row_id
and translation_entry.table_name = 'Product' and translation_entry.table_column_name = 'Name'
and language_id = 3