Countries protected areas stats

SELECT *
FROM (
    SELECT countryCode as iso2,
    totalCovLandPercentage,
    totalCovLandArea,
    totalCovMarinePercentage,
    totalCovMarineArea,
    N2KCovLandPercentage,
    N2KCovMarinePercentage,
    CDDACovLandPercentage,
    CDDACovMarinePercentage
    FROM BISE.latest.ProtectedAreas_Stats
) as ProtectedAreas_Stats

No data