2020年1月9日
摘要: 1.//一个sql返回多个总数 统计数据 select count(*) AS num,count(case when status = 1 then status end) as status_1_num,count(case when status = 0 then status end) as 阅读全文
posted @ 2020-01-09 17:56 kevin_yang123 阅读(153) 评论(0) 推荐(0) 编辑
摘要: explain显示了mysql如何使用索引来处理select语句以及连接表。可以帮助选择更好的索引和写出更优化的查询语句。 使用方法,在select语句前加上explain就可以了: 如: explain select surname,first_name form a,b where a.id=b 阅读全文
posted @ 2020-01-09 11:24 kevin_yang123 阅读(318) 评论(0) 推荐(0) 编辑