9a086dae50
Deploy momo-erp / deploy (push) Successful in 2m42s
운영 DB 에는 직접 UPDATE 로 부서 설정 완료. 035 도 INSERT/UPSERT 시 dept_code='DEPT003', dept_name='일반구매자' 박도록 패치. 임직원 6명(user_type='A') 은 영향 없음.
226 lines
125 KiB
SQL
226 lines
125 KiB
SQL
-- 035_full_reload.sql — UPSERT 매 deploy 안전 (objid numeric)
|
|
ALTER TABLE supply_mng ADD COLUMN IF NOT EXISTS product_lines TEXT;
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_supply_mng_code_uniq ON supply_mng(supply_code);
|
|
|
|
-- ===== 공급업체 80개 UPSERT (objid 는 numeric 1..80) =====
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (1, 'SUP001', '주식회사 헤이필드 크리머리', '이지수 대표', '010-7244-4404', '유정란,유제품,치즈', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (2, 'SUP002', '버터럼', '이지수 대표', '010-7244-4404', '노슈거, 뚜띠푸르티 과일즙/올리브유 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (3, 'SUP003', '맛깔나는 모모수산', '김창완 대표', '010-7171-0070', '산지직송 수산', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (4, 'SUP004', '신통방통푸드', '조용준 대표', '010-2222-3465', '보리쌈장', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (5, 'SUP005', '플랜비', '김영헌 대표', '010-2965-9106', '듀라텍스외 화장품/식품', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (6, 'SUP006', '비프스토리', '정찬/함휘령 대표', '010-3935-0076', '축산 /육가공', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (7, 'SUP007', '에이슬링코리아', '김민재 대표', '010-5415-8753', '앙투어솔레 치즈/파스타외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (8, 'SUP008', '농업회사법인 그린라인 유한회사', '김남헌 수석 컨설턴트', '010-8704-4554', '유러피안 샐러드', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (9, 'SUP009', '농업회사법인㈜대덕유통', '최광진 대표', '010-2774-6361', '1번 방사유정란', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (10, 'SUP010', '오수연푸드', '신예진 과장', '010-3457-7080', '반찬류 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (11, 'SUP011', '한울', '배우리 대리', '010-6855-1654', '한울김치 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (12, 'SUP012', '한울팜스', '배우리 대리', '010-6855-1654', '비빔나물/ 한울 반찬 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (13, 'SUP013', '자운두부', '대표', '010-4095-4149', NULL, 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (14, 'SUP014', '썬스토리', '김명준 상무', '010-9466-7098', '빛채울김치 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (15, 'SUP015', '주식회사 상선에프앤비', '박선규 대표', '010-9938-7601', '간장게장/양념게장 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (16, 'SUP016', '다온다코리아', '고요한 대표', '010-2995-1534', '덤핑/임박', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (17, 'SUP017', '와이파이상사', '정종민 대표', '010-6648-9006', '화장품/식품/덤핑', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (18, 'SUP018', '바른맛 자연', '대표', '010-8633-5816', '꽃징어 외 건어물', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (19, 'SUP019', '그레잇 코리아', '정현경 팀장', '010-9100-4505', '김치/장아찌', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (20, 'SUP020', '주식회사 야식창고', '도주형 대표', '010-8834-8874', '쿵딘쌀국수 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (21, 'SUP021', '팔덕팩토리', '김경민 대표', '010-2927-7054', '팔덕식당 등갈비찜', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (22, 'SUP022', '㈜성우트레이딩', '홍순석 대표', '010-6571-1440', '생선까스/밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (23, 'SUP023', '오름 에프엔비', '정현주', '010-5115-0440', '대장쪽갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (24, 'SUP024', '㈜ 삼부에프씨', '조은실 대표', '010-9282-1150', '로움갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (25, 'SUP025', '벨라마켓', '김수진 대표', '010-4199-7321', '여수해적 밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (26, 'SUP026', '르구르망', '차장님', '010-2442-6279', '치즈 외 유제품', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (27, 'SUP027', '민속떡집', '정미화 대표', '010-8221-3846', '쑥개떡 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (28, 'SUP028', '경기떡집', '마충렬 팀장', '010-4123-0626', '이티떡/미숫가루 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (29, 'SUP029', '이랜드 팜앤푸드', '김승만 파트장', '010-6501-8768', '에슐리 밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (30, 'SUP030', '퐈퐈마켓', '정수민 대리', '010-8495-0026', '초례청 약과 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (31, 'SUP031', '덕스에프앤비', '이세환 대표', '010-5663-4764', '국물닭발 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (32, 'SUP032', '오웬푸드 셰프애찬', '김영미 이사', '010-8818-2243', '셰프애찬 김치 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (33, 'SUP033', '대명수산', '서태명 대표', '010-4992-5424', '과메기/ 수산밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (34, 'SUP034', '정만수산', '대표', '010-7352-8882', '알탕 수산밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (35, 'SUP035', '순진식품 영농회사법인', '이도규 부장', '010-5757-3954', '순진콩물', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (36, 'SUP036', '한국해양수산', '이도경 대표', '010-3075-5598', '통영 수산물', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (37, 'SUP037', '에스티식품', '허주원 대표', '010-6330-8032', '화명동 떡볶이', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (38, 'SUP038', '㈜솔푸드', '대표', NULL, '뚱이만두', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (39, 'SUP039', '진도 삼촌네', '대표', '010-5161-7603', '초당옥수수', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (40, 'SUP040', '성부유통', '국수호 대표', '010-4233-9257', '가락청과 과일', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (41, 'SUP041', '연동치미', '실장님', '010-4792-0023', NULL, 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (42, 'SUP042', '달을성농장', '윤성규 대표', '010-7585-0988', '샐러드팩', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (43, 'SUP043', '아이캔두잇', '대표', '010-5276-5680', '스낵류', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (44, 'SUP044', '피와이푸드', '박정수 대표', '010-7417-5800', '월남쌈 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (45, 'SUP045', '간식어장', '이재선 대표', '010-2987-0444', '떡볶이/분식밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (46, 'SUP046', '통큰수산', '조성우 전무', '010-9852-2734', '홍게/수산밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (47, 'SUP047', '조선물산', '추희수 대리', '010-9791-8515', NULL, 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (48, 'SUP048', '오로라 에프앤비', '김리나 대표', '010-8445-2269', '양송이스프/치즈스틱 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (49, 'SUP049', '초이스엠 코리아', '강정회 대표', '010-3200-6722', '양갈비 숄더랙', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (50, 'SUP050', '글로비스 얼라이언스', '이승관 본부장', '010-3198-1742', '나탈리스 주스/밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (51, 'SUP051', '덕컴퍼니', '강나래 대표', '010-9793-1117', '덤핑 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (52, 'SUP052', '예령산업', '최우영 대표', '010-3350-3184', '철호국밥 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (53, 'SUP053', '보라티알', '백민기 차장', '010-3722-1951', '데체코 올리브유 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (54, 'SUP054', '에스디지 코퍼레이션', '양정규 대표', '010-6242-5098', '순대국 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (55, 'SUP055', '더존푸드', '김준열 담당', '010-8507-9972', '국물닭발 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (56, 'SUP056', '약단밤 이야기', '김영미 대표', '010-5671-6679', '생율, 약단밤', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (57, 'SUP057', '남동공단 떡볶이', '대표', '010-9441-7901', '떡볶이/분식밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (58, 'SUP058', '주식회사 온다미', '지현진 과장', '010-6564-4767', '반건오징어,수산', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (59, 'SUP059', '차림에프엔비', '차주영 대표', '010-2582-4294', '삼일카레', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (60, 'SUP060', '청담푸드', '박성태 대표', '010-7236-4988', '직화 알곱창', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (61, 'SUP061', '촌드레 푸드', '전준동 대표', '010-8450-9944', '코다리 조림', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (62, 'SUP062', '농업회사법인 ㈜ 애담', '대표', '010-3734-6595', '강화 약숙찹쌀떡', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (63, 'SUP063', '주안고기백화점', '원기연 대표', '010-5431-3020', '쫙갈비(다원미트)', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (64, 'SUP064', '㈜엘에푸푸드', '조성국 팀장', '010-8-4084-2097', 'LF푸드', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (65, 'SUP065', '㈜대일본초', '전종호 대표', '010-3320-1848', '고구마칩', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (66, 'SUP066', '이레축산', '박지헌 대표', '010-5612-4079', '정육(엠마오미트)', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (67, 'SUP067', '영성', '김금영 대표', '010-2981-3427', '생강청 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (68, 'SUP068', '이천쌀 김부각', '오경선 대표', '010-7194-3256', '이천 김부각', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (69, 'SUP069', '㈜해늘', '최연준 이사', '010-9887-6256', '순대국', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (70, 'SUP070', '유통몬스터', '최원철 대표', '010-5370-6123', '명인카스테라', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (71, 'SUP071', '진보 건어물', '이주송 대표', '010-3167-4210', '쥐포', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (72, 'SUP072', '서락비', '대표', '010-9070-2227', '닭갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (73, 'SUP073', '화앤닭', '대표', '010-6353-2223', '닭갈비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (74, 'SUP074', '치즈앤푸드', '정예슬대리', '010-2692-6066', '치즈/유제품 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (75, 'SUP075', '오늘의 즐거움', '장주희 대표', '010-3795-3961', '밀키트 외', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (76, 'SUP076', '그래비티', '김선영대표', '010-7176-8335', '애사비', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (77, 'SUP077', '㈜동추원FNB', '박동신대표', '010-6341-0520', '소불고기 밀키트', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (78, 'SUP078', '선산이조곱창', '대표', '010-5369-8272', '곱창전골', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (79, 'SUP079', '단풍고을', '대표', '010-5351-2833', '떡', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
INSERT INTO supply_mng (objid, supply_code, supply_name, charge_user_name, supply_tel_no, product_lines, status, reg_id, reg_date) VALUES (80, 'SUP080', '엘리스유통', '대표', '010-2447-3002', '화장품/덤핑', 'active', 'admin', NOW()) ON CONFLICT (supply_code) DO UPDATE SET supply_name=EXCLUDED.supply_name, charge_user_name=EXCLUDED.charge_user_name, supply_tel_no=EXCLUDED.supply_tel_no, product_lines=EXCLUDED.product_lines, status='active';
|
|
|
|
-- ===== 회원 135명 UPSERT (user_id=momoNNN) =====
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo001', 'i8+4uUD3yNGbj6Lz1er20A==', '수원', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo002', 'i8+4uUD3yNGbj6Lz1er20A==', '사자(수원)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo003', 'i8+4uUD3yNGbj6Lz1er20A==', '천금한우', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo004', 'i8+4uUD3yNGbj6Lz1er20A==', '백운(아띠수)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo005', 'i8+4uUD3yNGbj6Lz1er20A==', '열린유통', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo006', 'i8+4uUD3yNGbj6Lz1er20A==', '고센', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo007', 'i8+4uUD3yNGbj6Lz1er20A==', '대박과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo008', 'i8+4uUD3yNGbj6Lz1er20A==', '뭉싸', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo009', 'i8+4uUD3yNGbj6Lz1er20A==', '창고보이', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo010', 'i8+4uUD3yNGbj6Lz1er20A==', '라에프앤비', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo011', 'i8+4uUD3yNGbj6Lz1er20A==', '유정', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH001' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo012', 'i8+4uUD3yNGbj6Lz1er20A==', '훈스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo013', 'i8+4uUD3yNGbj6Lz1er20A==', '용두', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo014', 'i8+4uUD3yNGbj6Lz1er20A==', '장위', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo015', 'i8+4uUD3yNGbj6Lz1er20A==', '은이네청과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo016', 'i8+4uUD3yNGbj6Lz1er20A==', '죽전', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo017', 'i8+4uUD3yNGbj6Lz1er20A==', '도곡', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo018', 'i8+4uUD3yNGbj6Lz1er20A==', '양주', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo019', 'i8+4uUD3yNGbj6Lz1er20A==', '건강만들기', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo020', 'i8+4uUD3yNGbj6Lz1er20A==', '고기파는농부', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo021', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/진천', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo022', 'i8+4uUD3yNGbj6Lz1er20A==', '농부의아침', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo023', 'i8+4uUD3yNGbj6Lz1er20A==', '단과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo024', 'i8+4uUD3yNGbj6Lz1er20A==', '더드림', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo025', 'i8+4uUD3yNGbj6Lz1er20A==', '디딤돌', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo026', 'i8+4uUD3yNGbj6Lz1er20A==', '라이프룻', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo027', 'i8+4uUD3yNGbj6Lz1er20A==', '래빗', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo028', 'i8+4uUD3yNGbj6Lz1er20A==', '맘마멤버스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo029', 'i8+4uUD3yNGbj6Lz1er20A==', '맛과당', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo030', 'i8+4uUD3yNGbj6Lz1er20A==', '명일동유기농', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo031', 'i8+4uUD3yNGbj6Lz1er20A==', '성가정', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo032', 'i8+4uUD3yNGbj6Lz1er20A==', '성부유통', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo033', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭(하남점)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo034', 'i8+4uUD3yNGbj6Lz1er20A==', '아삭아삭', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo035', 'i8+4uUD3yNGbj6Lz1er20A==', '올리브', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo036', 'i8+4uUD3yNGbj6Lz1er20A==', '우동공구', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo037', 'i8+4uUD3yNGbj6Lz1er20A==', '울산단과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo038', 'i8+4uUD3yNGbj6Lz1er20A==', '위례과일왕', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo039', 'i8+4uUD3yNGbj6Lz1er20A==', '이천착과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo040', 'i8+4uUD3yNGbj6Lz1er20A==', '이촌유기농(배달)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo041', 'i8+4uUD3yNGbj6Lz1er20A==', '신선판다', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo042', 'i8+4uUD3yNGbj6Lz1er20A==', '별난청과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo043', 'i8+4uUD3yNGbj6Lz1er20A==', '봉담', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo044', 'i8+4uUD3yNGbj6Lz1er20A==', '참농', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo045', 'i8+4uUD3yNGbj6Lz1er20A==', '프리미엄과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo046', 'i8+4uUD3yNGbj6Lz1er20A==', '한꾸러미', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo047', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo048', 'i8+4uUD3yNGbj6Lz1er20A==', '세교착과2', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo049', 'i8+4uUD3yNGbj6Lz1er20A==', '이편한마트', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo050', 'i8+4uUD3yNGbj6Lz1er20A==', '무지개과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo051', 'i8+4uUD3yNGbj6Lz1er20A==', '더싱싱한아침', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo052', 'i8+4uUD3yNGbj6Lz1er20A==', '용감한과일', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo053', 'i8+4uUD3yNGbj6Lz1er20A==', '딩동딩동', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo054', 'i8+4uUD3yNGbj6Lz1er20A==', '왕언니푸드', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH002' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo055', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓베이스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo056', 'i8+4uUD3yNGbj6Lz1er20A==', '단이네(과일청년)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo057', 'i8+4uUD3yNGbj6Lz1er20A==', '과일트럭', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo058', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/갈매(라보)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo059', 'i8+4uUD3yNGbj6Lz1er20A==', '지디어스(굿데이마켓)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo060', 'i8+4uUD3yNGbj6Lz1er20A==', '온맘푸드', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo061', 'i8+4uUD3yNGbj6Lz1er20A==', '날로날로', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo062', 'i8+4uUD3yNGbj6Lz1er20A==', '달보드레(차량)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo063', 'i8+4uUD3yNGbj6Lz1er20A==', '더바라던', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo064', 'i8+4uUD3yNGbj6Lz1er20A==', '땡스', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo065', 'i8+4uUD3yNGbj6Lz1er20A==', '산타마트', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo066', 'i8+4uUD3yNGbj6Lz1er20A==', '수지과일사랑', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo067', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(당산)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo068', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살유통(광주)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo069', 'i8+4uUD3yNGbj6Lz1er20A==', '장보기좋은날호감(호수)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo070', 'i8+4uUD3yNGbj6Lz1er20A==', '아띠수', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo071', 'i8+4uUD3yNGbj6Lz1er20A==', '여과생활', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo072', 'i8+4uUD3yNGbj6Lz1er20A==', '썬스토리', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo073', 'i8+4uUD3yNGbj6Lz1er20A==', '이세푸드', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo074', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의장바구니', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo075', 'i8+4uUD3yNGbj6Lz1er20A==', '척척밥상', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo076', 'i8+4uUD3yNGbj6Lz1er20A==', '트라공구', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo077', 'i8+4uUD3yNGbj6Lz1er20A==', '탱글탱글', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo078', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(다산)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo079', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(호평)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo080', 'i8+4uUD3yNGbj6Lz1er20A==', '햇살아래(화도)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo081', 'i8+4uUD3yNGbj6Lz1er20A==', '홈마켓', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo082', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(동편마을)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo083', 'i8+4uUD3yNGbj6Lz1er20A==', '노리컴퍼니', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo084', 'i8+4uUD3yNGbj6Lz1er20A==', '다올유통', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo085', 'i8+4uUD3yNGbj6Lz1er20A==', '굿데이(서초우면점)', 'U', '사용자', 'active', 'HQ', (SELECT objid FROM momo_warehouses WHERE wh_code='WH003' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo086', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤한데이', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo087', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo088', 'i8+4uUD3yNGbj6Lz1er20A==', '바로팜', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo089', 'i8+4uUD3yNGbj6Lz1er20A==', '오늘의곶간', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo090', 'i8+4uUD3yNGbj6Lz1er20A==', '김포지사', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo091', 'i8+4uUD3yNGbj6Lz1er20A==', '광이/장기', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo092', 'i8+4uUD3yNGbj6Lz1er20A==', '오공', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo093', 'i8+4uUD3yNGbj6Lz1er20A==', '반한과일', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo094', 'i8+4uUD3yNGbj6Lz1er20A==', '호호야채', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo095', 'i8+4uUD3yNGbj6Lz1er20A==', '킷트킷트', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo096', 'i8+4uUD3yNGbj6Lz1er20A==', '우주네텃밭', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo097', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(산곡)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo098', 'i8+4uUD3yNGbj6Lz1er20A==', '다담마켓(도화)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo099', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(김포)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo100', 'i8+4uUD3yNGbj6Lz1er20A==', '맛있는공구(인천)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo101', 'i8+4uUD3yNGbj6Lz1er20A==', '몽글마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo102', 'i8+4uUD3yNGbj6Lz1er20A==', '벨라문고리', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo103', 'i8+4uUD3yNGbj6Lz1er20A==', '야채오빠(부천)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo104', 'i8+4uUD3yNGbj6Lz1er20A==', '금손찬', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo105', 'i8+4uUD3yNGbj6Lz1er20A==', '공구방앗간', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo106', 'i8+4uUD3yNGbj6Lz1er20A==', '꿀단지', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo107', 'i8+4uUD3yNGbj6Lz1er20A==', '디자이너푸드', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo108', 'i8+4uUD3yNGbj6Lz1er20A==', '우즐부', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo109', 'i8+4uUD3yNGbj6Lz1er20A==', '예강', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo110', 'i8+4uUD3yNGbj6Lz1er20A==', '희담마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo111', 'i8+4uUD3yNGbj6Lz1er20A==', '다파는농부 김포', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo112', 'i8+4uUD3yNGbj6Lz1er20A==', '보글마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo113', 'i8+4uUD3yNGbj6Lz1er20A==', '지희네', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo114', 'i8+4uUD3yNGbj6Lz1er20A==', '영종십이월', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo115', 'i8+4uUD3yNGbj6Lz1er20A==', '육식주의', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo116', 'i8+4uUD3yNGbj6Lz1er20A==', '바를정', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH004' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo117', 'i8+4uUD3yNGbj6Lz1er20A==', '마켓진주', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo118', 'i8+4uUD3yNGbj6Lz1er20A==', '태양청과', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo119', 'i8+4uUD3yNGbj6Lz1er20A==', '덕만청과', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo120', 'i8+4uUD3yNGbj6Lz1er20A==', '유진과일', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo121', 'i8+4uUD3yNGbj6Lz1er20A==', '달콤공구마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH005' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo122', 'i8+4uUD3yNGbj6Lz1er20A==', '신개념(다산)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo123', 'i8+4uUD3yNGbj6Lz1er20A==', '대장부농수산', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo124', 'i8+4uUD3yNGbj6Lz1er20A==', '맛담', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo125', 'i8+4uUD3yNGbj6Lz1er20A==', '㈜새봄-마켓소풍', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo126', 'i8+4uUD3yNGbj6Lz1er20A==', '문팡', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo127', 'i8+4uUD3yNGbj6Lz1er20A==', '밀담', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo128', 'i8+4uUD3yNGbj6Lz1er20A==', '써니마켓', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo129', 'i8+4uUD3yNGbj6Lz1er20A==', '온드림', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo130', 'i8+4uUD3yNGbj6Lz1er20A==', '케푸디', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH007' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo131', 'i8+4uUD3yNGbj6Lz1er20A==', '달을성 농장', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo132', 'i8+4uUD3yNGbj6Lz1er20A==', '라푸르타', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo133', 'i8+4uUD3yNGbj6Lz1er20A==', '럭키마트(부천)', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo134', 'i8+4uUD3yNGbj6Lz1er20A==', '냉삼상륙작전', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
INSERT INTO user_info (user_id, user_password, user_name, user_type, user_type_name, status, statement_branch, default_wh_objid, dept_code, dept_name, regdate) VALUES ('momo135', 'i8+4uUD3yNGbj6Lz1er20A==', '장보는앤', 'U', '사용자', 'active', 'KIMPO', (SELECT objid FROM momo_warehouses WHERE wh_code='WH006' LIMIT 1), 'DEPT003', '일반구매자', NOW()) ON CONFLICT (user_id) DO UPDATE SET user_name=EXCLUDED.user_name, user_password=EXCLUDED.user_password, user_type='U', user_type_name='사용자', status='active', statement_branch=EXCLUDED.statement_branch, default_wh_objid=EXCLUDED.default_wh_objid, dept_code='DEPT003', dept_name='일반구매자';
|
|
|
|
-- ===== 제조사 메뉴 비활성 =====
|
|
DELETE FROM menu_info WHERE objid = 9000204;
|