I want to write the following query:
SELECT ..., MIN(SomeBitField), ... FROM ... WHERE ... GROUP BY ...
The problem is, SQL Ser
select min(convert(int, somebitfield))
or if you want to keep result as bit
select convert(bit, min(convert(int, somebitfield)))