select * from note where strcmp(date_format(time,'%Y-%m'),'2007-05') = 0;//按月查,按日,按年可以类推
平时比较常用的时间、字符串、时间戳之间的互相转换,虽然常用但是几乎每次使用时候都喜欢去搜索一下用法;本文将作为一个笔记,整理一下三者之间的 转换(即:date转字符串、date转时间戳、字符串转date、字符串转时间戳、时间戳转date,时间戳转字符串)用法,方便日后查看;涉及的函数date_format(date, format) 函数,MySQL日期格式化函数date_format()unix…
select * from ding where ((starttime between '2017-05-04 20:00:00' and '2017-06-03') or (endtime between '2017-05-04 20:00:00' and '2017-06-03')) and Room_ID=5
--0 select datediff(now(), now()); --2 select datediff('2015-04-22 23:59:00', '2015-04-20 00:00:00'); --2 select datediff('2015-04-22 00:00:00', '2015-04-20 23:59:00'); --1 select TIMESTAMPDIFF(DAY…
解决办法:1.管理工具---服务里面停止Mysql服务。2.控制面板---卸载Mysql,删除C:\Program Files\MySQL目录.3.这是最关键一步,只做前面两步,密码还是修改不了,因为MySQL 还有文件,也就是在C:\Documents and Settings\All Users\Application Data里面的MySQL文件夹,这个文件没有清除是MySQL重装出现旧密码…
关于如何查看mysql版本:select version(); 查看MySQL端口号:show global variables like 'port';