-1
我運行折舊數據庫。我需要爲下個月運行折舊兩個條件必須得到滿足,但是從不同的表來自兩個不同表格的條件
insert into Asset.dbo.depreciation (Asset_Tag, depreciation_date, Depreciation_Amount)
select
Asset_Tag, '2012-05-01', Depreciation_Amount
from Asset.dbo.depreciation
where depreciation_date = '2012-04-01'
and asset_details.Fully_Depreciated = 'N'
條件的and
後來自另一個表。
請幫
你缺少加入到其他表前:'Asset.dbo.depreciation d INNER JOIN Asset.dbo。 Asset_details d2 ON d1.keycolumn = d2.keycolum' –
@rs - 在別人之前寫下這個答案! –