摘要:
01、DDL 数据定义语言 create alter drop truncate 02、DML 数据操作语言 insert delete update select 03、TCL 事务控制语言 commit rollback 04、DCL 数据控制语言 rovoke grant A(Atomicit 阅读全文
摘要:
create table DEPT ( deptno NUMBER(2) not null, dname VARCHAR2(20), loc VARCHAR2(13) ); alter table DEPT add constraint PK_DEPT primary key (DEPTNO); c 阅读全文