Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以给出默认语言列表及其在sql server中的代码吗
例如:
sp_configure '默认语言', 23
在此示例中,我将默认语言更改为 23(英国)。所以我想要语言列表(例如英国)和它的代码(例如23)。
看看sys.syslanguages。
包含 SQL Server 实例中存在的每种语言的一行。
USE master; GO SELECT * FROM sys.syslanguages;
或者
USE master; GO EXEC SP_HELPLANGUAGE;