sql2008對錶名及字段區分大小寫,幾種方案
1.查詢sql語句
select * from [表名] where [列名]='root' collate chinese_prc_cs_ai--區分大小寫
select * from [表名] where [列名]='root' collate chinese_prc_ci_ai--不區分大小寫
2.資料庫表字段設定
設計表中
->
欄位->
排序規則
->
設定區分大小寫
3.sql語句設定
--不區分大小寫(作用於表中儲存的資料)
alter table 表名
alter column 列名 varchar(100) collate chinese_prc_ci_as
--區分大小寫
alter table 表名
alter column 列名 varchar(100) collate chinese_prc_cs_as
--區分大小寫(作用於表名、欄位名……)
alter database 資料庫 collate chinese_prc_cs_as
--不區分大小寫
alter database 資料庫 collate chinese_prc_ci_as
mysql 字段區分大小寫
預設情況下,mysql中的字段是不區分大小寫的,所以 aa 與 aa 被認為是一樣的。那麼有些特殊情況下,我們希望它區分大小寫呢,這時應該怎麼辦,說出來其實很簡單,如 drop table if exists tpl forbiddenword create table tpl forbiddenw...
mysql 字段區分大小寫
預設情況下,mysql中的字段是不區分大小寫的,所以 aa 與 aa 被認為是一樣的。那麼有些特殊情況下,我們希望它區分大小寫呢,這時應該怎麼辦,說出來其實很簡單,如 drop table if exists tpl forbiddenword create table tpl forbiddenw...
區分大小寫
這個規則會與以下各個元素匹配 這些元素不能在同乙個文件中同時出現,因為它們都有相同的 id 值 id mostimportant this is important 親自試一試 請注意,類選擇器和 id 選擇器可能是區分大小寫的。這取決於文件的語言。html 和 xhtml 將類和 id 值定義為區...