gpt4 book ai didi

java - 以编程方式将表字段值更新为 null

转载 作者:行者123 更新时间:2023-12-01 00:51:06 24 4
gpt4 key购买 nike

众所周知,如何通过像这样的简单查询将字段值设置为 null -

UPDATE your_table
SET your_column = NULL
WHERE id = 1;

但从编程的角度来看,将字段值更新为 null 的正确方法是哪种 -

db.execSQL("UPDATE  your_table SET your_column='" + null + "WHERE id='" + myid + "'");

db.execSQL("UPDATE  your_table SET your_column= NULL WHERE id='" + myid + "'");

谢谢

最佳答案

我会选择 PreparedStatement .

String query="UPDATE  your_table SET your_column= ? WHERE id=?");
PreparedStatement stmnt = conn.prepareStatement(query);
if(colyouAretryingtopass == null){]
stmnt.setNull(1, Types.VARCHAR);
}

关于java - 以编程方式将表字段值更新为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15544183/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com