首页 > 代码库 > oracle sql使用技巧汇总
oracle sql使用技巧汇总
1、删除一个表的重复数据 所用的table_name一样
DELETE
FROM table_name a
WHERE rowid > ( SELECT min(rowid)
FROM table_name b
WHERE b.id = a.id and b.name=a.name);
2、导出一个用户的所有信息
exp scott/tiger@orcl file=d:/scott.dmp
3、导入一个用户的所有信息imp scott/tiger@orcl file=d:/scott.dmp full=y; --or
imp scott/tiger@orcl file=d:/scott.dmp fromuser=scott touser=scott
4、导出一个用户的某几张表,而不是全部
exp scott/tiger@orcl file=d:/scott.dmp tables=(emp,dept)
5、导入一个用户的某几张表,而不是全部
imp scott/tiger@orcl file=d:/scott.dmp tables=(emp,dept)
6、为某个用户赋予dba权限
grant dba to scott;
7、收回某个用户的权限
revoke dba from scott;
8、删除表空间
alter tablespace_name jxfda offline;
drop tablespace tablespace_name including contents and datafiles;
9、删除用户(级联)
drop user user_name cascade;
10、获取某个子字符串
获取t.ename=‘fhg1‘,get ‘hg‘
select substr(t.ename,1,2) from emp t;
11、数据批量更新或插入(merge)
MERGE INTO table_name p -- 待修改表
USING table_other o --所依赖的表(如果是多个表,建立视图View 如(select ...)别名)
ON (p.product_id = np.product_id)
WHEN MATCHED THEN
UPDATE
SET p.product_name = np.product_name, p.category = np.category where ...;
WHEN NOT MATCHED THEN
insert values(...) where ....
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。