mysql資料庫(零)ubuntu安裝mysql以及運維相關
注意,安裝之後的預設資料庫有4個,可以通過show databases;
檢視;
mysql不支援直接更改資料庫名,可以先建立新庫,再把舊庫的表依次移過去
create
database new_db_name;
//建立新庫
rename
table db_name.table1 to new_db_name.table1,
//通過改名來移動表
db_name.table2 to new_db_name.table2;
//通過改名來移動表
drop
database db_name;
//刪掉原來的表
所有的資料庫名,表名,表字段都是區分大小寫的。但是sql語句本身不區分大小寫; 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 自增主...