sql-server – 如何创建互斥表列

我有一个表交易,我在一个交易中保存两个记录,一个用于借记和其他贷记.

所以我在表creditAmount(Money)和debitAmount(Money)中有两列.

我想要一个表级约束,每列中的任何一列都不为空.
即如果第3行creditAmount为null,那么debitAmount必须保持一些值和Vice Versa.

连续插入记录时如何确保相同?

解决方法

您可以在表格中添加 CHECK constraint
ALTER TABLE Transactions ADD CONSTRAINT CK_Transactions_DebitOrCreditExists
CHECK ((creditAmount IS NULL AND debitAmount IS NOT NULL) 
   OR (creditAmount IS NOT NULL AND debitAmount IS NULL))

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 'EastRiver' 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...