I am new to SQL Server as well as to Stack overflow. Please excuse for my mistakes.
Is it possible to sort a value in a column aphabetically? Here is my table
Not mssql, but in Presto I found this way. Maybe someone can convert it, or find a better way to split string to array, sort and join back:
SELECT ARRAY_JOIN(ARRAY_SORT(REGEXP_EXTRACT_ALL('aaffed', '.')), '') --> 'aadeff'