1. 庫的建立
--建立資料庫
create
database dbname(資料庫名);
--建立資料庫,字符集設定為utf-8
create
database base2 character
set utf8;
2. 檢視資料庫--檢視所有的資料庫
show
databases
;--檢視某個庫的建立資訊
show
create
database dbname(資料庫名)
;--檢視當前資料庫
select
database()
;
3. 進入某個資料庫use dbname(資料庫名)
;
4. 修改資料庫alter
database dbname character
set charsetname(字符集名)
5. 刪除資料庫drop
database databasename(資料庫名)
資料庫DDL操作
ddl 1.資料庫操作 檢視所有資料庫 show databases 切換 選擇要操作的 資料庫 use 資料庫名 建立資料庫 create database if not exists mydb1 charset utf8 刪除資料庫 drop database if exists mydb1 修...
mysql資料庫DDL語句
1.資料庫服務啟動命令 net start mysql 2.資料庫登入命令 mysql u username p password 3.資料庫基本操作指令 ddl 資料庫定義語言 1.建立資料庫 create database if not exists database name characte...
DDL 資料庫定義語言
建表 id name age drop talbe if esists student create table student id int primary keyauto increment,name varchar 20 not null,age int not null default 18...