In this lesson, we will get the number of characters from a database column.
Open SQL Server Management Studio.
Right-Click on the database.
Choose [New Query]
Paste the code below and click [Execute]
select LEN(ColumnName) from evContent
--With a Querystring added.
select LEN(ColumnName) from Content where ID=1