Quote:
Originally Posted by r035198x
Well you posted this in MySQL != MSSQL.
I have to say this special characters business is all very strange to me. What do you need those special characters for and where are they coming from.
P.S Moved to MSSQL forum.
thank you for moving it! Sorry about the confusion.
The Special characters are used for a product key. I guess i should explained it that way so there is a better understanding.
so lets say here is a product code: /HR/U39S03-33
now if a user wanted to do a search for that product id, but he only had the alpha/numeric characters, it would never pull it up. "HRU39S0333", so i created that search field, so that it only hold HRU39S0333. and if a user did a partial search, HRU39, it would find it, becauise i have LIKE %usersinput%. id like to get rid of that extra field, and extra data, and something less maintenance.
if there was some kinda of MSSQL command that could ignore those characters when doing the select statement with the "like" result.
hope this is a better description. Thank you pros!