更新数据库中的sql位字段
在 SQL 表中,我有一个位字段,该值显示为 True,当我在代码 Update table1 set Active='True'
中更新时,它会进行更新,但该值现在显示为 1
而不是 True
。如何让它在表中输入值 'True'
而不是整数?谢谢。
In a sql table I have a bit field and the value is displayed as True, when I update in code Update table1 set Active='True'
it makes the update but the value is now displayed as 1
instead of True
. How do I make it put the value 'True'
instead of the integer in the table? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL Server 中的
位
在位图中始终存储为1
或0
。SSMS 中的“编辑表”选项只是出于演示目的将其转换为
True
或False
,这与其实际存储方式无关。Bits
in SQL Server are always stored as1
or0
in a bitmap.The "Edit Table" option in SSMS just translates this to
True
orFalse
for presentation purposes, this is nothing to do with how it is actually stored.