Viewing 3 posts - 1 through 3 (of 3 total)
create TABLE #temp(LoadTemp1 int,LoadTemp2 int,LoadTemp3 int,LoadTemp4 int,[TimeStamp] datetime)
INSERT INTO #temp VALUES
(300, 200, 100, 320, '12-10-2013 13:30:29'),
(100, 250, 113, 340, '12-10-2013 14:20:12'),
(114, 339, 209, 345, '12-10-2013 14:45:01')
declare @Threshold int =...
December 23, 2013 at 7:31 am
try this...
Declare @mydt datetime
set @mydt='2012-02-01';
select @mydt,Condition from #TestTable
where Condition='Yes' and @mydt between StartDate and EndDate
u can refer mr.jeff post for creating #TestTable...
🙂
December 23, 2013 at 6:25 am
select
{[Measures].[Time Entry Hours]} ON COLUMNS ,
{[time].[fiscal trans date].[fiscal trans date].ALLMEMBERS} DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME on rows
from [sa]
try this..
October 25, 2013 at 1:27 am
Viewing 3 posts - 1 through 3 (of 3 total)