SQL Int类型默认值问题
我创建了一个带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您创建的列为
NOT NULL
。数据库引擎正在按其应有的方式运行。使用以下更新语句将现有字段从 0 更新为 NULL。
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.