从 Coldfusion 向 MySQL 插入 NULL 值

发布于 2024-10-11 01:19:14 字数 90 浏览 2 评论 0原文

我有一个数据库,其中一个字段可能有值。根据情况可能需要删除初始值并将其替换为 NULL。

如何在空字段中插入 NULL 值?

欣赏它。

I have a database that may have a value in one of the fields. Circumstance may need to remove the initial value and replace it with a NULL.

How can NULL values be inserted in an empty field?

Appreciate it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

臻嫒无言 2024-10-18 01:19:14

您将编写一个如下所示的查询:

<cfquery name="queryName" datasource="dsn">
  UPDATE tableName SET fieldName = NULL
  WHERE recordId = <cfqueryparam cfsqltype="cf_sql_integer" value="#recordId#" />
</cfquery>

此外,空白字符串和 NULL 值之间存在差异。关于 NULL 需要记住的一点是,它不等于除 NULL 之外的任何东西。但它也不等于非 NULL 值。因此,如果表中有 3 条记录:

ID     VALUE
1      15
2      NULL
3      30

当您运行此查询时:

SELECT ID from tableName where value != 15

您将仅获得记录 3。确保记录 2 包含在结果集中的方法是更改​​您的查询,如下所示:

SELECT ID from tableName where coalesce(value,16) != 15

合并的目的是检查第一个参数为 NULL,如果第一个参数为 NULL,则使用第二个参数的值。在上面的示例中,我将“16”作为第二个参数,但您可以使用任何您想要的值,只要它与您要比较的值不同(在本例中为 15)。

You'd write a query that's something like this:

<cfquery name="queryName" datasource="dsn">
  UPDATE tableName SET fieldName = NULL
  WHERE recordId = <cfqueryparam cfsqltype="cf_sql_integer" value="#recordId#" />
</cfquery>

Also, there's a difference between a blank string and a NULL value. The thing to remember about NULL is that it doesn't equate to anything but NULL. But it also doesn't equate to non-NULL values. So if you have three records in your table:

ID     VALUE
1      15
2      NULL
3      30

When you run this query:

SELECT ID from tableName where value != 15

you will ONLY get record 3. The way to make sure record 2 is included in the resultset is to alter your query as such:

SELECT ID from tableName where coalesce(value,16) != 15

The purpose of coalesce is to check the first parameter for NULL-ness, and use the value of the second parameter instead if the first parameter is NULL. In the above example, I've put '16' as the second parameter, but you can use any value you want as long as it's not the same as what you're comparing for (in this case, 15).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文