一、建立自定義的資料庫
語法如下:
create
database[if
notexists
][[default
]character
set《編碼格式》][
[default
]collate
《排序,分組,比較》
]
建庫語句(建立乙個名為demo的資料庫,編碼為utf-8):
create
database
`demo`
default
character
set utf8;
二、訪問與顯示資料庫/*訪問資料庫 語法*/
use<
database
>
use demo
/*顯示資料庫*/
show
databases
三、修改資料庫 管理MySQL資料庫和表
顯示資料庫 show databases 選擇要使用的資料庫 在使用指定資料庫之前,必須通過使用use語句告訴mysql要使用哪個資料庫。use database name 刪除資料庫 drop database語句 drop database if exists database name 在本教...
MySQL資料庫和表的管理
建立資料庫並指定字符集,mysql強烈建議utf8mb4 create database if not exists 資料庫名 character set 字符集 例子 create database if not exists db character set utf8mb4 注意 databas...
mysql資料庫表管理
複製資料庫 相同mysql伺服器 create table testbackup select from test 相同mysql伺服器,取源表中的某些字段 create table testbackup select field1,field2 from test 不同mysql伺服器 mysql...