I’m trying to design some tables to store some data, which has to be converted to different languages later. Can anybody provide some ‘best practices’ or guidelines for this?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Let’s say you have a products table that looks like this:
Then you just join on product_id = product.id and where locale=’en-US’
of course this has an impact on performance, since you now need a join to get the name and description, but it allows any number of locales later on.