쿼리문 샘플)
update [DB Table] set [DB Column]=[Value] where [DB Column] >0 and [DB Column] < 100;
샘플 설명)
DB Table = Mysql 데이터베이스 테이블 명 DB Column = 선택된 데이터베이스 테이블에서 해당 열 Value = 처리할 값
사용 예)
update item droprate=1 where droprate > 0 and droprate <100; droprate 의 값이 0~100사이의 값인 droprate 값을 1로 일괄처리