我遇到了一个非常奇怪的问题,无法解决。下面的查询返回0
,然后我将数据库复制到另一台服务器,并且返回了36
。然后突然在生产中重新开始工作。当我手动运行查询时,它将返回36
,但在CodeIgniter中有时是0
,但现在是36
。
$this->db->from('items');
$this->db->where('deleted',0);
$this->db->where('system_item',0);
$this->db->where('category_id',228);
// Should return 36; was returning 0; data didn't change
$items_count = $this->db->count_all_results();