摘要: (1).PL/SQL对大小写不是敏感的。(2).字符类型: CHAR:最大程度32767。(3).快格式: BEGIN DECLARE BEGIN EXCEPTION END END 注:要是用了第一个BENGIN就一定要用第二个,反之亦然。(4)注释方法: 单行--This is a one-line comment 多行/*This is is a on... 阅读全文
posted @ 2008-12-24 14:59 chunchill 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 1.||连接符2.集合操作:union与union all区别;intersect返回两个表中共有的行;minus返回的记录是存在于第一个表中但是不存在于第二个表中的记录。in操作:select * from friends where state in ('ca','co','la');3.between:select * from price where wholesale between 0... 阅读全文
posted @ 2008-12-24 09:48 chunchill 阅读(256) 评论(0) 推荐(0) 编辑