update语句的执行计划如何看?

转化成select语句操作。
如:
update tb1 set f1=1 where id=1;
用explain:
explain select f1 from tb1 where id=1

猜你喜欢

转载自sauzny.iteye.com/blog/2119811