1. 程式人生 > 資料庫 >02.oracle常用命令

02.oracle常用命令

02.oracle常用命令

切換使用者:

conn scott/tiger

展示當前使用者:

show user

修改當前使用者的密碼:

passw

查詢所有的表:

select * from tab;

格式化資料:

set pagesize 50;
set linesize 200;

切換管理員賬戶:

conn sys/root@orcl as sysdba;

檢視某個歸屬某個人的表:

select * from scott.emp;(select *  from user.table;)

解鎖使用者:

alter user scott account unlock|lock;

給表添加註釋:

comment on table emp is '僱員表';

給表中的列添加註釋:

comment on column emp.ename is '僱員名稱';

查詢語句

-- 查詢語句
select [distinct] [*,colum alias,...] from table alias where 條件表示式
-- 例子
-- 查詢員工表中部門編號設計
select EMPNO,ENAME,JOB from emp where DEPTNO = 10;
-- distinct 去重查詢
select distinct DEPTNO from emp;
-- 查詢過程中可以個列新增別名
select e.EMPNO 僱員編號,e.ENAME as 僱員名稱,e.JOB 僱員工作 from EMP e where e.DEPTNO = 10;
--查詢所有的欄位可以使用*;但是在專案中不要使用
select * from EMP;