Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 DataGrip 将 CSV 文件导入带有标识列的 SQL Server 表。
更准确地说,如何在导入过程中排除标识列或强制导入标识列?
假设你有一张桌子
create table test_identity_insert( x bigint primary key identity(1,1), y int ); go
您需要更改数据映射
在“导入:“file_Name.csv”格式”窗口的“列”选项卡上,单击“身份”列突出显示的垃圾桶图标。(请参阅此处的屏幕截图,我目前没有允许插入图像的声誉。)
此外,请参阅 DataGrip 中“导入:格式对话框”帮助页面的底部,或此处的网络帮助。