전체 글

전체 글

    오라클 group_concat

    mysql의 group_concat과 같은 기능을 Oracle에서도 사용할 수 있다. 바로 WM_CONCAT이다. 세로로 출력되는 쿼리 결과를 ","로 구분하여 한 row로 출력해준다. 실행속도는 Native Function과 비슷한 정도로 대량의 data에 적용해도 훌륭한 처리속도를 보여준다. select WM_CONCAT(user_name) from member; //→ 이름1,이름2,이름3,이름4

    node.js를 이용하여 IOS 푸시 보내기

    PUSH란? 서버에서 정보를 클라이언트로 강제 전달하는 서비스. Apple의 APNS(Apple Push Notification Service) Google의 GCM(Google Cloud Messaging) installation $ npm install apns -sAPI /* notification.payload : Push payload (json타입) notification.badge : 뱃지 숫자 번호 notification.sound : Push 알림음 notification.alert : Push 메시지 텍스트 notification.device : Push 받을 대상 notification.encoding : 메시지 인코딩 타입 (기본 : UTF-8) */const apns = requi..