SQL @@LANGUAGE

SQL @@LANGUAGE is one of the Configuration Functions, which will return the name of the language that is currently used. And the syntax behind this is @@LANGUAGE SQL @@LANGUAGE Example The below code snippet will show you the language name that is currently being used by SQL. SELECT @@LANGUAGE AS ‘Language Name’ You can use … Read more