Answers for "SQL only show where count is great than 1"

SQL
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

Code answers related to "SQL"

Browse Popular Code Answers by Language