Hmm you can try something like this maybe:
select node_name,cast(float(sum(physical_mb))/1024 as decimal(14,2)) as TOTAL_GB from occupancy where node_name in (select node_name from nodes where domain_name='YOUR-DOMAIN')group by node_name
Then copy the the data to a spreadsheet and sum the TOTAL_GB column?