"WITH ActiveUsersYesterday AS (
SELECT DISTINCT user_id
FROM user_activity
WHERE activity_date = CAST(GETDATE() - 1 AS DATE)
),
VideoCallUsersYesterday AS (
SELECT DISTINCT user_id
FROM video_calls
WHERE call_date = CAST(GETDATE() - 1 AS DATE)
)
SELECT
(CAST(COUNT(DISTINCT v.userid) AS FLOAT) / NULLIF(COUNT(DISTINCT a.userid), 0)) * 100 AS percentagevideocall_users
FROM
ActiveUsersYesterday a
LEFT JOIN
VideoCallUsersYesterday v ON a.userid = v.userid;"
Bala G. - "WITH ActiveUsersYesterday AS (
SELECT DISTINCT user_id
FROM user_activity
WHERE activity_date = CAST(GETDATE() - 1 AS DATE)
),
VideoCallUsersYesterday AS (
SELECT DISTINCT user_id
FROM video_calls
WHERE call_date = CAST(GETDATE() - 1 AS DATE)
)
SELECT
(CAST(COUNT(DISTINCT v.userid) AS FLOAT) / NULLIF(COUNT(DISTINCT a.userid), 0)) * 100 AS percentagevideocall_users
FROM
ActiveUsersYesterday a
LEFT JOIN
VideoCallUsersYesterday v ON a.userid = v.userid;"See full answer
"I use ChatGPT a lot to either refine my own answers or stories and make them better, or to answer questions which I would then refine to be more personal to me.
Here's what ChatGPT says about this question:
This question is testing your analytical thinking, data-driven decision-making, and product sense—especially in the context of Meta’s focus on engagement and content ranking. The best approach is to **define key engagement metrics, outline an experiment design, and consider trade-of"
Robert H. - "I use ChatGPT a lot to either refine my own answers or stories and make them better, or to answer questions which I would then refine to be more personal to me.
Here's what ChatGPT says about this question:
This question is testing your analytical thinking, data-driven decision-making, and product sense—especially in the context of Meta’s focus on engagement and content ranking. The best approach is to **define key engagement metrics, outline an experiment design, and consider trade-of"See full answer
"Clarifying Questions and possible responses:
both audio and video
goals: increase engagement time among groups/communitites and not require another platform to do group call (be one-stop for communication)
region-TBD
ios/android
only available to users in a group to call users within the group
who can intitiate these calls?- only admin? or anyone?
metrics:NSM: feature engagement (C), number of calls made in a week per user (C).
PM: % of people joining the call in a group"
theproductguy - "Clarifying Questions and possible responses:
both audio and video
goals: increase engagement time among groups/communitites and not require another platform to do group call (be one-stop for communication)
region-TBD
ios/android
only available to users in a group to call users within the group
who can intitiate these calls?- only admin? or anyone?
metrics:NSM: feature engagement (C), number of calls made in a week per user (C).
PM: % of people joining the call in a group"See full answer
Product Analyst
Data Analysis
+3 more
🧠Want an expert answer to a question? Saving questions lets us know what content to make next.