动态sql(where标签)
2022/6/29 2:21:30
本文主要是介绍动态sql(where标签),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
动态sql(where标签)
where标签就是为sql加上where关键字,且会自动的多余的and、or关键字,当所有的条件都不成立的时候,where标签也不会生成
<select id="getEmp" resultType="com.simple.simple1.Emp"> select * from t_user where <if test="username!= null and username != ''"> username = #{username} </if> <if test="password!= null and password != ''"> and password = #{password} </if> <if test="age!= null and age != ''"> and age = #{age} </if> <if test="sex!= null and sex != ''"> and sex = #{sex} </if> <if test="email!= null and email != ''"> and email = #{email} </if> </select>
这篇关于动态sql(where标签)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01后台管理开发学习:新手入门指南
- 2024-11-01后台管理系统开发学习:新手入门教程
- 2024-11-01后台开发学习:从入门到实践的简单教程
- 2024-11-01后台综合解决方案学习:从入门到初级实战教程
- 2024-11-01接口模块封装学习入门教程
- 2024-11-01请求动作封装学习:新手入门教程
- 2024-11-01登录鉴权入门:新手必读指南
- 2024-11-01动态面包屑入门:轻松掌握导航设计技巧
- 2024-11-01动态权限入门:新手必读指南
- 2024-11-01动态主题处理入门:新手必读指南