摘要:
create table employee(id number(10) not null, -- 员工工号salary number(10,2) default 0 not null, -- 薪水name varchar2(24) not null -- 姓名);第一题: 表结构说明: 1.创建序列seq_employee,该序列每次取的时候它会自动增加,从1开始计数,不设最大值,并且一直累加,不循环。Create sequence seq_employee start with 1 increment by 1 minvalue 1nomaxvalue nocycle nocache o.. 阅读全文
摘要:
1.把表A从表空间TSP1更改成表空间TSP2的方法解答:alter table A move tablespace TSP22.删除表的列;解答:alert table 表名 drop 列名123.删除表空间的数据文件?解答:用SQLPLUS命令: drop tablespace tablename including contents 就可以把所有相关的数据删除4.如何用ALTER命令把表数据加到缓存表里,清除呢?解答:添加:alert table 表名 cache清除:alert table 表名 nocache5.数据的复制实现办法?解答:数据复制,就是将数据库中的数据拷贝到另外一个或 阅读全文