sql转换大小写的对错写法

 错误写法:select *  from T_SYS_USERS t  where LOWER( t.user_account)='ABC';
正确写法:select *  from T_SYS_USERS t  where  t.user_account=LOWER('ABC');

猜你喜欢

转载自love422619.iteye.com/blog/2168881
今日推荐