fix: #1 salesPackingTbl 조회 시 null_ prefix 제외 조건 추가 #2
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix/packing-already-packed-error"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
-- 기존
SELECT COUNT(모델명)
FROM salesPackingTbl
WHERE 모델명 = '시리얼값'
-- 변경
SELECT COUNT(모델명)
FROM salesPackingTbl
WHERE 모델명= '시리얼값'
AND PackingCode NOT LIKE 'null_%'