Friday 17 March 2017

Get List of All Supported Languages in SQL Server

SQL Server supports multiple languages, so we can set any language for SQL Server. The sys.syslanguages system view contains all information about the languages supported by SQL Server. We can use the below sql script to retrieve the information about all languages like language id, language name, date format and other info.
select * from sys.syslanguages

See the output.
  

2 comments:

If you have any doubt, please let me know.

Popular Posts