Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Showing COUNT greater than 10

    select COUNT (empl.EmpID) as 'Number of Employees in Section',dep.DepName

    from Employee empl

    INNER JOIN

    Department dep

    on dep.DepID=empl.DepID

    group by dep.DepName

    having

    COUNT(*) >10

Viewing post 1 (of 1 total)