标签:style blog http ar color sp on 数据 div
create table t_comments_sample2 like t_comments_sample; #拷贝表结构 insert into t_comments_sample2 select * from t_comments_sample limit 1,2;#复制两条数据
错误截图:
解决方法:
SET SQL_SAFE_UPDATES = 0;#因为MySql运行在safe-updates模式下,该模式会导致非主键条件下无法执行update或者delete命令,需修改下数据库模式 CALL `tedp`.`p_phone_comments`();#执行存储过程
标签:style blog http ar color sp on 数据 div
原文地址:http://www.cnblogs.com/ivan0626/p/4168988.html