SQL多条件查询
时间:2010-11-25 来源:leco_lin
select * from t
where (a = @a or @a is null)
and (b = @b or @b is null)
and (c = @c or @c is null)
-- 如果参数 @a、@b、@c 的某一个值为 null,则等同于无该条件
相关阅读 更多 +
时间:2010-11-25 来源:leco_lin
select * from t
where (a = @a or @a is null)
and (b = @b or @b is null)
and (c = @c or @c is null)
-- 如果参数 @a、@b、@c 的某一个值为 null,则等同于无该条件