本文介绍了如何在 sql 2005 或 2008 中使列区分大小写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以根据列更改默认排序规则?我想让 1 列区分大小写,但所有其他列不区分

Is it possible to change the default collation based on a column? i want to make 1 column case sensitive but all the others not

推荐答案

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)

这篇关于如何在 sql 2005 或 2008 中使列区分大小写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-25 09:44