我在 SQL DB 中有 2 个表:
SUBJECT(idSUB,nameSUB);
TOPIC(idTOP,nameTOP,idSUB);
我想要的是:
+ select COUNT(*) from TOPIC as numTOPIC group by idSUB--> as a Temp table
+ then join 2 table Temp and SUBJECT --> a new table(idSUB,nameSUB,numTOPIC)
但是我已经尝试了很多次,但我真的不知道这个 SQL 查询的确切语法。帮助!