sql column result is f0,f1.f2.f3.f4.f5.f6.f7.f8.f10,fa,fc,fb using where condition have to filter only f0-f10 without using IN commnd how this can be done .
sql column result is f0,f1.f2.f3.f4.f5.f6.f7.f8.f10,fa,fc,fb using where condition have to filter only f0-f10 without using IN commnd how this can be done .
You can use regex
Where result like ‘f[0-9]%’
So must start with F and then must be a numeric
18 People are following this question.