I write the procedure for the login where user can give username or emailid to login and password also. my procedure is like this
create procedure users_login (@username varchar(50),@password varchar(50),
@emailid varchar(50),@ret int output)
as
begin
select username,password,emailid from users where username=isnull(@username,null) or
emailid=isnull(@emailid,null) and [password]=@password
if(@@rowcount >0)
begin
set @ret=1
end
else
begin
set @ret=0
end
end
is it ok or any modification is there
