I have a table with the following values in columns:
Table (col1, col2, col3, col4, col5, col6):
a b c d e f
a b c g h i
a b c k l m
a b c n o p
As a result I want to have one row:
a b c d e f g h i k l m n o p
How to do that?
SELECT DISTINCT col FROM table