--登录
create proc e_Login
@Name varchar(20),
@Pwd varchar(20)
as
begin
select count(*) from Employee where EName=@Name and EPwd=@Pwd
end