Codeigniter
防止重复(大写和小写)
我想要什么:
即使在数据库插入中也防止大写和小写重复
Example:
Apple
Banana
Cat
当我尝试输入新条目
apple (will not work-show error)
Bananas (works)
CAT ( will not work - show error )
我尝试过的代码(不起作用)
$this->db->where('usernameDB',$usernameInput);
答案 0 :(得分:0)
$this->db->where('usernameDB like binary "Banana"', NULL, FALSE)
此代码可帮助我解决问题