Is it possible to query records based on a string column while ignoring spaces in the stored value? For instance, if the value is Hello World, the query would be checking for HelloWorld. If possible, does this slow the query down noticeably?
I know I could store two values when the records are stored, one with the string as entered and one with spaces removed. Then I could query the string value with no spaces. But am wondering if the above is possible as it seems cleaner and easier.
Thanks for looking