本文介绍了Mysql:如何查询类型为bit的列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用休眠和Mysql.我有一个带有布尔属性的类,称为活动".

Hi I am using hibernate and Mysql. I have a class with a boolean attribute called 'active'.

生成的数据库表具有BIT数据类型.到目前为止,一切都很好.我想查询此值,但我不知道该怎么做.我已经尝试过

The generated database table has the BIT data type. So far so good.I want to query this value but I don't know how to do it.I've tried

 SELECT * from table where active = 1

不起作用,以下两项都不起作用

doesn't work, neither the following

 SELECT * from table where active = true

在参考手册和Stackoveflow中我都找不到任何东西.

I didn't find anything neither in the reference manual nor at Stackoveflow.

有任何提示吗?

提前谢谢!

推荐答案

SELECT * FROM table WHERE active = (1)

这篇关于Mysql:如何查询类型为bit的列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 18:11