如何将 mysql 日期戳字段分为年、季度、月和日
我有一个 mysql 数据库,其中有一个用于条目的日期戳字段。我真的很想将年、季度、月和日分成单独的列。我可以毫无问题地创建新列,但我不知道如何编写一个可以轻松完成此操作的查询。我一直在玩这样的事情
SELECT MONTH();
FROM `datestamp`
,但没有任何快乐......
感谢任何帮助:-)
I have a mysql database with a datestamp field for entries. I'd really like to separate out the year, quarter, month and day into individual columns. I can make the new columns without a problem but I don't know how to write a query that does this easily. I've been playing around with things like this
SELECT MONTH();
FROM `datestamp`
But haven't had any joy...
Any help gratefully received :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该让你开始...
This should get you started...
这应该有效:
This should work: