Experts, I have a single table with multiple columns. col1, col2, col3, col4, col5, col6
I need to select distinct (col4)
, but I need all other columns also on my output.
If I run, this ( select distinct(col4 ) from table1
), then I get only col4 on my output.
May I know, how to do it on db2?.
Thank you