현장 확인 업로드

This commit is contained in:
2026-03-03 21:41:02 +09:00
parent 243ca0c45e
commit f02f8c0457
126 changed files with 2716 additions and 438 deletions

8
check_watermark.sql Normal file
View File

@@ -0,0 +1,8 @@
-- watermark 테이블 데이터 확인
SELECT * FROM watermark;
-- 특정 cpid의 워터마크 확인 (cpid를 실제 값으로 변경)
SELECT * FROM watermark WHERE cpid = 'YOUR_CPID';
-- receipt 테이블에서 comp_sq 확인
SELECT rcpt_sq, rcpt_cpid, comp_sq FROM receipt LIMIT 10;