create procedure LoginSystem_Verify_Password(
@userid nvarchar(20),
@password varchar(50)
)
as
begin
Select UserId From Login 
Where UserID collate chinese_prc_CS_Ai  =@userid and [Password]=@password
end