且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在 sql 2005 或 2008 中使列区分大小写

更新时间:2023-02-15 18:29:49

ALTER TABLE ALTER COLUMN 允许更改单列的排序规则:

ALTER TABLE ALTER COLUMN allows to change collation for a single column:

alter table Foo alter column Bar ntext collate Latin1_General_CS_AS 

(排序规则可能不正确)

(collation might be incorrect)