建立資料庫
create
database 資料庫名稱 charset utf8;
create
database 資料庫名稱 charset
='utf8'
;
檢視所有的資料庫
show
databases
;
檢視建立資料庫的語句結構
show
create
database 資料庫名稱;
選擇資料庫
use 資料庫名稱;
檢視當前選擇的資料庫
select
database()
;
刪除資料庫
drop
database 資料庫名稱;
修改資料庫
alter
database 資料庫名稱 charset utf8;
Mysql資料庫相關操作
檢視約束 show indexes from tab name 檢視索引 show index from tab name 檢視資料表的列 show columns from tab name 檢視資料表 show tables 檢視資料庫 show databases 刪除列alter table...
MySQL資料庫操作相關
1 mysql資料庫設定自增序號,刪除表中資料序號錯亂重新排序 alter table tablename drop column id alter table tablename add id mediumint 8 not null primary key auto increment firs...
MySQL資料庫相關操作
mysql是乙個關係型資料庫管理系統,目前屬於oracle。採用sql標準化語言,並且體積小 速度快 成本低和開源的特點,搭配php apache可組成良好的開發環境。create table t user id int primary key auto increament comment 自增主...