1.链接数据库: mysql -h localhsot -u root -p 2.显示MySql中的数据库: show databases; 3.进入数据库: use (数据库名称); 4.查看数据库中的表: show tables; 5.显示表结构: desc (表名称); 6.创建数据库: create badabase (数据库名); 7.创建表: create table products( id int not null auto_increment, cid int not null
登陆mysql mysql -u username -p 创建用户名配置权限,这里为该用户配置tablename表的全部权限,也可以指定 GRANT ALL PRIVILEGES ON tablename.* TO 'username'@'hostname' IDENTIFIED BY 'password'; 删除用户权限,使用revoke操作 REVOKE ALL PRIVILEGES ON table.* FROM 'username'@'host'; 删除一个用户 DROP USER ‘u