我正在尝试首先检查 NULL,如果值为 NULL,则跳过INSERT
. 但事实并非如此。即使我没有在表单字段中输入任何内容,代码也会插入 NULL 记录。这几乎就像它在识别不存在的东西。
<cfoutput>
<cfif form.TBCom is not "">
<cfquery name="TestTBComm" datasource="TrenaTest">
INSERT INTO Comment1 (
UniqueNum,
ComTyp,
Comments )
SELECT
'#UniqueNum#',
'#TBComV#',
'#TBCom#'
</cfquery>
</cfif>
</cfoutput>