前言:
目前姐妹们对“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取日期天