I want to update table skuxloc qty to equal the sum of the qty per sku in lotxlocxid as follows:
update skuxloc sl
set sl.qty = lli.sumqty
inner join
(
select sku, sum(qty) sumqty
from lotxlocxid
where loc = 'DRSLN7STG'
group by sku
) lli on lli.sku = sl.sku
where sl.sku in
('108720-419-S',
'108720-419-XS',
'876070-100-11',
'876070-100-12',
'876070-100-9.5',
'942836-100-10.5',
'942836-100-6.5',
'942837-100-6.5',
'CW5594-100-6',
'CW5594-100-6.5',
'CW5594-100-8',
'DD1583-402-M',
'942836-100-9');
I am getting error at line 2 that this SQL command wasn't properly ended.
Any idea to what I might be doing wrong?