데이터의 row count
$where = "grp_idx=".$grp_idx." and u_id='".$u_id."' and c_expire_date >= date_add(now(), interval -600 minute)";
$this->db->where($where);
$this->db->from($this->certify_table);
$certify_cnt = $this->db->count_all_results();
실행 쿼리 문자열 반환
print_r($this->db->last_query());
join의 예
$this->db->select("A.*, B.g_img");
$this->db->where('A.grp_idx', $grp_idx);
$this->db->where('A.g_pack_idx', $row->idx);
$this->db->from($this->goods_inout_detail_table." AS A");
$this->db->join($this->goods_table." AS B", 'A.g_barcode = B.g_barcode');
$this->db->order_by('A.idx', 'DESC');
$query2 = $this->db->get();
foreach ($query2->result() as $row2)
{
echo $row2->idx
}
'[ Web 관련 ] > 코드이그나이터 3.x.x' 카테고리의 다른 글
코드이그나이터 디렉토리 경로, 공통 파일 사용 (0) | 2020.09.25 |
---|---|
form_validation에 커스텀 룰 추가 (0) | 2020.09.09 |
코드이그나이터 Path - 절대 경로 (0) | 2020.06.17 |
코드이그나이터 RestApi php-jwt (JSON Web Token) (0) | 2020.06.09 |
코드이그나이터 RestApi + CORS 설정 (composer 사용안함) (0) | 2020.05.29 |