I have a database with a large number of words but i want to select only those records where the character length is equal to a given number (in example case 3):
I think you want this:
select * from dbo.table where DATALENGTH(column_name) = 3