SQL sp_helplanguage

The SQL sp_helplanguage is one of the System Stored procedures, which will return all the information about the supporting Languages. The syntax of the Help LANGUAGE in SQL Server is

sp_helplanguage [Language_Name]

-- For example,
sp_helplanguage French;

SQL sp_helplanguage Example

In this example, we will show how to use this sp_helplanguage. Please refer to the list of SQL Date functions available on our SQL Tutorial page.

SELECT sp_helplanguage
SQL SP_HELPLANGUAGE Example 1

Let me show you the information about specific SQL Server languages. You can see the information about the Italian language. Please refer to the SQL @@LANGUAGE and SQL SET LANGUAGE articles from the available date functions.

SELECT sp_helplanguage Italian
Find about specific language
Categories SQL