connect.lib.php 질문입니다.
본문
$sql = " select sum(IF(mb_id<>'',1,0)) as mb_cnt, count(*) as total_cnt from {$g5['login_table']} where mb_id <> '{$config['cf_admin']}' ";
위의 쿼리에서
mb_id 중복제거를 하고 싶은데(pc, mobile 같은 아이디로 로그인하면 카운트도 증가되서요)
$sql = " select DISTINCT sum(IF(mb_id<>'',1,0)) as mb_cnt, count(*) as total_cnt from {$g5['login_table']} where mb_id <> '{$config['cf_admin']}' ";
이렇게 해도 안되더군요ㅠ 힌트좀 주실수 있을까요?ㅠㅜ
!-->!-->답변 1
중복 제거를 mb_cnt 부분에만 적용하시려면 그 부분만 출력해서 mb_id를 distinct로 해서 별도 카운트로 가져오셔야 할듯 합니다. 전체 카운트 처리하면서 mb_id만 중복 제거 할수는 없는 부분이기에 오류가 나는겁니다.
답변을 작성하시기 전에 로그인 해주세요.