首页 > 代码库 > 查询博客中相同文章类别总共有多少文章

查询博客中相同文章类别总共有多少文章

查询博客中相同文章类别总共有多少文章


 T_Content 博客表

T_ContentType 博客类别表


string sql = "select  (select  count(*) from T_Content where FTypeId=T.FID) as num from T_ContentType AS T"