mysql max函数在joomla中不起作用

时间:2014-01-22 10:53:17

标签: mysql joomla max

有人可以告诉我这段代码有什么问题吗?我只是想在Joomla 2.5中获得最后的约会。感谢

    // Get a db connection.
    $db = JFactory::getDbo();

    // Create a new query object.
    $query = $db->getQuery(true);

    $query
    ->select($db->quoteName('MAX(created)'))
    ->from($db->quoteName('#__content'))


    $db->setQuery($query);
    $result = $db->loadResult();

    return $result;

2 个答案:

答案 0 :(得分:5)

不引用功能:

$query
    ->select('MAX('.$db->quoteName('created').')')
    ->from($db->quoteName('#__content'));

答案 1 :(得分:0)

;

的末尾缺少->from($db->quoteName('#__content'))