I have the following table with '' as a special character:
Column 1 | Column 2 |
---|---|
1 | 13 |
2 | 1312 |
3 | 315 |
4 | 1613 |
5 | 15311 |
I want to select only those records where Column 2
has 3
between special characters.
I have used a built-in function of my DB fn_SplitOneValue
but it selects 3
and 13
both. Please help!