Hi
I have a series of values in a record column as such:
01|02|03|
Now, I want to select a record that contains a specified value.
If I used a LIKE expression such as
SELECT * FROM table WHERE column LIKE "_01|%"
where the value I'm searching for is '01|', I would eventually be...