Let's say I have a string field in a table, so that if I do a simple select
I get soomething like
ONE
TWO
THREE
ETC...
I need every selected string to be broken into characters, each character returned as new record. So, instead of getting the above I need to get this:
O
N
E
T
W
O
T
H
R
E
E
E
T
C
.
.
.
Is this possible with plain SQL?
Code:
select field from table
ONE
TWO
THREE
ETC...
I need every selected string to be broken into characters, each character returned as new record. So, instead of getting the above I need to get this:
O
N
E
T
W
O
T
H
R
E
E
E
T
C
.
.
.
Is this possible with plain SQL?