关于 SQL 的快速问题我如何进行检查,例如:
Alter Table Invoices WITH NOCHECK
ADD CHECK
现在这是我要添加检查的部分,以便column PaymentDate can be null if another column Payment Total is equal to 0
and also that PaymentDate is not null if Payment Total is greater than 0
.
关于 SQL 的快速问题我如何进行检查,例如:
Alter Table Invoices WITH NOCHECK
ADD CHECK
现在这是我要添加检查的部分,以便column PaymentDate can be null if another column Payment Total is equal to 0
and also that PaymentDate is not null if Payment Total is greater than 0
.