How do i Select * from tableA where the condition is like this :
TableA:
|**Col A** | **Col B** |
| Hello| 9*9 |
| World| 2*2 |
| Cat | 11*11 |
WHERE Col B contains same Number like '9*9'.
Col B is varchar (100).
I was thinking MAYBE using subString as the condition like :
Substring (1) = SubString (3)... but it didnt work out. Any other solution?