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.