SQL-How to Insert Row Without Auto incrementing a ID Column?

后端 未结 4 694
长发绾君心
长发绾君心 2020-12-24 12:17

I have a table that has a forced auto increment column and this column is a very valuable ID that is retained through out the entire app. Sorry to say it was poor developme

4条回答
  •  情歌与酒
    2020-12-24 12:42

    bulk insert tablename from 'C:\test.csv' with (rowterminator = '\n',fieldterminator = ',',KEEPIDENTITY)
    

提交回复
热议问题