Your question is SQL Joins and Year-Over-Year Growth. Start with the requirements and the two tables on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Unity Technologies BI analysts need to monitor annual revenue across Unity products such as Unity Ads, Unity Cloud, and the Unity Asset Store. Write a PostgreSQL query that joins product metadata with revenue records and calculates year-over-year performance.
NULL otherwise.| Column | Type | Description |
|---|---|---|
| product_idPK | INT | Unique Unity product identifier |
| product_name | VARCHAR(100) | Unity product name |
| product_line | VARCHAR(50) | Product category |
| Column | Type | Description |
|---|---|---|
| revenue_idPK | INT | Unique revenue record identifier |
| product_id | INT | Referenced Unity product |
| revenue_date | DATE | Date revenue was recognized |
| net_revenue | DECIMAL(12,2) | Net revenue in USD |