有谁能告诉我为什么这些插件都不起作用?
insert into users password values ("e10adc3949ba59abbe56e057f20f883e") where ID = 36;
insert into users (password) values ("e10adc3949ba59abbe56e057f20f883e") where ID = 36;
insert into users ("password") values ("e10adc3949ba59abbe56e057f20f883e") where ID = 36;
答案 0 :(得分:3)
您需要更新。
Update users set password="something" where Id=36
将是正确的语法
答案 1 :(得分:1)
您不能使用WHERE子句进行INSERT
也许你需要做更新
UPDATE users SET password ='e10adc3949ba59abbe56e057f20f883e' WHERE ID=36;
答案 2 :(得分:0)
查询似乎有误。您正在使用Insert into和最后使用Where子句。