Set value to NULL in MySQL(在 MySQL 中将值设置为 NULL)
问题描述
如果我提交的表单的文本框中没有放入任何内容,我希望将一个值设置为 NULL
.我怎样才能做到这一点?我试过插入 'NULL'
但这只是将 NULL
这个词添加到字段中.
I want a value to be set to NULL
if nothing is put into the text box in the form I'm submitting. How can I make this happen?
I've tried inserting 'NULL'
but this just adds the word NULL
into the field.
我不确定我应该为此提供什么代码,我只是在写一个 UPDATE 查询.
I'm not sure what code I should provide for this, I'm just writing an UPDATE query.
推荐答案
不要将 NULL
放在更新语句中的引号内.这应该有效:
Don't put NULL
inside quotes in your update statement. This should work:
UPDATE table SET field = NULL WHERE something = something
这篇关于在 MySQL 中将值设置为 NULL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 MySQL 中将值设置为 NULL
基础教程推荐
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01