Oracle SQL Data Manipulation Language - representative statement

 

DML 언어의 Insert 란 무엇인가? 

Insert is a widely-used command in the Structured Query Language (SQL) and data manipulation language (DML) used by SQL Server and Oracle relational databases.

Insert 란 SQL 와 데이터를 가공하는 시스템에서 널리 사용되는 언어문이다. 
특히 Oracle 서버를 이용해 관련 데이터를 가공하는 데 사용된다. 














What is DML Insert? DML 언어의 Insert 란 무엇인가?   Insert is a widely-used command in the Structured Query Language (SQL) and data manipulation language (DML) used by SQL Server and Oracle relational databases. Insert 란 SQL 와 데이터를 가공하는 시스템에서 널리 사용되는 언어문이다.  특히 Oracle 서버를 이용해 관련 데이터를 가공하는 데 사용된다.

To confirm the inserted data, we can use the other DML languages - select statement to check our data input is well organized. 

here is the mathematical statement; 

Select * from OS
Where OS_OWCORD = '003';

* --> All 

From OS -->  From the table of OS 

Where OS_OWCORD = '003'; --> condition 




Comments