mysql里的insert

insert不跟where 比如 insert into table (name) value(‘******’)where id =1 肯定不行的 insert 语句 是插入语句,不跟条件的。 如果你想要修改数据表中id为1的这一条记录。。 那么就是 update table set 字段=值 ,字段2=值2 ,... where id=1
原文地址:https://www.cnblogs.com/mm20/p/10645824.html