博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DLL,DML,DCL,TCL in Oracle
阅读量:6524 次
发布时间:2019-06-24

本文共 1479 字,大约阅读时间需要 4 分钟。

DLL,DML,DCL,TCL 
in Oracle
 DDL 
Data Definition Language (DDL) statements are used to define the database structure or schema. Some examples: 
CREATE - to create objects 
in the database 
ALTER - alters the structure of the database 
DROP - objects the database 
TRUNCATE - remove all records a table, including all spaces allocated 
for the records are removed 
COMMENT - add comments to the data dictionary 
RENAME - rename an 
object 
DML 
Data Manipulation Language (DML) statements are used 
for managing data within schema objects. Some examples: 
SELECT - retrieve data the a database 
INSERT - data into a table 
UPDATE - s existing data within a table 
DELETE - s all records a table, the space 
for the records remain 
MERGE - UPSERT operation ( or ) 
CALL - call a PL/SQL or Java subprogram 
EXPLAIN PLAN - explain access path to data 
LOCK TABLE - control concurrency 
DCL 
Data Control Language (DCL) statements. 
Some examples: 
GRANT - gives user
""s access privileges to database 
REVOKE - withdraw access privileges given with the GRANT command 
TCL 
Transaction Control (TCL) statements are used to manage the changes made by DML statements. It allows statements to be grouped together into logical transactions. 
Some examples: 
COMMIT - save work done 
SAVEPOINT - identify a point 
in a transaction to which you can later roll back 
ROLLBACK - restore database to original since the last COMMIT 
SET TRANSACTION - Change transaction options like isolation level and what rollback segment to use

转载地址:http://yznbo.baihongyu.com/

你可能感兴趣的文章
轻松实现localStorage本地存储和本地数组存储
查看>>
mongodb group
查看>>
python+selenium自动化测试(二)
查看>>
(笔记 - 纯手敲)Spring的IOC和AOP 含GIT地址
查看>>
7-设计模式介绍
查看>>
让运维更高效:关于ECS系统事件
查看>>
J2EE分布式框架--单点登录集成方案
查看>>
跨域传递参数
查看>>
android 4.2的新特性layoutRtl,让布局自动从右往左显示
查看>>
iOS tableView 下拉列表的设计
查看>>
sharepoint 2010 属性编辑工具 SPCamlEditor 1.5.1
查看>>
JAVA学习笔记--4.多线程编程 part3.JAVA多线程的常见概念和基本类库
查看>>
linux下配置网络环境
查看>>
java Windows7 下环境变量设置
查看>>
NBU异构还原Oracle完整备份的一些总结
查看>>
freeBSD安装详细讲解
查看>>
WSFC2016 VM弹性与存储容错
查看>>
文档管理,文本编辑控件TX Text Control .NET for WPF
查看>>
复习 Python 匿名函数 内建函数
查看>>
Security Identifiers | Win SRV2016 SID Change 修改
查看>>