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.
如何使用 CodeIgniter 的活动记录类仅在 DATE 数据类型列中选择月份部分?我的查询是什么?
我也很困惑我需要使用什么,.. LIKE 或 WHERE 子句?
请给我例子。
试试这个片段,
$where = "MONTH(dateColumn) = 4"; // comparing on April $this->db->where($where);
根据Active RecordDoc,WHERE方法的用途。
Active Record
WHERE
来源
您可以使用month:
month
MONTH(urdate) = 4