sql操作一些命令總結

2021-06-22 17:12:45 字數 754 閱讀 4182

sql增加、刪除、更改表中的欄位名:

1. 向表中新增新的字段

alter table table_name add column_name varchar2(20) not null

2. 刪除表中的乙個字段

delete table table_name column column_name

3. 修改表中的乙個欄位名

alter table table_name rename column oldname to newname

4. 新增主鍵約束

alter table 表名

add constraint 約束名 primary key (列名)

5. 新增唯一約束

alter table 表名

add constraint 約束名 unique (列名)

6. 新增預設約束

alter table 表名

add constraint 約束名 default(內容) for 列名

7. 新增check約束

alter table 表名

add constraint 約束名 check(內容)

8. 新增外來鍵約束

alter table 表名

add constraint 約束名 foreign key(列名) references 另一表名(列名)

9. 刪除約束

alter table 表名

drop constraint 約束名

Linux一些命令總結

linux下檔案的複製 移動與刪除 檢視centos 版本 cat etc redhat release 1,複製貼上檔案 cp 選項 原始檔或目錄 目標檔案或目錄 2,剪下貼上檔案 mv 選項 原始檔或目錄 目標檔案或目錄 3,刪除檔案 rm 檔案 慎用 rm rf linux下檔案的複製 移動與...

一些基本的SQL命令

顯示資料庫或表 show databases use database name show tables 更改表名 alter table table name rename new t 新增列 alter table table name add column c n column attribu...

oracle的一些SQL命令

第四章 1 邏輯備份 1 必備引數 exp system abc123 file d b.dmp 該命令並未指定登陸到哪個資料庫例項,因此,將使用系統環境變數 oracle sid 所指定的資料庫例項。2 owner 引數 exp system abc123 owner test,oracle fi...