MySQL修改刪除 選擇資料庫

2021-10-04 15:43:52 字數 643 閱讀 5465

alter database [資料庫名]

語法說明如下:

alter database 用於更改資料庫的全域性特性。

使用 alter database 需要獲得資料庫 alter 許可權。

資料庫名稱可以忽略,此時語句對應於預設資料庫。

character set 子句用於更改預設的資料庫字符集。

刪除資料庫

drop database [

if exists]

資料庫

mysql> create database test_db_del;

選擇資料庫

use 《資料庫名》;

mysql資料庫建立 檢視 修改 刪除

一 建立資料庫 使用預設字符集 不指定字符集時,mysql使用默字符集,從mysql8.0開始,預設字符集改為utf8mb4,建立資料庫的命令為create database 資料庫名稱。建立資料庫testdb,使用預設字符集 create database testdb 使用指定的字符集建立資料庫...

mysql資料庫建立 檢視 修改 刪除

一 建立資料庫 使用預設字符集 不指定字符集時,mysql使用默字符集,從mysql8.0開始,預設字符集改為utf8mb4,建立資料庫的命令為create database 資料庫名稱。建立資料庫testdb,使用預設字符集 create database testdb 使用指定的字符集建立資料庫...

修改,刪除資料庫表

修改表名 舊的表名tehels 新的表名teacher alter table tehels rename as teacher add 欄位名 列屬性 增加表的字段 alter table 表名 alter table teacher add id int 10 修改表的字段 重新命名,修改約束 ...