摘要: 1创建函数SQL> create or replace function mgs( 2 man in number,girl in number) 3 return number as 4 sul number; 5 begin 6 sul:=man*girl; 7 return sul; 8 end mgs; 9 /Function created2调用函数select mgs(5,6) from dual;3删除函数 drop function mgs;4创建存储过程create or replace procedure update_product_price(p_product_ 阅读全文
posted @ 2012-04-21 21:14 残阳飞雪 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 1添加列,下面这个例子使用alter table 语句向table1添加一个名为column1的列alter table table1add column1 interger;2修改列 1修改列的长度 alter table table1 modify status varchar2(15); 2修改数字列的精度 alter table modify id number(5); 3修改列的数据类型alter table table1 modify status char(15); 4修改列的默认值 atler table table1 modify column1 default sysdat 阅读全文
posted @ 2012-04-21 17:27 残阳飞雪 阅读(1800) 评论(0) 推荐(0) 编辑
摘要: 1-AVG()函数,如AVG(price+2),参数必须是数字类.2-使用count()函数,参数可以是数字、字符、行数.3-MAX()和MIN()函数4-STDDEV(X)用于计算X的标准差,就是方差的平方根.如select stddev(prcie).5-sum(price)用于计算并返回X 中所有值之和6-variance(X)计算X的方差 阅读全文
posted @ 2012-04-21 11:28 残阳飞雪 阅读(214) 评论(0) 推荐(0) 编辑
摘要: CLOB用于存放大批量的文本数据,所允许的最大数据长度为4G字节。1-建立包含CLOB列的表View Code SQL> create table lob_example1( 2 id number(6) primary key, 3 name varchar2(10), 4 resume clob); Table created2-初始化CLOB列View Code SQL> insert into lob_example1 values(1,'王鸣',empty_clob()); 1 row inserted SQL> insert into lob_ex 阅读全文
posted @ 2012-04-19 22:38 残阳飞雪 阅读(136) 评论(0) 推荐(0) 编辑
摘要: import java.net.URL; import java.sql.*;public classJavaOracle { public JavaOracle() { } public static void main(String[] args){ try { try{ Class.forName("oracle.jdbc.driver.OracleDriver"); } catch(java.lang.ClassNotFoundException e) { System.err.print(e.getMessage()); } String url="jd 阅读全文
posted @ 2012-04-18 20:41 残阳飞雪 阅读(187) 评论(0) 推荐(0) 编辑
摘要: alter user username didentified by password; 阅读全文
posted @ 2012-04-18 20:03 残阳飞雪 阅读(87) 评论(0) 推荐(0) 编辑
摘要: After extractingsqldeveloper-1.5.4.59.40.zipand executingsqldeveloper.exe,I received following error---------------------------Oracle SQL Developer---------------------------Unable to create an instance of the Java Virtual MachineLocated at path:<SQLDEVELOPER>\jdk\jre\bin\client\jvm.dll------- 阅读全文
posted @ 2012-04-18 19:02 残阳飞雪 阅读(2914) 评论(0) 推荐(0) 编辑
摘要: 启动自后:@E:\1020402138\51aspx\0072229810_code\sql_book\SQL\store_schema.sql;注意:里面要改成自己的connect/as sysdba; 阅读全文
posted @ 2012-04-15 21:15 残阳飞雪 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1、修改列类型,比如列为nvarch类型,修改其长度为100:ALTER TABLE tb ALTER COLUMN col nvarchar(100)2、增加一列:ALTER TABLE tb ADD col2 nvarchar(100) null表中存在数据时,新增加的列必须为null或者identity。3、增加约束,设定列col3的缺省值为0:ALTER TABLE tb ADD CONSTRAINT DF_col3 DEFAULT 0 FOR col3 阅读全文
posted @ 2012-04-15 16:40 残阳飞雪 阅读(4201) 评论(0) 推荐(0) 编辑
摘要: altertable表名modify列名varchar(50)删除存储过程: drop procedure procedurename; 阅读全文
posted @ 2012-04-15 16:40 残阳飞雪 阅读(108) 评论(0) 推荐(0) 编辑