Я три таблицы:
Название таблицы: Заказчик
Column Name: Data Type: Description:
id integer Unique id for customer
company_id integer(FK to company.id) Unique id for a company that the customer works for
contact_name varchar Full name of customer
contact_email varchar Email of customer
create_dt date Date when customer added to database
Название таблицы: Компания
Column Name: Data Type: Description:
id integer Unique id for company
company_name varchar Name of company
create_dt date Date when company added to database
converted boolean if customer was converted
converted_dt date Date company purchased the product Value is null if the company did not
Название таблицы: «Связано» (действия / как с клиентом связались)
Column Name: Data Type: Description:
customer_id integer(FK to Customer.id) Unique id for contact
rep_name varchar Name of the rep who made the contact with the customer
rep_email varchar Email of rep who made the contact
contact_channel varchar Channel used to contact the customer(email,phone, in-person...)
contact_dt date Date of contact
Я пытаюсь написать запрос, который показывает среднее число клиентов, с которыми связывались до того, как они были успешно преобразованы в качестве клиентов, на уровне компании.
Я могу получить количество подсчетов до того, как клиенты были успешно преобразованы, но не уверен, как получить среднее число и коэффициент в тех случаях, когда они в конечном итоге были преобразованы.
COUNT(CASE WHEN converted = FALSE AND converted_dt is NULL THEN 1 ELSE 0 END) as contacts_made_before_conversion,
CASE WHEN Company.converted_dt is NOT null THEN count(contact_dt) over(partition by company_name order by contact_dt DESC END) as contacted_counts
FROM Contacted
LEFT JOIN
(SELECT Customer.id as customer_id , company_name,
Company.converted,
FROM Customer LEFT JOIN Company
ON Company.id = Customer.company_id) cc
ON cc.customer_id = Contacted.customer_id
GROUP BY company_name, customer_id