私は、単純な更新クエリを持っているが、それは動作していない:php mysql update queryが機能していませんか?
update user set active = 'Y' , delete = 'N' where id = 1;// not working
が、私はphpMyAdminには、それは
update `user` set `active` = 'Y' , `delete` = 'N' where `id` = 1;//its working but its database generated
を働いている使用して除いて差がない特殊文字を追加した場合'は必須ではありません。
'delete'は[MySQL予約語](https://dev.mysql.com/doc/refman/5.5/en/keywords.html)です。テーブルや列名として使用することはできませんあなたがバックティックでそれを参照しない限り、 –