您的位置: 首页 > IT文章 > 数据库中如何判断某参数为空就不执行where条件 数据库中如何判断某参数为空就不执行where条件 分类: IT文章 • 2025-01-28 09:57:07 以Mysql数据库为例。在存储过程中使用判断一个参数,例参数为vtitleSelect a.*from trn_res_courseware awhere 1 = 1 andIF (vtitle is NULL, 0 = 0, a.title like CONCAT('%'+vtitle+'%'));vtitle 是参数。如果参数为空,则不执行(0=0永远成立),不为空,则执行 a.title like CONCAT('%'+vtitle+'%')) 查询条件。