查看Mysql8优化过的sql语句
作者:互联网
虽然5.7中已经提示过EXTENDED会过时,但是还是可以正常使用的
到了8.0中,已经没有EXTENDED了,可以直接使用EXPLAIN解析sql语句,然后用show warnings输出结果
EXPLAIN
select s.* from Student s
where s.id in (
select s_id
from sc
where sc.c_id = 40 and sc.score = 100 );
show warnings;
标签:语句,EXTENDED,show,Mysql8,EXPLAIN,sql,sc,id,select 来源: https://www.cnblogs.com/Bin-x/p/16316188.html