Have following query:
update #table1
set qty = gross
from
(
select cast(sum(gross) as decimal(15, 2))
from tp6000.dbo.loadcomp
where branded = @ProdVar and
(@DateFrom IS Null or date >= @DateFrom) and
(@DateTo IS Null or date <= dateadd(day, 1, @DateTo))
)
as l where l.branded = #table1.product_code
Giving me error:
Invalid column name 'branded'.
update #table1
set qty = gross
from
(
select cast(sum(gross) as decimal(15, 2))
from tp6000.dbo.loadcomp
where branded = @ProdVar and
(@DateFrom IS Null or date >= @DateFrom) and
(@DateTo IS Null or date <= dateadd(day, 1, @DateTo))
)
as l where l.branded = #table1.product_code
Giving me error:
Invalid column name 'branded'.