mysql 常用命令

创建用户

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

'%' 可以过程访问  

权限管理

TSET.* : TEST 数据库的所有表

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


导入

mysq test</root/dump.sql


备份

mysqldump test>/usr/test.sql

创建索引

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


你可能感兴趣的:(mysql,常用命令)