我在表格中有一个uniqueidentifier, rowguidcol, not null, PK, default, and newsequentialid()
列。我使用VB在其中插入值,但我不能。
我尝试添加列但它仍然不会。这是我第一次使用uniqueidentifier
,因为我只使用了身份。所以请帮助我。
我有什么需要做的,我不知道。谢谢。
答案 0 :(得分:0)
插入UniqueIdentifier列时使用NEWID()
。类似的东西:
INSERT INTO (UniqueIdentifierColumn,Name,Age) VALUES (NEWID(),'Banana','20')