摘要: oracle的联接分如下几种:内联接(inner join)。外联接(outer join):全联接(full join)、左联接(left join)、右联接(right join)。交叉联接(cross join)。外联接与内联接不一样,外连接返回到查询结果中的不仅包含符合条件的行,还包括左表(左外连接),右表(右外连接)或者两个连接表(全外连接)中的所有不符合条件的数据行。0.内联接 ([inner] join)内联结就是将左表的所有数据分别于右表的每条数据进行连接组合,返回的结果为同时满足左右表联接条件的数据。SQL语句如下:select * from mt_pb_org o [inn 阅读全文
posted @ 2011-08-13 22:41 生活不是用来挥霍的 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 在之前的blog 里介绍了BBED 工具的语法部分。 参考: Oracle BBED 工具 说明 http://blog.csdn.net/tianlesoftware/article/details/5006580在这篇主要看一下BBED 工具的几个使用示例。 Althoughbbed can modify data in the data files of an open Oracle database, it isadvisable to shut down the database before making any changes. This avoids thecheckpoint 阅读全文
posted @ 2011-08-13 16:58 生活不是用来挥霍的 阅读(390) 评论(0) 推荐(0) 编辑