从每个分类选择10条记录
复制代码 代码如下:
select a.* from Content a where a.log_ID in (select top 10 log_ID from Content where log_CateID = a.log_CateID order by log_ID desc) order by log_ID desc”
注意
Content 是新闻记录表
log_CateID 是分类字段
log_ID 关键字字段,自动增加的
原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/233667.html