查找允许空的表
本文关键字:许空 查找 | 更新日期: 2023-09-27 18:07:54
我有一个incident
表,其中incidentTypeId(int)
是一个允许null的外键。
incidentType
表有Id auto increment primary key not null
和incidentType not null nvarchar
两列。
incidentType
表用于填充DDL
,我有一个listItem
,它被选为selected
,值为"。我正在检查值是否为",如果是,我将DDL
的selectedValue
设置为null。
当我从DDL
中选择一些东西时,一切都很好,工作正常。
当我尝试和insert
没有选择,它被设置为null
,我得到incidentType Id
列上的sqlexception on foreign key constraint
不允许null,因为它是主键。
如何绕过允许null?
主键不能为Null。这是不可能的,因为你的参赛作品必须有一个身份证号。