Mysql存储过程求教。
发布网友
发布时间:2022-04-07 15:10
我来回答
共1个回答
热心网友
时间:2022-04-07 16:39
这种情况别写存储过程了,不合适。
你只要把语句全部写入一个文件,比如*.sql,
然后让系统每天定时执行一下:
mysql -uroot -ppassword < *.sql
就搞定了,不用考虑执行时间,执行是按照语句的顺序来的,写在前面的语句先执行,执行完了,再执行下一条。
*.sql文件内容比如:
truncate table t1;
truncate table t2;
truncate table t3;
truncate table t4;
update t1 set a=1 where b=2;
update t2 a,t3 b set a.a=b.a where a.b=b.b;
insert into t4 select from t1;