1、显示某个时间段的数据:
select * from tb where hour(col_datetime)=18 and to_days(col_datetime)=to_days(curdate())
2、按时间段排序,显示当天所有时间段数据:
select '今天'+cast(hour(col_datetime) as varchar(2))+'时发布的内容',* from tb where to_days(col_datetime)=to_days(curdate()) order by col_datetime
查看SQL执行时间步骤1.show profiles
2.show variables查看profiling 是否是on状态;
3.如果是off,则执行命令 set profiling=1
4.执行SQL语句
5.show profiles 就可以查询到SQL语句的执行时间
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)