摘要:
1、select avg(sal) , max(sal) ,deptno from emp group by deptno;2、 select avg(sal) , max(sal) ,deptno,job from emp group by deptno,job;3、 select avg(sal) ,deptno from emp group by deptno having avg(sal)<2000; 阅读全文
摘要:
查询空值的话 用 ….is null;设置保存点 savapoint 回滚: rollbacktruncate table student;删除表中的所有记录,表结构还在,不写日志,无法找回删除的记录,速度快。让工具显示操作的时间: set timing on ;疯狂的添加已有的数据:insert into 表名(字段名) select * from 表名去除重复: select distinct deptno ,job from emp;Select 语句大小写不区分,但是传进去的值的大小写是区分的。 阅读全文
摘要:
查看表的信息, desc 表名 阅读全文
摘要:
创建某个用户: create user xiaoming identified by abc(password);权限分为:1、系统权限:用户对数据库的相关权限。 2、对象权限:用户对其他用户的数据对象操作的权限。对一个用户授权需要system或sys用户来对其他用户授权。一般授予用户某个角色。 常见的角色有:connect 、 dba 、resource。若有小明用户,格式:grant connect to xiaoming;若小明想要查询scott的emp表,则:Grant select on emp to xiaoming; select * from scott.emp;收回权限:re 阅读全文