in a query where condition clause. to check if string a contain b, I have a few options with ASE 12.5.4:
a like '%b%'
charindex(b,a)>0
patindex('%b%', a)>0
which one has better performance?
in a query where condition clause. to check if string a contain b, I have a few options with ASE 12.5.4:
a like '%b%'
charindex(b,a)>0
patindex('%b%', a)>0
which one has better performance?