I am doing a traduction table in access, what is the best way to do it, I am thinking about 2 methods...
3 columns
|code|languageId|text
here you got 1 line per code per language
n+1 columns, n:number of languages
|code|english|french| ...
here you got 1 line per code
which one is the best to stock data?
3 columns
|code|languageId|text
here you got 1 line per code per language
n+1 columns, n:number of languages
|code|english|french| ...
here you got 1 line per code
which one is the best to stock data?