Hi,
we a phonenumber field in our database and I would like to do a simple lookup query like:
SELECT * FROM TABLE WHERE Phonenumber = '555123456'
But since the phonenumbers are entered by users and are not normalized, we don't really know what they look like.
Could be:
- +555-123456
or
- (555) 123 456
or
- 555-12-34-56
or something complety different.
The only thing certain is that the all the given numbers should be there in the correct order. Is it possible to construct a query around that?