SDU Tools: Languages in SQL Server T-SQL
Our free SDU Tools for developers and DBAs, now includes a very large number of tools, with procedures, functions, and views. Applications often need to display a list of languages for users to choose from. To make that easy, we have now included a view called Languages.
The Languages view returns details of all the world’s languages, based on ISO 639-1. For each language, the view returns:
- FamilyName
- LanguageName
- NativeLanguageName
- ISO2CharacterCode
- ISO3CharacterCode
The FamilyName indicates the group of languages that the language belongs to. The LanguageName is what we call it in English. The NativeLanguageName is what locals call the language. And then there are the 2 and 3 character codes from the ISO standard.
2025-02-08