How to exclude data
Hi Alan,I have made a demo as following code shows and you could have a look at it. Here, I assume the items that you want to count don’t start with blank space and all of their “child items” start...
View ArticleHow to exclude data
Actually I think I need to do something different. I want to be able to count the amount of rows beneath those rows. So like below. What I want to see is this.Query ResultsMike Shelton 3Tom Shelton...
View ArticleHow to exclude data
>> I have data that has spaces or tabs in front of it that I want to exclude or delete it. << The best way would be to scrub the raw data with tools that are designed to handle text,...
View ArticleHow to exclude data
LTRIM() will trim the spaces at the beginning of a text column.Substring can be used to see is data has a space at the 1st columnSELECT ID, Description from dbo.tablename where SUBSTRING(...
View ArticleHow to exclude data
I have data that has spaces or tabs in front of it that I want to exclude or delete it. How do I go about that? Below is an example. I only want the rows with no space in front of it. The ones below...
View Article