SQL语句查询问题

 问题:怎么查找回复最多的5个帖子 ,帮帮忙
1 --创建评论表
2  
3  create table Comment
4
5 (
6
7 ID int identity(1,1) not null primary key,
8
9 InvitationID int not null,
10
11 CommentContent text not null
12
13 )
14
15
16
17 --创建帖子表
18
19 create table Invitation
20
21 (
22
23 ID int identity(1,1) not null primary key,
24
25 CategoryName varchar(50) not null,
26
27 InvitationTitle varchar(50) not null,
28
29 InvitationContent text not null
30
31 )

问题:怎么查找回复最多的5个帖子 ,帮帮忙

慕姐8265434
浏览 486回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server