用Query怎么知道比如有个Boolean的字段为true的有多少项呢?(50分)

  • 主题发起人 主题发起人 netmax
  • 开始时间 开始时间
N

netmax

Unregistered / Unconfirmed
GUEST, unregistred user!
用Query怎么知道比如有个Boolean的字段为true的有多少项呢?
 
select count(boolfield) from 表 where boolfield=1
 
select count(boolfield) from 表 where boolfield
 
sql:='select count(*) from 表 where boolfield=true';
 
select count(boolfield) from 表 where boolfield=true
呵呵!
 
后退
顶部