最新回答 / greenYe
我用的是windows,语句是这样的 set global slow_query_log_file='C:\\Program Files\\MySoft\\mysql-5.6.38-winx64\\data\\slow_query.log'; 如果是linux,,,可以尝试下 set global slow_query_log_file='/xxx/xxx/xxx.log'
2018-12-18
已采纳回答 / K8sCat
select count(time_column) from your_table group by year(from_unixtime(time_column))或者by month(from_unixtime(time_column))或者dayofyear(from_unixtime(time_column))from_unixtime: 时间戳转时间unix_timestamp: 时间转时间戳
2018-11-16
最赞回答 / 慕粉4057600
using index是有条件的,需要你说查询的的列与order by 之后的列具有相同的索引才行。例如 select release_year from film order by title;要使用using index,需要 给 release_year和title字段建立相同的索引
2018-09-07