有一个mysql查询,如下,
SELECT Unix_Timestamp(last_executed)
FROM mpres_seq
现在我需要在php中使用MongoDB做同样的事情。在mongodb中,我将last_executed保存为ISO Date。我怎样才能做到这一点?
如果我使用
$collection = $global["dbmongo"] -> mpres_seq;
$res = $collection->find(),array("last_executed"=>1,"_id"=>0));
对我有用吗?我想在mysql中以相同的类型和相同的模式获得last_executed