摘要:
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 阅读全文
摘要:
explain显示了mysql如何使用索引来处理select语句以及连接表。可以帮助选择更好的索引和写出更优化的查询语句。 使用方法,在select语句前加上explain就可以了: 如: explain select surname,first_name form a,b where a.id=b 阅读全文