有一些PL / SQL代码的另一个问题。
我的booking form
目前已将动态操作应用于discount
字段。单选按钮设置为Yes
和No
。单击是后,将启用字段Vouchercode
和Discountamount
。
我想要做的是在NOT NULL
时将这些字段设置为discount = yes
。如果null
discount = no
由于
答案 0 :(得分:1)
听起来您想要更改Vouchercode
和Discountamount
字段中的必需验证,具体取决于discount
是'Yes'
。
为此,您需要更改验证码 - 您不需要动态操作。
e.g。而不是检查是否Vouchercode IS NOT NULL
,更改验证以检查Vouchercode IS NOT NULL OR discount = 'Yes'
。