- 浏览: 12581 次
- 性别:
- 来自: 湖南
最新评论
文章列表
--oracle 复习体系三
--显示当前登录用户show user
--查询当前方案下的所有表select * from tab
--断开数据库连接disconnect
--tablecreate table teacher (int number(3,2),username varchar2(50));
--alter table
--添加字段alter table teacher add (password varchar(20));
...
--转换大写connect scott/tiger
select upper(ename) from emp;
--小写
select lower(ename from emp;
--计算长度select * from emp where length(ename) =5
--substr(context,begin,length)select substr(ename,1,2) from emp;
--查出所有的名字首字母大写,后面的小写--1.首字母大写select upper(substr(ename,1,1)) from emp;--2.后面的小写select lower(s ...
--oracle复习体系一
--使用系统dba身份登录connect system/manager;
--创建用户create user username identified by passwords
--grant authority --systemAuthoritygrant connect,resource,create session to username --if you hava the authority 传递下去,也就是说你想username 这个用户还能有把上面那些权限继续赋予给别人的话在后面加上这个参数grant connect to username with ...