Multiple conditions on select query
- by stats101
I have a select statement and I wish to calculate the cubic volume based on other values within the table. However I want to check that neither pr.Length_mm or pr.Width_mm or pr.Height_mm are NULL prior. I've looked at CASE statements, however it only seems to evaluate one column at a time.
SELECT
sa.OrderName,
sa.OrderType,
pr.Volume_UOM
,pr.Length_mm*pr.Width_mm*pr.Height_mm AS Volume_Cubic
,pr.Length_mm*pr.Width_mm AS Volume_Floor
,pr.Length_mm
,pr.Height_mm
,pr.Width_mm
FROM CostToServe_MCB.staging.Sale sa
LEFT JOIN staging.Product pr
ON sa.ID = pr.ID