cnct_removals

-- Connector: cnct_countryfactsheet_inforest_roundwood_removals
-- Visualization: vis_removals (shared in factsheet and EU factsheet)
-- Definition: Gives the removals of roundwood per year in thousand m3
-- Variables: 
--     - Country (String): Name of the country
--     - NUTS_CODE (String): Code of the country and EU27 for the EU factsheet
--     - YEAR (integer): Year of the data
--     - REMOVALS (float): Removals of roundwood, round to 2 decimals and units in thousand cubic meters

SELECT Country, NUTS_CODE, YEAR, REMOVALS, 'Thousand Cubic meters' AS UNIT FROM [FISE].[latest].[v_cnct_removals] 
ORDER BY NUTS_CODE, YEAR

No data