1

有没有办法使用 SOQL 从日期时间列中去除时间或构造日期?

例如 SELECT DATE('2001-12-31') 将返回 2001 年 12 月 31 日

4

1 回答 1

0

在某种程度上,你可以这样做,即,

User a = [Select createddate from user limit 1];
system.debug(a.createddate);
system.debug(a.createddate.format('MM/dd, yyyy ') );

在调试日志中,得到

|调试|2010-12-13 00:41:39

|USER_DEBUG|[3]|调试|2010 年 12 月 13 日

好像不能直接把12转12月。

于 2012-12-27T08:11:18.903 回答