sql语句练习:找出平均工资小于5000的商店所在的城市
Posted testertechnology
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql语句练习:找出平均工资小于5000的商店所在的城市相关的知识,希望对你有一定的参考价值。
员工信息表 employee: user_id , name, store_id, salary
商店表stores:store_id, name,city
参考答案:select a.city from stores a,employee b where b.store_id=a.store_id group by b.store_id having avg(b.salary)<5000
以上是关于sql语句练习:找出平均工资小于5000的商店所在的城市的主要内容,如果未能解决你的问题,请参考以下文章