I want to modify this sql:
SELECT DISTINCT
date,
name,
age
FROM
reports1
SELECT DISTINCT
date,
name,
info,
FROM
reports2
Group by
date,
name
But I want to select from reports1
not only date
, name
& age
but also additional_info
which shouldn't be distinct. How do I do this?