How can I 'truncate' each word in a phrase in SQL after a fixed number of chars?
For example: I want this data retrieved by the query
select descrizione
from mytable
so are all the in same column.
FISIOPATOLOGIA DELLA RIPRODUZIONE UMANA
ODONTOIATRIA E STOMATOLOGIA
CHIRURGIA MAXILLO FACCIALE
Transformed like this (truncated if longer then 6 chars ), still in a single column:
FISIOL. DELLA RIPROD. UMANA
ODONTO. E STOMAT.
CHIRUR. MAXILL. FACCIA.