length of column | SQL Server Performance Forums

SQL Server Performance Forum – Threads Archive

length of column

Hi i have a column which is of varchar datatype. now i want to select the values whose length of data in that column is > 30 how can i do that
Regards
Ashwin Reddy

select column
from table
where len(column) > 30

]]>