问题描述
架构如下:
create table Game
(
gameID int not null,[name] varchar(30) not null,developID int,cost int not null,category varchar(30) not null,unique (gameID),primary key(gameID),);
create table Developer
(
developerID int not null,country varchar(30) not null,speciality varchar(30) not null,unique (developerID),primary key (developerID)
);
现在,我想找出美国人为每个类别开发的游戏数量。 如果没有美国人在该特定类别中开发任何游戏,则必须显示 0
我将如何针对此要求编写嵌套 SQL 查询。 谢谢。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)