1:你说的应该是scott用户下的emp表吧,我们看下emp表的表结构你就知道保存的是什么信息了。
2:emp表是employee雇员信息表 。
3:empno就是雇员的员工编号, employee number。
4:ename员工姓名, emlployee name。
5:job员工的工作是什么比如推销员,经理等。
6:mgr上级编号。
7:hiredate受雇日期。
8:sal薪金。
9:comm佣金。
10:deptno部门编号。
11:emp是scott用户下的表。查询此表:select * from scott.emp。
12:假如说没有emp表,手动创建emp表。可以从其他有这个表的人那里照结构将表建立起来。
Oracle Database,又名Oracle RDBMS,或简称Oracle。是甲骨文公司的一款关系数据库管理系统。到目前仍在数据库市场上占有主要份额。劳伦斯·埃里森和他的朋友,之前的同事Bob Miner和Ed Oates在1977年建立了软件开发实验室咨询公司(SDL,Software Development Laboratories)。
作为一个通用的数据库系统,它具有完整的数据管理功能;作为一个关系数据库,它是一个完备关系的产品;作为分布式数据库它实现了分布式处理功能。但它的所有知识,只要在一种机型上学习了ORACLE知识,便能在各种类型的机器上使用它。
删除语句是:
delete from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno)commit
避免删错,执行删除 *** 作前先select确认一下:
select * from emp where (deptno,sal) in (select deptno,max(sal) from emp group by deptno)我给你一些数据库常用的导入导出命令吧:该命令在“开始菜单>>运行>>CMD”中执行
一、数据导出(exp.exe)
1、将数据库orcl完全导出,用户名system,密码accp,导出到d:\daochu.dmp文件中
exp system/accp@orcl file=d:\daochu.dmp full=y
2、将数据库orcl中scott用户的对象导出
exp scott/accp@orcl file=d:\daochu.dmp owner=(scott)
3、将数据库orcl中的scott用户的表emp、dept导出
exp scott/accp@orcl file= d:\daochu.dmp tables=(emp,dept)
4、将数据库orcl中的表空间testSpace导出
exp system/accp@orcl file=d:\daochu.dmp tablespaces=(testSpace)
二、数据导入(imp.exe)
1、将d:\daochu.dmp 中的数据导入 orcl数据库中。
imp system/accp@orcl file=d:\daochu.dmp full=y
2、如果导入时,数据表已经存在,将报错,对该表不会进行导入;加上ignore=y即可,表示忽略现有表,在现有表上追加记录。
imp scott/accp@orcl file=d:\daochu.dmp full=y ignore=y
3、将d:\daochu.dmp中的表emp导入
imp scott/accp@orcl file=d:\daochu.dmp tables=(emp)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)