在ddl中,建立、刪除、修改使用create、drop、alter關鍵字
資料庫的建立
create database school
刪除資料庫
drop database school
建立表
create table tblclass
( cid int identity(1,1) primary key not null,
cname nvarchar(10) not null,
cdescription nvarchar(100) default('這是乙個熱血沸騰的班級')
)
刪除表
drop table tblclass
增加約束
alter table tblclass
add constraint ck_cname check (len(cname)>2)
修改列型別
alter table tblclass
alter column cdescription nvarchar(1000)
新增列
alter table tblclass
add aa int
刪除列
alter table tblclass
drop column aa
SQL server 常用的資料庫 DDL語言
use 資料庫名 切換到目標資料庫 if exists select from sysdatabases where name 資料庫名 如果括號裡面是檢視有沒有這個資料庫 drop database testdb exist只能返回true或者false 如果存在,就刪掉這個資料庫 在建立資料庫之...
資料庫常用操作DDL和DCL
主要是常用的新增注釋,修改表名稱等簡單操作 新增表注釋 comment on table 表名 is 個人資訊 新增字段注釋 comment on column 表名.列名 is 姓名 alter table tpssprod.cr rule level add attr name varchar2...
資料庫MYSQL的DDL語言
ddl 資料定義語言,主要涉及了庫和標的管理 一 庫的管理 建立 修改 刪除 二 表的管理 建立 修改 刪除 建立 create 修改 alter 刪除 drop 一 庫的管理 1.庫的建立 create database if not exists books 2.庫的修改,更改庫的字符集。alt...