查询博客中相同文章类别总共有多少文章
时间:2014-05-12 07:00:52
收藏:0
阅读:294
查询博客中相同文章类别总共有多少文章
T_Content 博客表
T_ContentType 博客类别表
string sql = "select (select count(*) from T_Content where FTypeId=T.FID) as num from T_ContentType AS T"
评论(0)