Oracle資料庫DDL操作

2021-09-12 07:30:47 字數 375 閱讀 2968

資料庫給表加主鍵:

alter table 表名 add constraint 主鍵名 primary key(列名);
如果表中已有主鍵相同的資料,再啟用時會報錯,解決方法為:

禁用/啟用主鍵:

alter table 表名 disable/enable primary key;
刪除約束:

alter table 表名 drop constraint 約束名;
改約束(主鍵)名:

alter table 表名 rename constraint 原約束名 to 新約束名;

資料庫DDL操作

ddl 1.資料庫操作 檢視所有資料庫 show databases 切換 選擇要操作的 資料庫 use 資料庫名 建立資料庫 create database if not exists mydb1 charset utf8 刪除資料庫 drop database if exists mydb1 修...

Oracle資料庫 DDL 資料定義語言

1.資料定義語言 用於定義資料庫的結構,比如建立 修改或刪除資料庫物件 包括 create table 建立資料庫表 建立表的命名規則 2.以字母開頭 在 1 30 個字元之間 只能包含 a z,a z,0 9,和 不能和使用者定義的其他物件重名 不能是oracle 的保留字 3.建立表的資料型別 ...

資料庫 DDL 和 DML操作

目錄 一 ddl操作 1.運算元據庫 2.運算元據庫表 二 dml操作 1.insert 2.delete 3.update create database if not exists dbname 建立資料庫 drop databasae if exists dbname 銷毀資料庫 2.1 新增...