摘要:
1、如何创建cluster table?SQL> show userUSER is "HR"SQL> create cluster dept_emp_cluster(department_id number(4));Cluster created.SQL> create index idx_dept_emp_cluster on cluster dept_emp_cluster;Index created.SQL> create table dept cluster dept_emp_cluster(department_id) as select 阅读全文
摘要:
1、Perl的4种变量Scalar:$纯变量,标量数组:@Hash:%文件:大写2、Perl变量的组成简单变量以$开头,+字符或者下划线字母,数字,下划线区分大小写 $var $VAR $Var变来那个长度不限$this_is_a_really_long_but_legal_name_that_is_different没有关键字,但是不要和内置变量重复$if可以 $_重复1、整数的表示1212e2(1200) e不分大小写-121_200_0000012 八进制数,值为100x1f 十六进制数,值为31 f不区分大小写#!/usr/bin/perl$int=1_200_000;print &q 阅读全文