SELECT Team, PPG, OPP_PPG, (PPG - OPP_PPG) AS Net_Points FROM standings WHERE PPG > 100 AND OPP_PPG > 100 ORDER BY Net_Points DESC;