Conditional filtering in T-SQL
23-10-2004 04:38
к комментариям - к полной версии
- понравилось!
Вот пример, как обусловить горизонатльный фильтр (where clause) в SQL.
declare @bViewAll int
set @bViewAll = 1
create table #appr (time_id int)
if @bViewAll = 1
begin
insert into #appr
select top 100 time_id
from dbo.securitiesResults
end
else
insert into #appr
select top 100 time_id
from dbo.securitiesResults
where time_id = 250
select * from #appr
drop table #appr
вверх^
к полной версии
понравилось!
в evernote