101
0/304
Loading content...
You are given a table named World with one row per country.
Columns:
A country must be included in the report if it satisfies at least one rule:
Return exactly these columns:
The output row order is not important.
Supported submission environments:
World:
| name | continent | area | population | gdp |
|-------------|-----------|---------|------------|--------------|
| Afghanistan | Asia | 652230 | 25500100 | 20343000000 |
| Albania | Europe | 28748 | 2831741 | 12960000000 |
| Algeria | Africa | 2381741 | 37100000 | 188681000000 |
| Andorra | Europe | 468 | 78115 | 3712000000 |
| Angola | Africa | 1246700 | 20609294 | 100990000000 |[
{"name":"Afghanistan","population":25500100,"area":652230},
{"name":"Algeria","population":37100000,"area":2381741}
]Afghanistan and Algeria satisfy the population threshold. The other rows fail both rules.
World:
| name | continent | area | population | gdp |
|---------|-----------|---------|------------|-----|
| Atlasia | Test | 3000000 | 1200000 | 500 |
| Borea | Test | 800000 | 25000000 | 700 |
| Cydra | Test | 2999999 | 24999999 | 900 |[
{"name":"Atlasia","population":1200000,"area":3000000},
{"name":"Borea","population":25000000,"area":800000}
]Threshold checks are inclusive, so exact values at 3000000 area or 25000000 population qualify.
World:
| name | continent | area | population | gdp |
|---------|-----------|--------|------------|-----|
| Delta | Test | 100000 | 9000000 | 100 |
| Epsilon | Test | 200000 | 10000000 | 200 |[]No country reaches either threshold, so the output is empty.
Constraints