Monday, January 19, 2015

Count Character form string sql server

Declare @string varchar(1000)
Set @string = 'x,r,t.h'
select len(@string) - len(replace(@string, ',', ''))


No comments:

Post a Comment

📱Build WhatsApp Bot using .NET + OpenAI

   In this article, you will learn how to build a real-world WhatsApp chatbot using ASP.NET Core and OpenAI. This bot can automatically repl...