반응형
An implicit query is a component of a DML statement that retrieves data without using a subquery.
An UPDATE, DELETE, or MERGE statement that does not explicitly include a SELECT statement uses
an implicit query to retrieve rows to be modified. For example, the following statement includes
an implicit query for the Baer record:
UPDATE employees
SET salary = salary*1.1
WHERE last_name = 'Baer';
The only DML statement that does not necessarily include a query component is an INSERT statement
with a VALUES clause. For example, an INSERT INTO TABLE mytable VALUES (1) statement does not retrieve
rows before inserting a row.
출처 : http://download.oracle.com/docs/cd/E11882_01/server.112/e16508/sqllangu.htm#CNCPT88907
반응형
'DB > ORACLE' 카테고리의 다른 글
sql loader를 이용한 데이터 적재방법(문법, 명령어) (0) | 2023.08.01 |
---|---|
MERGE 문 구문 (0) | 2014.07.23 |
다운타임의 원인과 해결책들 (0) | 2014.07.02 |
파이썬 설치 및 오라클 접속 예제 (0) | 2014.06.30 |
[펌]물리모델링시 Width가 없는 Number형을 쓰지 말아야 할 이유 (0) | 2014.06.24 |