如何自动递增非主键? – SQL Server

前端之家收集整理的这篇文章主要介绍了如何自动递增非主键? – SQL Server前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
CREATE TABLE SupplierQuote
(
supplierQuoteID int identity (3504,2) CONSTRAINT supquoteid_pk PRIMARY KEY,PONumber int identity (9553,20) NOT NULL
.
.
.
CONSTRAINT ponumber_uq UNIQUE(PONumber)
);

以上ddl产生错误

Msg 2744,Level 16,State 2,Line 1
Multiple identity columns specified
for table ‘SupplierQuote’. Only one
identity column per table is allowed.

我该如何解决?我想要PONumber自动递增.

解决方法

每个表不能有多个标识列.我认为你最好的选择是将PO数据拉到一个单独的表格中,然后将两者与FK列相关联.
SupplierQuote
-------------
supplierQuoteID (PK/identity)
purchaSEOrderID (FK to PurchaSEOrder.purchaSEOrderID)
otherColumn1

PurchaSEOrder
-------------
purchaSEOrderID (PK/identity)
otherColumn1
原文链接:https://www.f2er.com/mssql/75342.html

猜你在找的MsSQL相关文章