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/UserValidateGenerate_Update...

13 lines
234 B

drop proc UserValidateGenerate_Update
create proc UserValidateGenerate_Update
(
@UserEmail nvarchar(30),
@ValidateNum nvarchar(10)
)
as
update dbo.Customer set CusIsActive=@ValidateNum where CusEmail=@UserEmail and CusIsDeleted=1