• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Oracle DDL,DML,DCL,TCL 基础概念

mysql 搞代码 4年前 (2022-01-09) 21次浏览 已收录 0个评论

DDL Data Definition Language (DDL) statements are used to define the database structure or schema. Some examples:

Oracle DDL,DML,DCL,TCL 基础概念

[日期:2010-03-03]来源:Linux社区 作者:Linux编辑[字体:]

  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 – delete objects from the database

  TRUNCATE – remove all records from 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 from the a database

  INSERT – insert data into a table

  UPDATE – updates本文来源gao.dai.ma.com搞@代*码#网 existing data within a table

  DELETE – deletes all records from a table, the space for the records remain

  MERGE – UPSERT operation (insert or update)

  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.

  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


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Oracle DDL,DML,DCL,TCL 基础概念
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址