--Like operator with 5 character ling in FIRST_NAME(we have to give 5 times underscore) SELECT * FROM EMPLOYEE-MASTER WITH(NOLOCK) WHERE FIRST_NAME LIKE '_____';
--Like operator with 7 character ling in FIRST_NAME(we have to give 7 times underscore) SELECT * FROM EMPLOYEE-MASTER WITH(NOLOCK) WHERE FIRST_NAME LIKE '_______';