asked on
ASKER
ASKER
Microsoft SQL Server is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.SQL Server is available in multiple versions, typically identified by release year, and versions are subdivided into editions to distinguish between product functionality. Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning.
TRUSTED BY
create trigger tr_change_file_two
on Oeordfil for update
as
begin
IF UPDATE(ship_date)
BEGIN
update f2 SET date2 = i.ship_date,
date3 = i.ship_date
from Oeordinl f2 join inserted i on f2.ord_no= i.ord_no
END
end