如何使用 Apache Derby 格式化日期?
我想很好地格式化从查询中收到的日期,例如:
SELECT recdate FROM myrecords;
实际上,我正在搜索该函数以使用日期模式进行漂亮的格式化, 如果像 SimpleDateFormat 这样就更好了。如果不可能,我如何构建一个格式化类 与类似的东西:
SELECT MyFormatter(recdate) FROM myrecords
I would like to format nicely a date received from a query like:
SELECT recdate FROM myrecords;
pratically I am searching the function to pretty formatting with a date pattern,
better if SimpleDateFormat like. And if not possible how can I build a class for formatting
with somtehing like:
SELECT MyFormatter(recdate) FROM myrecords
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看这里:
DateFormat 和 SimpleDateFormat 示例
示例代码:
Look here:
DateFormat and SimpleDateFormat Examples
Sample code: