Your First 2 SQL Queries
First time working with the Worklytics dataset? Try running these queries first.
1. Basic Metric Aggregation
How many strong collaborators did the typical team member have each week in August?
Sample Query Output
week
weekly_strong_collab_per_person
2024-08-05
10
2024-08-12
9
2024-08-19
11
2024-08-26
11
Note that the above query can be quickly edited to show results for any of the metrics included in the dataset and any date range.
2. Basic Collaboration Analysis
How much time did the typical team member spend collaborating in slack in August? With how many collaborators?
Sample Query Output
week
weekly_slack_collab_mins_per_person
weekly_slack_collaborators_per_person
2024-08-05
45
15
2024-08-12
37
19
2024-08-19
44
15
2024-08-26
28
18
Note that the above query can be quickly edited to show results for any of the collaboration tools and any date range.
Last updated