虽然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;