时间:2020-03-05来源:电脑系统城作者:电脑系统城
mysql -u root -pmypass;
use mysql;
select host, user, password from user;
create user 'yang'@'localhost' identified by 'yangpass';
drop user 'yang'@'localhost';
create user 'yang'@'%' identified by 'yangpass';
set password for 'yang'@'%' = password('yan');
grant all privileges on yang_test.* to 'yang'@"%";
flush privileges;
create user 'remote'@'%' identifed by 'app';
grant select, delete, update, insert on yang_test.t_weapon to 'remote';
revoke all privileges on yang_test.* from 'yang'@'%';
2023-10-30
windows上的mysql服务突然消失提示10061 Unkonwn error问题及解决方案2023-10-30
MySQL非常重要的日志bin log详解2023-10-30
详解MySQL事务日志redo log一、单表查询 1、排序 2、聚合函数 3、分组 4、limit 二、SQL约束 1、主键约束 2、非空约束 3、唯一约束 4、外键约束 5、默认值 三、多表查询 1、内连接 1)隐式内连接: 2)显式内连接: 2、外连接 1)左外连接 2)右外连接 四...
2023-10-30
Mysql删除表重复数据 表里存在唯一主键 没有主键时删除重复数据 Mysql删除表中重复数据并保留一条 准备一张表 用的是mysql8 大家自行更改 创建表并添加四条相同的数据...
2023-10-30