Possible Duplicate:
Language Translation for Tables
I'm creating a table in sql server 2008. The schema of the table:
Commments
CommentID int
Category nvarchar(250)
Comment nvarchar(250)
This table stores the english version for all the comments on the Comments table. Based on these comments, I would like to pull from the database the corresponding Comment for languages like spanish, french, etc.
What is the best way to accomplish my goal? I would like to keep track the translated comment based on my orginal CommentID.
Also, it was suggested for another question to create a column for each language. However, what happens when I would like to add a new language?