아이디를 검색하면 에러메세지만... 정보
아이디를 검색하면 에러메세지만...본문
컨텐츠몰을 사용하는데 관리자 모드의 '회원충전기간관리' 에서
이름으로 검색하면 문제가 없는데 아이디를 검색하면 아래와 같은 에러메세지만
나옵니다. member_period_list.php 원본을 다시 적용해도 마찬가지네요...
어떻게 해야 하나요?
select count(*) as cnt from g4_member a, cont4_member_period b where a.mb_id = b.mb_id and ( (mb_id like 'swm%') ) order by mb_datetime desc
1052 : Column: 'mb_id' in where clause is ambiguous
error file : /hboard3/adm/contents_admin/member_period_list.php
이름으로 검색하면 문제가 없는데 아이디를 검색하면 아래와 같은 에러메세지만
나옵니다. member_period_list.php 원본을 다시 적용해도 마찬가지네요...
어떻게 해야 하나요?
select count(*) as cnt from g4_member a, cont4_member_period b where a.mb_id = b.mb_id and ( (mb_id like 'swm%') ) order by mb_datetime desc
1052 : Column: 'mb_id' in where clause is ambiguous
error file : /hboard3/adm/contents_admin/member_period_list.php
댓글 전체
select count(*) as cnt from g4_member a left outer join cont4_member_period b on a.mb_id = b.mb_id where mb_id like 'swm%' order by mb_datetime desc
이렇게 적어보세요
이렇게 적어보세요