Oracle基本操作

2021-10-05 03:20:07 字數 1933 閱讀 8067

,'小明',18

,'男');

commit

;

update students set age =

20where id=2;

commit

;

delete

from students where id=3;

commit

;

--如果是刪除整個表資料,還可以用:

truncate

table students;

比較 truncat與 delete實現資料刪除?

delete刪除的資料可以 rollback

delete刪除可能產生碎片,並且不釋放空間

truncate是先摧毀表結構,再重構表結構

Oracle基本操作

1.建立表空間 create tablespacetestdatafile c test.dbf size 10m 名字不要為數字 2.建立使用者 create user username identified by password 不要為數字 3.給使用者授權 grant dba to user...

Oracle 基本操作

在這裡詳述 oracle 基本操作。新增使用者 隨著使用者的建立,自動產生與使用者同名的schema create user tester profile default identified by tester default tablespace testdata temporary table...

oracle 基本操作

1 使用者登入 sqlplus 帳號 密碼 2 檢視當前登入使用者 show user 3 檢視所有的使用者 select username from all users 4 建立臨時表空間 create temporary tablespace test temp tempfile d oracl...