当前位置: 代码迷 >> SQL >> SQL兑现模糊字段查询,去空版
  详细解决方案

SQL兑现模糊字段查询,去空版

热度:92   发布时间:2016-05-05 14:47:23.0
SQL实现模糊字段查询,去空版
select * from UTUserwhere (username like '%第一个textbox的值%' and len(username) > 0) or (password like '%第二个textbox的值%' and len(password) > 0) or  (lasttime like '%第三个textbox的值%' and len(lasttime) > 0) or  (usertype like '%第四个textbox的值%' and len(usertype) > 0)
  相关解决方案