What is the use of & operator in the code specified below. IS there any benefit of using & instead of "AND". Please elaborate.
CASE ( C.[Status] & F.[Status] & D.[Status] & DWT.[Status] & P.[Status] )
WHEN 1
THEN CASE ( C.IsDeleted & F.IsDeleted & D.IsDeleted & P.IsDeleted )
WHEN 0 THEN NULL
ELSE 7
END
ELSE 6
END