更新数据库中的sql位字段

发布于 2024-11-26 23:08:54 字数 184 浏览 4 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

沧笙踏歌 2024-12-03 23:08:54

SQL Server 中的 在位图中始终存储为10

SSMS 中的“编辑表”选项只是出于演示目的将其转换为 TrueFalse,这与其实际存储方式无关。

Bits in SQL Server are always stored as 1 or 0 in a bitmap.

The "Edit Table" option in SSMS just translates this to True or False for presentation purposes, this is nothing to do with how it is actually stored.

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