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.
我还没有在这里找到这个话题,所以这是我的疑问。
我必须计算所有 18 岁以上的人。我拥有的数据是他们出生的日期(我的数据库中的字段称为born_date)。
那么我该如何从该日期提取年份,然后将其与 1995 年进行比较?
试试这个查询:
select * from table where year(born_date) > '$born_date_year'
在CI你可以写:
CI
$this->db->where('year(born_date) >', $born_date_year)->get('table_name')->result_array();