Hello,
Within a specific table in my DB, I have certain fields that have been registered by others, so some fields instead of having a simple space ' '
, have spaces of the most diverse types! I do the Javascript treatment as follows:
/\s/g
However, I would like to create a function within SQL Server that would do this type of processing. It's possible? I tried something similar here but nothing effective and tried to create a function through the syntax above but without results.
Thank you!