Import Data to Existing Table
问题 How to import data to existing table in Database from another Database in sql I am trying this but not working . It is saying 'Cannot insert an explicit value into a timestamp column.' Use INSERT with a column list to exclude the timestamp column, or insert a DEFAULT into the timestamp column. Insert Into [test].[dbo].[Sample$Employee] select * from [Test1].[dbo].[Sample1$Employee] Thanks 回答1: INSERT INTO Target_Table(Column1, Column2, Column3) SELECT Column1, Column2, Column3 FROM Source