@@LANGUAGE (T-SQL)

Returns the name of the language currently in use.

Syntax

@@LANGUAGE

Return Types

nvarchar

Remarks

To view information about language settings (including valid official language names), run sp_helplanguage with no parameter specified.

Examples

This example returns the language for the current session.

SELECT @@LANGUAGE AS 'Language Name'

  

Here is the result set:

Language Name

-----------------------------

us_english

  

See Also
SET LANGUAGE Configuration Functions
sp_helplanguage  

  


(c) 1988-98 Microsoft Corporation. All Rights Reserved.