8个回答
展开全部
查询条件为空 自然是查询全部啊........
语句 select * from A where 1=1
条件语句 任意, 只需要and开头即可.
语句 select * from A where 1=1
条件语句 任意, 只需要and开头即可.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
通常如果条件很短很少,可以用if else写几组语句来做
如果条件很多的话就采用字符拼接执行
如果条件很多的话就采用字符拼接执行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
假设 @c 是条件,则可以这样:
if @c is null or @c = ''
select * from table_name
else
select * from table_name where column_name = @c
if @c is null or @c = ''
select * from table_name
else
select * from table_name where column_name = @c
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
declare @where
declare @sql
set @sql='select * from 表 '
if @where is null or @where =''
begin
@sql=@sql+@where
end
exec(@sql)
declare @sql
set @sql='select * from 表 '
if @where is null or @where =''
begin
@sql=@sql+@where
end
exec(@sql)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询