This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
我想在不让用户输入他的用户名或电子邮件 ID 的情况下更新密码,因为用户已经登录。所以在我的 web 方法的以下代码片段中,如果我不想在 where 子句中使用 emailid=@emailid,在哪里如果两个 emailid 的密码相同,我只在 emailid1 而不是在 emailid 2 添加带有逻辑更改密码的代码?谢谢。
string update = "update client set pwd=@newpass where pwd=@oldpass";