You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ArtsAndCrafts/DataSql/UserValidateByUserMd5_Selec...

13 lines
209 B

drop proc UserValidateByUserMd5_Select
create proc UserValidateByUserMd5_Select
(
@UserMd5 nvarchar(20)
)
as
select count(*) from dbo.Customer where CusMd5=@UserMd5 and CusIsDeleted=1 and CusIsActive!=''