新建用户 insert into mysql.user(Host,User,Password) values("localhost","u",password("123")); flush privileges; grant all privileges on uDB.* to u@localhost identified by '123'; flush privileges; grant select,update on uDB.* to u@…
1:以root身份登陆mysql终端 mysql -uroot -pmysql 2:创建wx用户,注意密码要加单引号 mysql> create user wx identified by 'wx'; 3:创建wx数据库 mysql>create database wx; 4:为用户wx授权使其拥有wx数据库的所有权限 mysql> grant all on wx.* to wx@localhost identified by 'wx'; 如果要为用户wx授予所有权限则: mysql&g…
登录MySQL mysql -u root -p 添加新用户 允许本地 IP 访问 localhost, 127.0.0.1 create user 'test'@'localhost' identified by '123456'; 允许外网 IP 访问 create user 'test'@'%' identified by '123456'; 刷新授权 flush privileges; 为用户创建数据库 create database test DEFAULT CHARSET utf8…
添加用户 CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; -- username : 自定义用户名 -- localhost : 允许访问的 ip 地址. localhost : 只允许本地访问 % : 允许任何地址访问 -- password : 自定义密码 mysql 添加权限 grant select,insert,update,delete,... on dbname.tablename to user@"loca…
昨日内容回顾 外键的变种三种关系: 多对一: 左表的多 对右表一 成立 左边的一 对右表多 不成立 foreign key(从表的id) refreences 主表的(id) 多对多 建立第三张表(foreign key) 一对一 foreign key+unique 单表查询: (1) where group by: 分组,通过某个字段 select age,count(1) from user group by age having avg(age)>25; having order by…