Microsoft SQL Server 中是否有像 MySQL 中那样的布尔数据类型?

2021-12-25 00:00:00 types boolean sql-server

Microsoft SQL Server 中是否有像 MySQL 中那样的布尔数据类型?

Is there a Boolean data type in Microsoft SQL Server like there is in MySQL?

如果不是,MS SQL Server 中的替代方案是什么?

If not, what is the alternative in MS SQL Server?

推荐答案

您可以使用 BIT 数据类型来表示布尔数据.BIT 字段的值为 1、0 或 null.

You could use the BIT datatype to represent boolean data. A BIT field's value is either 1, 0, or null.

相关文章