数据库语言分类DDL、DCL、DML详解
dml(data manipulation language):
它们是select、update、insert、delete,就象它的名字一样,这4条命令是用来对数据库里的数据进行操作的语言
ddl(data definition language):
ddl比dml要多,主要的命令有create、alter、drop等,ddl主要是用在定义或改变表(table)的结构,数据类型,表之间的链接和约束等初始化工作上,他们大多在建立表时使用
dcl(data control language):
是数据库控制功能。是用来设置或更改数据库用户或角色权限的语句,包括(grant,deny,revoke等)语句。在默认状态下,只有sysadmin,dbcreator,db_owner或db_securityadmin等人员才有权力执行dcl
详细解释:
一、ddl is data definition language statements. some examples:数据定义语言,用于定义和管理 sql 数据库中的所有对象的语言
create - to create objects in the database 创建 alter - alters the structure of the database 修改 drop - delete objects from the database 删除 truncate - remove all records from a table, including all spaces allocated for the records are removed
truncate table [table name]。
下面是对truncate语句在mssqlserver2000中用法和原理的说明:
truncate table 表名 速度快,而且效率高,因为:
truncate table 在功能上与不带 where 子句的 delete 语句相同:二者均删除表中的全部行。但 truncate table 比 delete 速度快,且使用的系统和事务日志资源少。
delete 语句每次删除一行,并在事务日志中为所删除的每行记录一项。truncate table 通过释放存储表数据所用的数据页来删除数据,并且只在事务日志中记录页的释放。
truncate table 删除表中的所有行,但表结构及其列、约束、索引等保持不变。新行标识所用的计数值重置为该列的种子。如果想保留标识计数值,请改用 delete。如果要删除表定义及其数据,请使用 drop table 语句。
对于由 foreign key 约束引用的表,不能使用 truncate table,而应使用不带 where 子句的 delete 语句。由于 truncate table 不记录在日志中,所以它不能激活触发器。
truncate table 不能用于参与了索引视图的表。
comment - add comments to the data dictionary 注释 grant - gives user's access privileges to database 授权 revoke - withdraw access privileges given with the grant command 收回已经授予的权限
二、dml is data manipulation language statements. some examples:数据操作语言,sql中处理数据等操作统称为数据操纵语言
select - retrieve data from the a database 查询 insert - insert data into a table 添加 update - updates existing data within a table 更新 delete - deletes all records from a table, the space for the records remain 删除 call - call a pl/sql or java subprogram explain plan - explain access path to data oracle rdbms执行每一条sql语句,都必须经过oracle优化器的评估。所以,了解优化器是如何选择(搜索)路径以及索引是如何被使用的,对优化sql语句有很大的帮助。explain可以用来迅速方便地查出对于给定sql语句中的查询数据是如何得到的即搜索路径(我们通常称为access path)。从而使我们选择最优的查询方式达到最大的优化效果。 lock table - control concurrency 锁,用于控制并发
三、dcl is data control language statements. 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 what rollback segment to use 设置当前事务的特性,它对后面的事务没有影响.
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: 建立在Tablestore的Wifi设备监管系统架构实现
下一篇: C#汉字转拼音实例(支持多音字)