前言:
今天咱们对“mysql 获取系统时间”都比较关注,小伙伴们都想要了解一些“mysql 获取系统时间”的相关资讯。那么小编在网上搜集了一些对于“mysql 获取系统时间””的相关内容,希望朋友们能喜欢,各位老铁们一起来了解一下吧!mysql取年、月、日、时间
select id, phone,time,year(time),month(time), DAY(time),TIME(time) from user where phone='xxxxxx' #分别取年、月、日、时间
select id, phone,time from user where phone='xxxxxx' #
select id, phone,time,year(time) from user where phone='xxxxxx' #分别取年
select id, phone,time,month(time) from user where phone='xxxxxx' #分别取月
select id, phone,time,DAY(time) from user where phone='xxxxxx' #分别取日
select id, phone,time,TIME(time) from user where phone='xxxxxx' #分别取时间
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #mysql 获取系统时间