-1
 String dmlString="INSERT INTO table VALUES('Rxyz');
 SqlCommand comObj = new SqlCommand(dmlString, conObj);
                comObj.ExecuteNonQuery();

表-> Rxyz

如何验证它,作为 Rxyz(区分大小写)

4

1 回答 1

6

您可以将列的排序规则指定为区分大小写,例如

create table tbl (
str varchar(10) collate Latin1_General_CS_AS
)

例子

insert tbl select 'Rxyz';
select * from tbl where str = 'rxyz';
select * from tbl where str = 'Rxyz';

Results

str
----------

(0 row(s) affected)

str
----------
Rxyz

(1 row(s) affected)

但是,将此表列连接到不区分大小写的其他表时要小心。您将需要专门将 COLLATE 子句添加到列比较中。

于 2012-09-25T23:37:47.670 回答