replace() :用来替换数据库中数据
#把 news 表中id大于1000的数据,其中url列中的包含https的数据改为http。
UPDATE news SET url=replace(url, 'https', 'http') where id > 1000;
group by ... HAVING ... : 查找分数大于60分的用户
#查找分数大于60分的用户
SELECT uid,AVG(score) s FROM record GROUP BY score HAVING s > 60
网友评论