Hestia面板在an安装中没有给出root密码,想要对数据库进行整个备份就需要用到root权限用户,于是,偶新建了一个。
mysql -uroot
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT
最近发现我的某个网站里面有些重复数据,想删掉一些重复的,于是上网搜了下,呵呵……
方法1
select 字段名,count(*) from 表名 group by 字段名 having count(字段名)>1;
方法2:使用别名as
select 字段名,count(*) as c from 表名 group by 字段名 having c>1;
方法3:筛选全部字段,将符合的数据进
Solution 1: 1列
update student s, city c
set s.city_name = c.name
where s.city_code = c.code;
Solution 2: 多个列
update a, b
set a.title=b.title, a.name=b.name
where a.id=b.id
Solution 3: 子查询
update stud