Your question is SQL: 100th Element Query. 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.
Akamai engineers need to validate a generated sequence of service positions against metadata for Akamai delivery products. Write a PostgreSQL query that generates the first 120 elements, joins each element to its corresponding product, and returns only the 100th element.
generate_series.akamai_products.ORDER BY clause.| Column | Type | Description |
|---|---|---|
| service_idPK | INTEGER | Unique Akamai product service identifier |
| product_name | VARCHAR(100) | Akamai product name |
| product_family | VARCHAR(100) | Product family |
| region_code | VARCHAR(10) | Primary deployment region |
| Column | Type | Description |
|---|---|---|
| service_idPK | INTEGER | Registered service identifier |
| service_status | VARCHAR(20) | Current service status |
| owner_team | VARCHAR(100) | Responsible Akamai team |