Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ASP.NET 中有一个复选框值来保存到数据库。
现在 SQL Server 中的字段类型,我记得几年前使用布尔值,但在 SQL Server 2008 r2 下不存在。
现在用什么?
如果我让你正确的话.... bit 是你正在寻找的类型。
BIT 或 tinyint。它们在磁盘上占用相同的空间 - 1 个字节,位可以是 0 或 1。
键入“Bit”就是您要查找的内容。
根据 MSDN:“一种整数数据类型,可以取值 1、0 或 NULL。”
使用值 1 表示真,0 表示假。
MSDN 信息