天涯太远

导航

2020年1月2日 #

用户管理和数据库安全

摘要: A schema is a group of schema objects that includes tables, views and indexes. 表示模式对象 UserAccount.SchemaObject 1 创建/修改/移除用户(Creating,Modifying,and Rem 阅读全文

posted @ 2020-01-02 16:32 天涯太远 阅读(417) 评论(0) 推荐(0)

约束(Constraints)

摘要: 约束是一种防止插入、修改或从列中删除不需要的数据的方法。 Tebiro约束类型 ConstraintDescription Primary Key Characteristics of the Unique Key and NOT NULL constraints. A column set as 阅读全文

posted @ 2020-01-02 14:47 天涯太远 阅读(706) 评论(0) 推荐(0)

创建表

摘要: A Tables Tbiro创建表的语句和Oracle创建表的语句基本一致。 1 Creating Tables CREATE TABLE DEPT ( DEPTNO NUMBER PRIMARY KEY, DEPTNAME VARCHAR(20), PDEPTNO NUMBER ) TABLESP 阅读全文

posted @ 2020-01-02 13:45 天涯太远 阅读(171) 评论(0) 推荐(0)