Answers for "sql count with where"

SQL
6

To count number of rows in SQL table

SELECT count(*)
FROM information_schema.columns
WHERE table_name = 'Your_table_nale';
Posted by: Guest on May-07-2020
3

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 ...
Posted by: Guest on October-26-2020
0

SQL only show where count is great than 1

SELECT COUNT( * ) 
FROM agents 
HAVING COUNT(*)>1; --count is greater than 1
Posted by: Guest on March-17-2020
-2

sql count where

SELECT count(CASE WHEN gender = 'F' THEN 1 ELSE NULL END) women_count,
       count(CASE WHEN gender = 'M' THEN 1 ELSE NULL END) men_count
FROM people;
Posted by: Guest on April-21-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language