Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 SOQL 从日期时间列中去除时间或构造日期?
例如 SELECT DATE('2001-12-31') 将返回 2001 年 12 月 31 日
在某种程度上,你可以这样做,即,
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月。