学习SQL需要了解的一些简单的命令

SQL的插入和删除、创建视图

--分页
select t.*,t.rowid,rownum rn from emp t;

--创建sal视图
create or replace view emp_sal_view(员工姓名,员工编码,员工工资) as select empname,empno,sal from emp;

--插入
insert into emp values(1111,'zxx','CLEER','7839','07-1月-1967','4000',null,10);

--删除
delete from 表名 where条件

在scott模式下创建person(人物)表

personid,pname,birthday,edulever,intro
–primary key=not null+unique

create table person(
personid number(4),
pname varchar2(16)not null,
brithday date,
edulever varchar2(16),
intro varchar2(80),
constraint pk_person1 primary key (personid),
constraint uk_pname unique(pname)
);

**

修改普通用户密码**


修改 alter user 用户名 identified by 密码;
解锁 alter user 用户名 account unlock;

“`

你可能感兴趣的:(Oracle数据库)