Hi,We have the following report to generate a list with the number of images a client has per policy:SELECT
domain_jobimage.clientName AS 'CLIENT_NAME',
COUNT(domain_imagecopy.imageid) AS 'NUM_IMAGES',
domain_image.policyName AS 'POLICY_NAME',
domain...