摘要:
你常用到的mysql命令? Show databases Show tables Insert into 表名() values() Update 表名 set 字段=值 where ... Delete from 表名 where ... Select * from 表名 where 条件 ord 阅读全文
摘要:
EXPLAIN explain 是mysql 优化sql语句的关键字,可以这个explain来分析sql语句的瓶颈在哪里。 通过explain我们可以得到什么信息? 输入:explain select * from user as u left join class as c on u.id = c 阅读全文