1.查看所有不重复用户 SELECT DISTINCT User FROM mysql.user; 2.创建用户 create user 'shuaibi'@'%' identified by 'IZ6&!KuK9zm#AaOz';flush privileges username@host表示授予的用户以及允许该用户登录的IP地址。其中Host有以下几种类型: localhost:
创建数据库 : create database 数据库名称 声明要编写的数据库:use 数据库 创建数据表:create table 查询数据:select * from 数据表 :*表示要查询所有数据 条件查询:select* from Students where Memo like'牛逼666' 删除数据:delete from 数据表 where StudenNam