insert into a table with an identity column fails
i am trying to insert into a table with an identity column using a select query.However, if i include the identity column or ignore the identity column in my insert it throws errors. Is thee a way to insert into select * from a table if the insert t...
- 11007 Views
- 3 replies
- 4 kudos
Latest Reply
Hi, Specify insert columns as below %sqlINSERT INTO demo_test (product_type, sales)SELECT product_type, sales FROM demo
- 4 kudos