묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
xe_document_voted_log 부분 초기화 쿼리문 질문.
2013.03.13 18:02
xe_document_voted_log테이블에서
복수의 document_srl 값을 지우고 싶을때
가형 document_srl 값이 1과2그리고3이 존재할때
document_srl 값 1,2,3이들어가 있으면 그항목 삭제 하는 쿼리문은. 어떻게 짜야할까요 ㅠ
이것 까지는 찾았는데..
delete from xe_document_voted_log where document_srl like '1'
1,2,3번의 document_srl 값에 추천한 사람을 초기화 하고 싶거든요...
도무지 잘 이해가 안되서 질문드립니다.
댓글 4
-
푸시아
2013.03.13 18:15
-
KTK
2013.03.13 21:12
그러니깐 일주일에 한번씩 document_srl 1번과 2번과 약 50개의 번호의 추천을 없애고 싶어서요 -
KTK
2013.03.13 21:13
각 게시글의 추천수를 delete from xe_document_voted_log where document_srl like '1' 이방법으로 지울수 있지만 여러 게시글의 추천수를 한번에 지우고 싶어서요. -
푸시아
2013.03.13 21:42
혹시 or 를 고민하시는 건가요? delete from xe_document_voted_log where document_srl like '%1%' or document_srl like '%2%' or document_srl like '%3%' 이런 식으로요?
질문이 잘 이해가 안되요.
이미 delete를 통해 추천로그를 삭제하셨잖아요.
혹시 글의 voted_count 를 0 으로 만들고 싶으신건가요?