您的位置:首页 > 数据库

MSSQL - 存储过程取出5条热点新闻

2015-07-08 13:38 555 查看
USE [DB_News]
GO
/****** Object:  StoredProcedure [dbo].[SelectHotNews]    Script Date: 2015/7/8 13:34:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:		HF_Ultrastrong
-- Create date: 2015年7月5日16:40:20
-- Description:	取出10条热点新闻 (热点新闻:评论最多)
-- =============================================
ALTER PROCEDURE [dbo].[SelectHotNews]
AS
BEGIN
select top 5 n.ID, n.Title, n.CreateTime, c.Name, count(t.ID) as CountNumber
from Tb_News as n
inner join Tb_Category as c on n.CaId = c.ID
--用左连接,这样可以查询出评论为0的新闻
left join Tb_Comment as t on t.NewsId = n.ID
group by n.ID, n.Title, n.CreateTime, c.Name
order by CountNumber desc
END


其中涉及到三张表,分类表,新闻表,评论表。

最终取出效果:

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: