101
0/304
Loading content...
A telecom strategy team is evaluating where to expand premium network infrastructure.
Table: subscriber
Table: country_code_map
Table: call_log
Business metric definitions:
Global average duration:
Country endpoint average duration:
Task: Return countries whose endpoint average duration is strictly greater than the global average duration.
Output requirements:
Supported submission environments:
subscriber:
| subscriber_id | subscriber_name | phone_number |
|---------------|-----------------|--------------|
| 1 | Moncef | 212-1234567 |
| 2 | Maroua | 212-6523651 |
| 3 | Jonathan | 051-1234567 |
| 4 | Elvis | 051-7654321 |
| 5 | Rachel | 972-0011100 |
| 6 | Meir | 972-1234567 |
country_code_map:
| country_name | country_code |
|--------------|--------------|
| Peru | 051 |
| Israel | 972 |
| Morocco | 212 |
| Germany | 049 |
call_log:
| caller_id | callee_id | duration_minutes |
|-----------|-----------|------------------|
| 1 | 5 | 30 |
| 2 | 5 | 10 |
| 1 | 2 | 60 |
| 3 | 4 | 120 |
| 3 | 4 | 300 |
| 4 | 3 | 6 |
| 6 | 5 | 12 |
| 6 | 1 | 4 |
| 5 | 6 | 2 |
| 1 | 6 | 8 |[
{"country":"Peru"}
]Global average is 55.2. Peru's endpoint average is 142.0, while Morocco and Israel are below global average.
subscriber:
| subscriber_id | subscriber_name | phone_number |
|---------------|-----------------|--------------|
| 10 | Asha | 101-1200001 |
| 11 | Bren | 202-1200002 |
| 12 | Cato | 303-1200003 |
country_code_map:
| country_name | country_code |
|--------------|--------------|
| Northland | 101 |
| Eastoria | 202 |
| Southbay | 303 |
call_log:
| caller_id | callee_id | duration_minutes |
|-----------|-----------|------------------|
| (no rows) |[]With no call rows, no country can satisfy a strictly-above-global comparison.
subscriber:
| subscriber_id | subscriber_name | phone_number |
|---------------|-----------------|--------------|
| 10 | Aria | 101-2222000 |
| 11 | Blake | 101-3333000 |
| 12 | Cyra | 202-4444000 |
| 13 | Dinesh | 303-5555000 |
| 14 | Eren | 404-6666000 |
country_code_map:
| country_name | country_code |
|--------------|--------------|
| Alpha | 101 |
| Beta | 202 |
| Gamma | 303 |
call_log:
| caller_id | callee_id | duration_minutes |
|-----------|-----------|------------------|
| 10 | 11 | 40 |
| 10 | 12 | 10 |
| 12 | 13 | 10 |
| 13 | 14 | 100 |[
{"country":"Gamma"}
]Code 404 is unmapped and contributes only to global average. Gamma's endpoint average is 55, which is above global average 40.
Constraints