I have the table "words":
id
name
insert into words values(null, 'one');
insert into words values(null, 'two');
insert into words values(null, 'three');
I need to find out, distinctly, the letters used across all over the table. In this case the result would be:
o
n
e
t
w
h
r
I actually dont really have a clue on how to do this. I found some stored procedure that seems to solve it. Some kind of iteration through all the rows where new letters are added to the final results. Is there a way to do this with a pure sql-command?