SQL Int类型默认值问题

发布于 2024-10-01 03:16:33 字数 472 浏览 3 评论 0原文

我创建了一个带有 Int(8) 的字段 'RankID' (从 PHPMyadmin Web GUI Structure 页面,我可以发现 NULL 值为 No 的列>; 并且默认列值为)在我的表格中键入。 我发现一些 Int 默认值是“0”。实际上,我不希望表中的“RankID”有任何“0”值。它将导致排序操作列表 RankID '0' 在我的结果表的顶行。

我该如何解决这个问题?

我可以使用 Int(8) 更正该字段(NULL -> 是;默认 -> NULL)吗?

如果我可以如上所述纠正我的 Int(8) 。那么如何更新数百条记录RankID值从“0”到“null”?

如有任何意见、建议,我们将不胜感激。

I create a field 'RankID' with Int(8) (from PHPMyadmin Web GUI Structure page, I can found the column of NULL value is No; and the column of Default value is None )type in my table.
I found some of the Int default value was '0'. Actually, I don't want any '0' value in my table for 'RankID'. It will cause the sort action list RankID '0' at the top row of my result table.

How can I fix this issue?

Can I correct the field with Int(8) (NULL -> Yes; Default -> NULL)?

If I can correct my Int(8) as above. Then how can I update hundreds of record RankID value from '0' to 'null'?

Any comments, suggestions are appreciated.

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

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

发布评论

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

评论(1

幸福还没到 2024-10-08 03:16:33

您创建的列为 NOT NULL。数据库引擎正在按其应有的方式运行。

使用以下更新语句将现有字段从 0 更新为 NULL。

UPDATE Table
SET    RankID = NULL
WHERE  RankID = 0

You created the column as being NOT NULL. The database eninge is behaving as it should.

Updating the existing fields from 0 to NULL is done with following update statement.

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