Oracle基礎語句教程

2021-10-24 07:37:00 字數 989 閱讀 7799

1.select * from data where student_id = 20180163010;–查詢資料

select distinct * from data; --只展示不重複的資料

2.select id, name,phone_number from data order by 1 desc, 2;–排序用數字

3.select id, name,phone_number from data order by id asc nulls first;–空格的排在前邊

4.truncate table data;–清除表中所有資料

5.select id, name from customers order by upper( name );

select * from test_data order by upper( name );–按字母大小寫來排序

6.select *, count(distinct name) from data_learn group by name;–count()表示數量

7.update dfc_adms_stu a set a.pm_tel = (select b.tel from aaa b where

a.stu_num = b.stunum) where dept_id = 『10454-02』 and a.stu_num in

(select stunum from aaa b where b.tel is not null) and a.pm_tel is null;–更新資料例子

8.update dfc_stu_base a set a.pm_tel = (select b.phone_number from data b where

a.stu_num = b.student_id) where a.stu_num in (select student_id from data );

–將另乙個資料庫的資訊更新到另乙個資料庫中,where語句限定更新的語句必須在dfc_stu_base

Oracle基礎語句

1 連線資料庫 connect uuu ooo connect sys ok as sysdba 2 建立表空間 create tablespace stu 表空間名 datafile e stu.dbf size 100m autoextend on next 5m maxsize 500m 3 ...

oracle基礎語句

資料表空間 tbs user1 data 索引表空間 tbs user1 index 使用者 user 1 表 table t 建立資料表空間 create next 500m maxsize unlimited extent management local uniform size 8m 建立索...

Oracle 基礎語句

傳送門 易百教程 oracle oracle資料庫伺服器由乙個資料庫和至少乙個資料庫例項組成。資料庫是一組儲存資料的檔案,而資料庫例項則是管理資料庫檔案的記憶體結構。此外,資料庫是由後台程序組成。資料庫和例項是緊密相連的,所以我們一般說的oracle資料庫,通常指的就是例項和資料庫。su oracl...