Greetings,I keep track of localization/translation info for our website. Currently the translation is happening as follows.One table with the word in English in one column and the translated terms are on the same table with columns for each of the different languages. How do I go about to dynamically get language codes as column headers and translated items under it's own respective languagecode column?CREATE TABLE [dbo].[Untranslated]( [ID] [int] NOT NULL, [EnglishTerm] [varchar](100) NOT NULL, [TranslatedTerm] [varchar](100) NULL, [IsTranslated] [bit] NOT NULL, [TranslatedLanguageCode] [varchar](10) NULL) ON [PRIMARY]insert into [Untranslated]select 1, 'Tree', 'Arbre',1,'FR'UNIONselect 2, 'Tree', 'Arbol',1,'ES'UNIONselect 2, 'Tree', 'Zaf',1,'AM'Desired ResultEnglishTerm FR ES AM Tree Arbre Arbol Zaf
<><><><><><><><><><><><><><><><><>If you don't have the passion to help people, you have no passion