I have a column named parcel_number of varchar type. It contains values like ab-cd-ef and uvwxyz. A search for abcdef or uv-wx-yz does not return those records.
How should I write the query to meet this requirement?
|
I have a column named How should I write the query to meet this requirement? |
||||
|
|
|
This situation seems to be the result of a bad design decision. As this column is not storing human readable content, but is to be used as an identifier, the content of this column should have a uniform structure, either with or without the dashes, but not mixing them! You'd also have a hard time having a UNIQUE constraint on this column... I'd recommend stripping the dashes from the table:
Then you only have to strip the dashes from the the search string too. I assume |
|||||||
|