There are several problems with your query. You are essentially doing a CROSS JOIN. So, not only there will be zero rows in the intermediate result set when one table has zero rows but there will also be a lot of duplicate data when any of the tables has more than one rows. This will result in Null results in the first case and erroneous results in the second case.
The only case that your query will work as expected is when all 3 tables have exactly one row.
To have what you want, you need 3 separate subqueries and then to combine them in one:
SELECT
COALESCE( (SELECT SUM(area) FROM TEquipWarehouse), 0
) AS EquipmentSpace
, COALESCE( (SELECT SUM(area) FROM TProductWarehouse), 0
) AS ProductSpace,
, COALESCE( (SELECT SUM(area) FROM TShopPoint), 0
) AS ShoppointSpace
;
The COALESCE() fubction is used to convert the NULL to 0, when a table has no rows.