본문 바로가기

분류 전체보기

(369)
[WIP]IMM -2 . Production Planning System 1. introduction to be profitable, a firm must organize all these factors to make right goods at the right time at top quality and do so as economically as possible. 2. manufacturing planning and control systme 3.sales and operations planning 4.manufacturing resource planning 5. enterprise resource planning 6. making the production plan
[Completed]IMM -1 . Introduction To Material Management 1. operating enviorment 2. the supply chain concept once processes exist, operation are managed so they produce good most economically. managing the operation means planning for asd controlling the resources used in the process: labor, capital, and material. if the right materials in the right quantities are not available at the right time, the process cannot produce what it should. 1. operating..
[WIP]초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day6 032~040 032 데이터 분석 함수로 순위의 비율 출력하기 (CUME_DIST) SELECT title as '상품명', RANK()OVER(order by stock_recommend desc) as'RANK', DENSE_RANK()OVER(ORDER BY stock_recommend desc) as 'dense_rank', CUME_DIST()OVER(ORDER BY stock_recommend desc) as 'cume_dist' FROM thegifting_personal_matche.v_recommend_disable_stock; 033 데이터 분석 함수로 데이터를 가로로 출력하기 (LISTAGG) 오라클에서만 적용되어 my sql에서 적용되는 쿼리 명령문 찾아볼것 033 COLUMN을 R..
초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day5 024~031 024 + INTERVAL '3' YEAR SELECT product_sku_idx,created_date + interval'3'year FROM thegifting_personal_matche.cart_items_log; 024 NULL값 대신 다른 데이터 출력하기( NVL,NVL2) SELECT product_title,short_desc,NVL(discount_policy_idx,0) FROM thegifting_personal_matche.personal_store_products; SELECT order_idx,ebut_sku_code,order_total_price - cart_discount_price , NVL(cart_discount_price,0) AS'결제금액' FRO..
초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day4 016~023 016 대소문자 변환 함수 배우기(UPPER,LOWER,INTCAP) SELECT idx,UPPER(type),LOWER(code),name FROM thegifting_personal_matche.meta_keys ; 017 문자에서 특정 철자 추출하기(SUBSTR) SELECT SUBSTR('wc-pending',4,10) FROM thegifting_personal_matche.meta_keys WHERE code LIKE '%wc%'; 018 문자열의 길이를 출력하기(LENGTH) SELECT LENGTH(code) FROM thegifting_personal_matche.meta_keys WHERE name LIKE '%주문%'; 019 문자에서 특정 철자의 위치 출력하기(INST..
초보자를 위한 SQL 200제 -한 달에 책 한 권 끝내기- Day3 007~015 007where절 배우기 -1 (숫자 데이터 검색) SELECT order_idx,status,paid_date,ebut_sku_code,order_qty,order_shipping_price FROM thegifting_personal_matche.erp_order_hst where order_shipping_price > 5000; SELECT order_idx,status,paid_date,ebut_sku_code,order_qty,order_shipping_price FROM thegifting_personal_matche.erp_order_hst where order_shipping_price > 5000; 008where절 배우기 -2 (문자와 날짜 검색) SELECT order..
[WIP]ABAP 주요 티코드 공부하면서 내가 주로 접속하는 곳을 업데이트 T-CODE 설명 기능 SE38 ABAP Editor ABAP 소스 코딩 SE11 ABAP Dictionary 데이터베이스 테이블, 데이터 타입, 도메인 등을 조회 생성, 수정, 삭제 SE80 ABAP NAVIGATOR OBLIGATION
ABAP 스터디 21기 _LV1 - GOAL ABAP 스터디 21기 _LV1 통해서 얻고자 하는건 1. 아밥에 대해서 조금 이해하기 2.추후 아밥 공부를 어떻게 할지 계획짜기 3.아밥 공부하는 습관 들이기 ABAP 스터디 21기 _LV1 Study Goal SAP Application Dictionary 구조를 완벽히 이해하고 ABAP Source CODE에 작성한다 SAP Table Transaction을 자유롭게 발생 시킨다 SQL문법 구조를 이해한다