When I compare two strings in SQL Server, there are couple of simple ways with = or LIKE.
=
LIKE
I want to redefine equality as:
If
You can add a precomputed column in the base table that is evaluated in INSERT/UPDATE trigger (or UDF default) that splits, sorts and then concatenates words from the original column.
Then use = to compare these precomputed columns.