Oracle指令大全.doc

  1. 1、本文档共72页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Oracle指令大全

--sql structured query language --DML--Data Manipulation Language--数据操作语言 query information (SELECT), add new rows (INSERT), modify existing rows (UPDATE), delete existing rows (DELETE), perform a conditional update or insert operation (MERGE), see an execution plan of SQL (EXPLAIN PLAN), and lock a table to restrict access (LOCK TABLE). --DDL--Data Definition Language--数据定义语言 create, modify,drop, or rename objects (CREATE,ALTER,DROP,RENAME), remove all rows from a database object without dropping the structure (TRUNCATE), manage access privileges (GRANT,REVOKE), audit database use (AUDIT,NOAUDIT) and add a description about an object to the dictionary (COMMENT). --Transaction Control事务控制语句 save the changes(COMMIT) or discard the changes (ROLLBACK) made by DML statements. Also included in the transaction-control statements are statements to set a point or marker in the transaction for possible rollback (SAVEPOINT) and to define the properties for the transaction (SET TRANSACTION). Used to manage the properties of the database. There isonly one statement in this category (ALTER SYSTEM). --DCL--Data Control Language--与开发关系不是很密切,用于权限的分配与回收 grant,revoke,data control --Session Control control the session properties (ALTER SESSION) and to enable/disable roles (SET ROLE). --System Control select的用法 --每个员工的所有信息 select * from emp --每个人的部门编号,姓名,薪水 select deptno,ename,sal from emp; --每个人的年薪 select ename,sal*12 from emp; --计算2*3的值 select 2*3 from emp; --计算2*3的值(dual) select 2*3 from dual; select * from dual; --得到当前时间 select sysdate from dual --可以给列起别名,比如求每个人的年薪 select ename,sal*12 salperyear from emp; --如果别名中有空格,需要用双引号 select ename,sal*12 sal per year from emp; --如果没有内容,则为空 select comm from emp; --当空字段参与计算,则结果是null --例如:计算每个人的全年的收入包括月薪和年终奖 select ename,sal*12+comm from emp; --可以将多个字符串拼在一起。比如:求每个人的薪水,格式为smith-sal-123 select ename||-sal-||sal from emp; --如果字符串中有单引号,需要用另外一个单引号转义,比如:这样一个字符串: hes friend select ename||s sal

文档评论(0)

xcs88858 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8130065136000003

1亿VIP精品文档

相关文档