更新数据库某列字段大小写:
update tablename set field1 = lower(field1)
js中不区分大小写比较:
js转化大小写方法:
toUpperCase():把字符串转换为大写;
toLowerCase() :把字符串转换为小写。
更新数据库某列字段大小写:
update tablename set field1 = lower(field1)
js中不区分大小写比较:
js转化大小写方法:
toUpperCase():把字符串转换为大写;
toLowerCase() :把字符串转换为小写。