MarineProtectedAreas_coverage

SELECT *
FROM (
    SELECT b.country_name as countryName,
    a.totalCovMarinePercentage as totalCovMarinePercentage
FROM BISE.latest.ProtectedAreas_Stats a
INNER JOIN BISE.latest.Country_Information b on a.countryCode = b.country_code
WHERE a.totalCovMarinePercentage IS NOT NULL
) as ProtectedAreas_Stats

No data