get count of rows with condition in sql code example
Example 1: sql query to get the number of rows in a table
SELECT COUNT(*) FROM tablename
Example 2: condition in count sql
select count(case Position when 'Manager' then 1 else null end)
from ...
select sum(case Position when 'Manager' then 1 else 0 end)
from ...