I have a column name which is varchar
I want to filter out all the results where name is an empty string ...
select name
from tblNames
where name <> ''
What I want to do:
select name
from tblNames
where Ltrim(RTrim(name)) <> ''
I want to apply clipping by name in the where clause, but I read several articles that mention the performance issue of functions inside the where clause
I want a solution for this without sacrificing performance
abbas source
share