DDL 運算元據庫

2021-08-08 23:12:45 字數 737 閱讀 1877

-- ddl(*)(data definition language):資料定義語言,用來定義資料庫物件:庫、表、列等;

-- 運算元據庫

-- 刪除資料庫

drop database mydatabase;

-- 建立資料庫

create database mydatabase;

create database mydatabase1 character set gbk;

create database mydatabase2 character set gbk collate gbk_chinese_ci;

-- 檢視所有資料庫

show databases;

show databases like 'mydatabase';

show databases like '%my%';

-- 檢視資料庫定義資訊

show create database mydatabase;

-- 資料庫的修改(只可以修改字符集但是不建議修改)

alter database mydatabase charset utf8;

-- 檢視當前使用資料庫

select database();

-- 切換資料庫

use mydatabase;

-- 檢視mysql資料庫支援的儲存引擎型別

show engines ;

DDL 運算元據庫 表

1 c create 建立 建立資料庫 create database 資料庫名稱 建立資料庫,判斷不存在,再建立 create database if not exists 資料庫名稱 建立資料庫,並指定字符集 create database 資料庫名稱 character set 字符集名 2 ...

(二)DDL運算元據庫

3.3.1.1建立資料庫 1.直接建立資料庫 create database 資料庫名 2.判斷是否存在並建立資料庫 create database if not exists 資料庫名 3.建立資料庫並指定字符集 編碼表 create database 資料庫名 character set 字符集...

MySQL之DDL運算元據庫

ddl data definition language 翻譯過來叫 資料庫定義語言,用於在資料庫定義建立或刪除資料庫物件等操作,例如 create 建立 drop 刪除 alter 修改 等語句。1 建立資料庫和檢視資料庫 建立資料庫語法 create database 資料庫名 檢視使用者所有資...