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.
我有一种编程情况,我必须检查表列的唯一性。
假设我的表是员工表,我添加了一个代码列。现在我必须防止插入MGRand mgr。
MGR
mgr
所以这意味着我不能有 2 行具有不区分大小写的值。
如何添加检查约束?
如果您使用的是 Oracle,您可以在列的小写字母上添加唯一索引。
create unique index <index_name> on <tablename>(lower(<column_name>))