上一页 1 2 3 4 5 6 7 8 ··· 11 下一页

2019年3月26日

oracle外部表

摘要: 关于外部表的描述 正确描述 the create table as select statement can be used to upload data into a normal table in the database from an external table 外部表表现得就像一般表,可 阅读全文

posted @ 2019-03-26 11:00 Digital_life 阅读(215) 评论(0) 推荐(0) 编辑

oracle USING 用法

摘要: 提问 using(xx)中可以接多个列吗? using(xx)中的列可以接表名或别名吗? 在使用using的语句中,select 可以使用吗? 如果表有别名t,select t. from table1 t , table2 using(xx),t. 可以使用吗? left join, right 阅读全文

posted @ 2019-03-26 08:02 Digital_life 阅读(10247) 评论(0) 推荐(0) 编辑

2019年3月25日

oracle集合操作

摘要: 概述 union , intersect , minus 示意图 union 会排序(第一列的结果进行升序排序,下同)、去重 union all 不排序、不去重 intersect 排序、去重 minus 排序、去重 说明 1. 集合操作的的对象,类型、列数必须匹配; 2. order by 只能放 阅读全文

posted @ 2019-03-25 14:30 Digital_life 阅读(394) 评论(0) 推荐(0) 编辑

2019年3月24日

oracle FLASHBACK TABLE

摘要: 闪回表 sql 开启行迁移 ALTER TABLE employees_test ENABLE ROW MOVEMENT; UPDATE employees_test SET salary = salary 1.1 WHERE salary 阅读全文

posted @ 2019-03-24 17:06 Digital_life 阅读(396) 评论(0) 推荐(0) 编辑

oracle order by 排序

摘要: Syntax 知识点 后面可以接列号(数字)、列名、别名、表达式、函数、分组函数 对空值的处理, 空值在前, 空值在后; 子句中可以不含 中的列; 当使用 或`group by order by` 不能使用select之外的列; 只能放最后,不能放集合操作的中间; 集合操作后,不接 时按第一列进行升 阅读全文

posted @ 2019-03-24 09:25 Digital_life 阅读(7172) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 11 下一页

导航