transaction 3

Hyperledger Composer Logic(Transaction 수행) Ver. 0.0.2

Logic(Transaction 수행 작업) 설정 작성일자 2019.02.27Ver 0.0.2/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on..

Hyperledger Composer Logic(Transaction 수행) Ver. 0.0.1

Logic(Transaction 수행 작업) 설정 작성일자 2019.02.22Ver 0.0.1/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on..

[SQL] DB 스터디 - 07

집합 연산자, 데이터 조작 명령문(DML) 1. 집합 연산자- UNION/UNION ALL-> UNION : 두 테이블을 합칠 때 중복되는 부분은 생략하여 합쳐서 출력-> UNION ALL : 위 SELECT문을 출력 후 아래 SELECT문을 출력- INTERSECT-> 두 테이블 간의 교집합을 출력- MINUS-> A MINUS B 라고 되어 있으면 A - B라는 차집합의 결과를 출력- 앞 SELECT문의 결과에 합/차 집합을 만들 수 있음- UNION ALL을 제외한 나머지 연산자는 검색이 될 때 중복이 되는 행을 제거하여 출력- 중복되는 값을 제거하기 위해서 내부적으로 정렬을 시킴-> 기본적으로 SORT가 이루어 지면 성능의 문제를 일으킬 수 있음-> 잘 사용하지 않음- 보통 JOIN과 Subque..