我Messages
在 SQL Server 2012 中有一个表。three columns
表中有
ID which is an identity column,
MessageID (int) which is a foreign key to other table and
IsRead field which is a bit not null column.
在给定的时间点,表可以包含大量具有IsRead
列值的记录1 or 0
。我想编写一个查询,在其中我在两个单独的列中找到已读和未读消息的计数。我正在尝试使用 SQL Server 2012 中引入的新 windows 功能来提高效率。我该怎么做 ?