Operation Details
Description: Method to count the number of audit teams which have a specified team name and are added to a specified audit plan.
Sterotype: ns
SQL
SELECT count(*)
         
INTO
:count 

FROM 
AuditTeam, 
Auditor

WHERE 
Auditor.auditPlanID = :auditPlanID
and AuditTeam.auditTeamID = Auditor.auditTeamID
and AuditTeam.name = :auditTeamName