Mysql常見命令

建立用戶

create user testUser@'%'  identified by 'TEST';

'%' 能夠過程訪問  mysql

權限管理

TSET.* : TEST 數據庫的全部表sql

grant all on TEST.*  to userTEST@'%';

導入

mysql test</root/dump.sql

備份

導出數據表結構 及數據 數據庫

mysqldump  -u username -p  test>/usr/test.sql

建立索引ide

alter table uses  add index user_sex_index(sex)  comment 'uses 表中的 sex 索引';

 

查看某個表的建立 Sql

show create table offices

 

修改表 列的內容

alter table offices  modify  office_name varchar(30) not null  comment '科室名稱';

 

修改數據庫中數據的字符集

ALTER TABLE user_froms  CONVERT TO
CHARACTER SET utf8;

 

修改用戶表的默認字條集

ALTER TABLE user_froms DEFAULT CHARACTER SET utf8;
相關文章
相關標籤/搜索