select distinct maker
from product
where type='个人电脑' and model in (
select model
from pc
where speed=(
select max(speed)
from pc
where ram=(
select min(ram)
from pc
)
) and ram in (
select min(ram)
from pc
)
);
查询在具有最小内存容量的所有PC中具有最快处理器的PC制造商 的sql语句
最新推荐文章于 2024-10-28 17:07:57 发布