Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL case Statement help

Status
Not open for further replies.

Kaia2001

Technical User
Aug 28, 2016
3
US
I have a table that has a container type (in this case) depicted by a series of 20 numbers, i.e. 00000415401049837981. I need to count the records where the container type = '00000415401049837981' or any other 20 digit number. I want the statement to count the number of pallets on a load, if the container is a pallet, it will have a 20 digit number if it is not a pallet the field will be blank. The statement that I am using is:
CASE WHEN [P_Outbound].[CHCART00 - Carton Header].[Pallet #]>0 [P_Outbound].[CHCART00 - Carton Header].[Pallet #] ELSE null END

What am I doing incorrectly. It will not return anything. I did not ask it to count because the program I am using has an aggregate function that I can use after i narrow down the proper function.
 
Hi,

Code:
SELECT....
, Sum(CASE WHEN [container type] = '00000415401049837981' THEN 1 ELSE 0 END)
,.....

Skip,
[sub]
[glasses]Just traded in my OLD subtlety...
for a NUance![tongue][/sub]
 
To get counts for any container:

Code:
Select [container type], Count(*) as ContainerCount FROM yourtable GROUP BY [container type]

To test for exactly 20 digits: [tt]WHERE RTRIM(LTRIM([container type])) NOT LIKE '%[^0-9]%' AND LEN(RTRIM(LTRIM([container type])))=20[/tt]

First condition means the (trimmed) type should not contain any non digit anywhere (but spaces before or after) and the second condition makes sure its 20 digits.

Bye, Olaf.
 
It's unclear what this should mean:
[P_Outbound].[CHCART00 - Carton Header].[Pallet #]>0 [P_Outbound].[CHCART00 - Carton Header].[Pallet #]

Is [CHCART00 - Carton Header] really a single name? Is [P_Outbound].[CHCART00 - Carton Header].[Pallet #] a database.table.column or schema.table.column? I would suggest you USE the database you work on and then don't specify it in names, you only specify schema, if it's not the default dbo schema and then all names inside a query would only be two part table.column.

Bye, Olaf.
 
@Skipvought When the number changes how do I incorporate that in the query. The 20 digit pallet number will be different all the time.
 
It should have read :
CASE WHEN [pallet #]>0 [pallet #] ELSE null END

I'm pretty certain the problem lies here. I can not find the correct language to use to differentiate the number of 20 digit numbers that are the pallet numbers.
 
The CASE statement misses a THEN, but you can't test whether a string is >0, if the [Pallet #] field is numeric, then this would just separte negative from positive pallet numbers.

Bye, Olaf.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top