摘要:
set serveroutput on;--打开服务器输出 --declare 声明变量;“:=”是赋值符号 declare v_width integer; v_height integer :=2; v_area integer := 6; v_name store.products.name% 阅读全文
摘要:
create flashback archive test_archive tablespace exmple cuota 10 M retention 1 day;--创建闪回归档,最大存储10M数据,保存1天 alter table user.tablename flashback archiv 阅读全文
摘要:
select * from user_views;--查询所有视图 阅读全文
摘要:
create [unique] index index_name on table_name(column_name[,columnname2...]) tablespace tab_space;--创建索引 select * from all_indexs;--获取所有索引信息 阅读全文
摘要:
create sequesce seq_name [start with start_num][increment by increment_num][maxvalue maxnum]--创建序列 select * from all_sequences;--读取所有序列 阅读全文