Expand Minimize
1 out of 1 rated this helpful - Rate this topic

@@LANGUAGE (Transact-SQL)

Returns the name of the language currently being used.

Topic link iconTransact-SQL Syntax Conventions


@@LANGUAGE

nvarchar

To view information about language settings, including valid official language names, run sp_helplanguage without a parameter specified.

The following example returns the language for the current session.

SELECT @@LANGUAGE AS 'Language Name';

Here is the result set.

Language Name                 
------------------------------
us_english                    
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.