mysql面试题

1 有A(id,sex,par,c1,c2),B(id,age,c1,c2)两张表,其中A.id与B.id关联,现在要求写一条SQL语句,将B中age>50的记录的c1、c2更新到A表中统一记录中的c1、c2字段中。

update ms2_a as a inner join ms2_b as b on a.id=b.id set a.c1=b.c1,a.c2=b.c2 where b.age>50


2 已知用户表a: id, name 留言表b: id, msg, uid, time 其中uid 为用户表的主键 要求写一个SQL获取 今天留言数量超过 5的人,返回列包含用户名称和评论数量

已知文章表article:id,title,category_id,dt(发布时间) 分类表:category:id,name 要求写一个sql获取今天发文章数量超过10篇的分类,返回列包含分类名称和文章数量
SELECT c.name,a.all_num FROM category AS c INNER JOIN (SELECT category_id,COUNT(id) AS all_num FROM article WHERE dt >'2021-04-21 00:00:00'  GROUP BY category_id  HAVING  all_num>10 ORDER BY all_num DESC) AS a WHERE a.category_id = c.id

having用法总结:
1 where子句:是在分组之前使用,表示从所有数据中筛选出部分数据,以完成分组的要求,
                       在where子句中不允许使用统计函数

        2 having子句:是在分组之后使用的,表示对分组统计后的数据执行再次过滤,可以使用
                       统计函数
 where和having的使用场景:
1 都可以使用的场景
select goods_price,goods_name from sw_goods where goods_price > 100
select goods_price,goods_name from sw_goods having goods_price > 100
解释:上面的having可以用的前提是我已经筛选出了goods_price字段,在这种情况下和where的效果是等效的,但是如果我没有select goods_price 就会报错!!因为having是从前筛选的字段再筛选,而where是从数据表中的字段直接进行的筛选的。
2. 只可以用where,不可以用having的情况
select goods_name,goods_number from sw_goods where goods_price > 100
select goods_name,goods_number from sw_goods having goods_price > 100 //报错!!!因为前面并没有筛选出goods_price 字段
3. 只可以用having,不可以用where情况
查询每种goods_category_id商品的价格平均值,获取平均价格大于1000元的商品信息
select goods_category_id , avg(goods_price) as ag from sw_goods group by goods_category having ag > 1000
select goods_category_id , avg(goods_price) as ag from sw_goods where ag>1000 group by goods_category //报错!!因为from sw_goods 这张数据表里面没有ag这个字段
注意:where 后面要跟的是数据表里的字段,如果我把ag换成avg(goods_price)也是错误的!因为表里没有该字段。而having只是根据前面查询出来的是什么就可以后面接什么。

你可能感兴趣的:(数据库,大数据,linux)