11 2008 档案

摘要:貌似ORACLE中没有 UPDATE 表 SET 字段=表2.字段 FROM 表2 这个语法,SQL2000里这句是正确的; ORACLE中实现相同的功能用以下代码: CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->UPDATE... 阅读全文
posted @ 2008-11-21 15:21 李彪 阅读(921) 评论(0) 推荐(0)
摘要:转载:http://topic.csdn.net/u/20080306/17/F37A1818-3968-49B4-8F79-E5564486D63E.html 几个关于正则表达式的网站: http://regexlib.com 这个站点上有好多现成可用的正则表达式,比如:符合RFC规范的 E-mail 地址和 URL,以及日期等等, 有些是研究RFC的专家写的。 这个站点比较好,有很多东西可以直... 阅读全文
posted @ 2008-11-11 12:13 李彪 阅读(140) 评论(0) 推荐(0)
摘要:CodeCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->type cursorType is ref cursor;然后:declare cur_temp cursortype; c_temp table_a%rowtype;begin ... 阅读全文
posted @ 2008-11-10 18:16 李彪 阅读(959) 评论(0) 推荐(0)
摘要:学习内容: 1、select from 多个表,使用等连接或非等连接2、使用外连接outer join3、使用自连接 待续…… 阅读全文
posted @ 2008-11-10 18:05 李彪 阅读(493) 评论(0) 推荐(0)
摘要:学习内容: 1、掌握各种在pl/sql中可用的函数 2、使用这些函数的基本概念 3、select语句中使用函数 4、使用转换函数 一、function的作用: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 进行数据计算... 阅读全文
posted @ 2008-11-08 15:09 李彪 阅读(773) 评论(0) 推荐(0)
摘要:一 pl/sql 基本查询与排序 学习内容: 1、写select语句进行数据库查询 2、进行数学运算 3、处理空值 4、使用别名aliases 5、连接列 6、在sql plus中编辑缓冲,修改sql scripts 7、order by进行排序输出。 8、使用where 字段。 阅读全文
posted @ 2008-11-08 13:15 李彪 阅读(962) 评论(0) 推荐(0)
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->String s1 = new String("s1") ;String s2 = new String("s1") ;上面创建了几个String对象?答案:3个 ,编译期Constant Pool... 阅读全文
posted @ 2008-11-08 10:23 李彪 阅读(198) 评论(0) 推荐(0)