mysql 时间日期函数

获取 datetime 列的年月日

1
SELECT DISTINCE YEAR(t), MONTH(t), DAYOFMONTH(t) FROM <table-name>;