如何在 SQLite 中将 BLOB 数据设置为 Nothing 或 NULL
如何将 SQL 表中的 BLOB 数据字段设置为 NULL 或无?
How to SET BLOB data field in a SQL Table to NULL or Nothing ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与其他所有数据库一样。如果列允许空值。
INSERT INTO test1 (blob_col) 值(空);
或
更新 test1 设置 blob_col = null;
As in every other database too. If the column allows nulls.
INSERT INTO test1 (blob_col) values (null);
or
UPDATE test1 set blob_col = null;