Updated on Kisan Patel
This tutorial will show you how to get the length of the string in SQL Server?
To get the length of the string in SQL Server, we user LEN
function by passing the string as parameter.
SELECT LEN(firstname) from Employees
This tutorial will show you how to get the length of the string in SQL Server?