Ver originalSELECT t1.campo1,t1.campo1+SUM(CASE WHEN t2.campo1 IS NULL THEN 0 ELSE t2.campo1 END)FROM tabla t1 LEFT JOIN tabla t2 ON t1.campo1>t2.campo1GROUP BY t1.campo1