存储过程多参数解决方案

select   count(pid)   from   m_pics    
  WHERE   pPub=1    
  AND   pType=isnull(@pType,pType)    
  AND   pPixes=isnull(@pixes,pPixes)

通过isnull来解决

pType=isnull(@pType,pType)  

意思是

如果@pType is null

pType=pType

如果@pType is not null

 pType=@pType

posted @ 2008-10-17 14:43  小眼睛老鼠  阅读(510)  评论(0编辑  收藏  举报