Viewing 4 posts - 1 through 4 (of 4 total)
I think 201809 is not an outlier as percentage deviation is less than 20% for amount1 and less than 10 % for amount2
CREATE TABLE dbo.Transactions(
Date1 Varchar(6) Not...
August 24, 2018 at 2:07 am
create table #temp
(
prodID int
,mktID nvarchar(255)
,rev decimal
,qty decimal
)
insert into #temp (prodID, mktID, rev, qty)
values (1, 'a', 100, 10)
insert into...
August 10, 2018 at 6:25 am
Its is for Microsoft SQL Server 2014
August 9, 2018 at 7:40 am
I read this Query from Question of the day post. Was trying to learn about triggers.
So my query is since the trigger is updating the Questions table
July 19, 2018 at 6:26 am
Viewing 4 posts - 1 through 4 (of 4 total)