You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WHERE (
(`telephone_office` LIKE '%123456789%')
OR (`telephone_mobile` LIKE '%123456789%')
OR (`telephone_home` LIKE '%123456789%')
)
...BUT I want to achieve this:
WHERE (
(REPLACE(`telephone_office`, ' ', '') LIKE '%123456789%')
OR (REPLACE(`telephone_mobile`, ' ', '') LIKE '%123456789%')
OR (REPLACE(`telephone_home`, ' ', '') LIKE '%123456789%')
)
Any suggestions how to do so safely?
The text was updated successfully, but these errors were encountered:
I'm currently doing this:
...which results in this:
...BUT I want to achieve this:
Any suggestions how to do so safely?
The text was updated successfully, but these errors were encountered: