在子查询中对多个表使用max函数

时间:2019-03-28 11:44:42

标签: sql sql-server subquery operators

有人要求我在sql服务器数据库中显示以下问题的结果 安装最昂贵软件包的计算机的制造商是什么?我尝试了以下操作,但收到一条错误消息,
“在期望条件的上下文中指定的非布尔类型的表达式,接近;” 我想念什么?

select MFRNAME from Computer where comp in 
(select comp from PC where tagnum in 
 (select tagnum from software having max(softcost)))

我在下面附加了我的数据副本

enter image description here

0 个答案:

没有答案