c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
SQL

how to implement Progressive (continuous) dots for article using SQL?

| | SQL

We are going to learn how to implement Progressive (continuous) for an article using SQL server using SUBSTRING.


SELECT SUBSTRING(title, 1, 50)+'.....' AS Title FROM Post;

 


OUTPUT:


How to use CAST function in SQL......