Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 1.86 KB

langid-transact-sql.md

File metadata and controls

63 lines (50 loc) · 1.86 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
@@LANGID (Transact-SQL)
@@LANGID (Transact-SQL)
markingmyname
maghan
09/18/2017
sql
t-sql
reference
@@LANGID
@@LANGID_TSQL
languages [SQL Server], current in use
@@LANGID function
current language in use
ID for language in use
local language IDs [SQL Server]
TSQL

@@LANGID (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]

Returns the local language identifier (ID) of the language that is currently being used.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

@@LANGID  

Return Types

smallint

Remarks

To view information about language settings, including language ID numbers, run sp_helplanguage without a parameter specified.

Examples

The following example sets the language for the current session to Italian, and then uses @@LANGID to return the ID for Italian.

SET LANGUAGE 'Italian'  
SELECT @@LANGID AS 'Language ID'  

[!INCLUDEssResult]

Changed language setting to Italiano.  
Language ID  
-----------  
6            

See Also

Configuration Functions (Transact-SQL)
SET LANGUAGE (Transact-SQL)
sp_helplanguage (Transact-SQL)