Get List of All Supported Languages in SQL Server

As we know, 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.

You can use the below sql script to retrieve the information about all languages like language id,language name, dateformat and other info.

Query: 
  1. SELECT name,* FROM sys.syslanguages  
Example: