MySQL Insert Where query

前端 未结 27 2391
悲&欢浪女
悲&欢浪女 2020-11-22 06:16

What\'s wrong with this query:

INSERT INTO Users( weight, desiredWeight ) VALUES ( 160, 145 ) WHERE id = 1;

It works without the WHE

27条回答
  •  忘掉有多难
    2020-11-22 06:39

    correct syntax for mysql insert into statement using post method is:

    $sql="insert into ttable(username,password) values('$_POST[username]','$_POST[password]')";
    

提交回复
热议问题