Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们的一个表单上有一个复选框。
如果用户选中此框并单击“保存”按钮,我们希望将值 1 或 True 插入表中。
但是,如果未选中该框,而不是插入 NULL,我们想插入 0 或 False。
知道如何解决这个问题吗?
非常感谢提前
如何只检查非空输入:
INSERT INTO myTable (myBitField) VALUES (CASE WHEN @myCheckboxParameter IS NULL THEN 0 ELSE 1)