- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
oracle_30天之6
sql语句——DDL and constraints
一.DDL
1. Creating and managing tables
Table: Basic unit of storage; composed of rows and columns
*Tables in the Oracle Database
User Tables: 用户表 scotts or hrs
Are a collection of tables created and maintained by the user.
Contain user information.
Data Dictionary:系统表
Is a collection of tables created and maintained by the Oracle Server.
Contain database information,can see as the table created by
systeam;
##数据字典:oracle本身的数据,管理数据库信息,系统信息
相当于:windows注册表
只能用,不能直接修改。只有在作DDL语句的时候才能由数据库服务器自
己更新数据字典。比如,新定义的表,表的名字等信息,会被存入数据字
典。
##eg:
dba_user,说明在oracle里面有那些用户。
ALL_COL_COMMENTS
USER_COL_COMMENTS
ALL_TAB_COMMENTS
USER_TAB_COMMENTS
*The CREATE TABLE Statement
##First of all :You must have:CREATE TABLE privilege,A storage area.
##在创建表的时候,要有:创建的权限和存储区域,放文件
CREATE TABLE [schema.]table
##所有创建的表在SCHEMA里,默认有SCHEMAS 1:1
(column datatype [DEFAULT expr][, ...]); 最多1000列 用, 分开
You specify:
-Table name
tab_xxxxx ##英文单词,中文:第一个字全拼,第二个以后首字
母;如果与之前的第一第二个相同,也要用全拼。
-Column name, column data type, and column size
##Table names and column names:
Must begin with a letter 字母打头
Must be 1-30 characters long 不超30
Must contain only A-Z, a-z, 0-9, _, $, and #
Must not duplicate the name of another object owned by the same user
Must not be an Oracle server reserved word 不用保留字
v$reserved_words 保留字
##select KEYWORD,RESERVED from v$reserved_words where
reserved=Y;
## help index
## help RESERVED WORDS
-Referencing Another User?ˉs Tables
原创力文档


文档评论(0)