问题:10-18 查询商品价格小于500的商品分类名称(多表查询) (5 分) 解决代码: select name from sh_goods_category where id in ( select distinct category_id from sh_goods where price<500);