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!

Checking for Null values in sp

Status
Not open for further replies.

AGus01

Technical User
Sep 6, 2005
54
GB
Hi i have this query which is checking for duplicate entries in the database, based on criteria Surname and (mobile telephone number and/or date of birth ) My problem is that date of birth and mobile telephone number are non-mandatory so could be either be null of zero length string returned .

I will need some sort of CASE statement in My where clause which if @srtDateofBirth is /zero length stringNull/zero length string or CT.TelephoneNumber is Null it returns false.

Please can someone help me.

Many thanks

gus

Code:
select 
	@intCandCount = count(CPD.CandID) 
from 
	CandPersonaldetails CPD
	join CandApplication CA on CA.CandID = CPD.CandID
	left outer join CandTelephone CT on CA.Candid  = CT.Candid and CT.TelephoneTypeId = 4 
where
	CPD.Surname = @strSurname 
and 
	(
	CPD.DateOfBirth = @strDateofBirth	
	
	or
		(	
		Left(CT.TelephoneNumber, 9) = Left(@TelephoneNumber, 9) 
		)
	)
and
    CPD.ActiveStatusID = 1 
and 
	CA.ApplicationStatusID = 3
and 
	CA.StageID > 2	
group by 
	CPD.Surname
 
Have you tried something like:
SUM(CASE WHEN phone IS NULL THEN 0 ELSE (CASE DOB IS NULL THEN 0 ELSE 1 END) END)
djj
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top