drop table Products --Target Table)
drop table UpdatedProducts--Source Table --Update records
--Create a target(Destination) table
CREATE TABLE Products
(
ProductID INT PRIMARY KEY,
ProductName VARCHAR(100),
Rate MONEY
)
GO
--Insert records into target(Destination) table
INSERT INTO Products VALUES
(1,...