标签: php sql propel
为什么这不起作用?
$allRecords = RecordsQuery::create() ->where('SUBSTR(Records.paymentTime, 1, 7) = ?', '2013-02') ->findOne(); // var_dump($allRecords);
它只返回null。 如果我将它用作SQL-Command,则返回正确的记录。
Records.paymentTime是一个日期字段。
诚恳。