Home
About
Contact
Categories
Classic ASP (28 - Sub-Categories)
CSS (1 - Sub-Category)
JavaScript (5 - Sub-Categories)
Databases (22 - Sub-Categories)
ASP.NET (24 - Sub-Categories)
Delphi (5 - Sub-Categories)
Windows Server Core (7 - Sub-Categories)
VMWare (1 - Sub-Category)
Code Editing Tools (2 - Sub-Categories)
Linux (2 - Sub-Categories)
Dell Servers (15 - Sub-Categories)
Blog Entries
2025 (1 - Entry)
Bug Reports
(Bugs Fixed
New CFFCS Coding Source is still in Beta
Please report any errors to the [Contact] page. Thank you.
Classic ASP (28)
CSS (1)
JavaScript (5)
Databases (22)
ASP.NET (24)
Delphi (5)
Windows Server Core (7)
VMWare (1)
Code Editing Tools (2)
Linux (2)
Dell Servers (15)
Tools
Format Your SQL Script
Minify your CSS
Previous
Check if all AOAG Members are in Synchronous mode, and have automatic failover set
Current Code Entry
Next
Databases
SQL Server
SQL Server How to get the number of Characters from a string in a column
SQL Server How to get the number of Characters from a string in a column
Article Entry Date: July 10,2022 @ 01:46:48 / Last Updated On: July 10,2022 @ 01:46:48
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 below code and click [
Execute
]
select LEN(ColumnName) from evContent --With a Querystring added. select LEN(ColumnName) from Content where ID=1
Tags
SQL Server database column
count the number of characters in a SQL Server database column