El método más simple es probablemente union all
:
select id, sum(value), min(data)
from t
where id is not null
group by id
union all
select id, value, data
from t
where id is null;
El método más simple es probablemente union all
:
select id, sum(value), min(data)
from t
where id is not null
group by id
union all
select id, value, data
from t
where id is null;