目录

2022年中国会计视野论坛答疑总结

今天,有同事让生成下 2022 年陈版主答疑汇编,好的,安排。

既然生成了答疑汇编也做一个小小的总结。

(注:以下分析仅依据记录 cpa 业务探讨版块版主回答的帖子)

全年话题数及回答数

-- 回答数
select count(*)  from chenyiwei_bbs where year(comment_time)=2022;
-- 话题数
select count(distinct link)  from chenyiwei_bbs where year(comment_time)=2022;

全年回答了 5086 个话题,共计 6286 次回复。

回答数量月度分布

select month(comment_time) 月份,count(*) 回答数量
from chenyiwei_bbs
where year(comment_time)=2022
group by month(comment_time)
order by month(comment_time)
月份回答数量
1513
2339
3662
4557
5470
6486
7583
8477
9574
10512
11547
12566

回答数量小时分布

这里我们分别按提问时间和回答时间统计各小时区间的数量:

-- 回答小时分布
select hour(comment_time) 小时,count(*) 回答数量 from chenyiwei_bbs where year(comment_time)=2022
group by hour(comment_time)
order by hour(comment_time)

-- 提问小时分布
select hour(question_time) 小时,count(*) 提问数量 from chenyiwei_bbs where year(comment_time)=2022
group by hour(question_time)
order by hour(question_time)
小时回答数量提问数量
014189
117445
227816
32816
43743
52622
616428
73929
814140
993403
10341654
11475535
12343272
13191285
14352474
15492501
16528583
17477514
18337310
19226245
20165315
21151304
22152308
23236225

通过提问人和回答人的小时分布对比就知道和大佬之间的差距。

回答数量最多日期TOP5

select date_format(comment_time,'%Y-%m-%d') 日期,count(*) 回答数量
from chenyiwei_bbs where year(comment_time)=2022
group by date_format(comment_time,'%Y-%m-%d')
order by count(*) desc limit 5;
日期回答数量
2022-06-3067
2022-02-2254
2022-11-2751
2022-12-2251
2022-11-1551

630亮了

工作天数

select count(distinct(date_format(comment_time,'%Y-%m-%d'))) 日期
from chenyiwei_bbs where year(comment_time)=2022

全年回贴共计 271 天,要知道 2022 年也就 248 个工作日。

提问最多Top5

select question_author 提问人,count(*) 对话数 from chenyiwei_bbs
where year(comment_time)=2022
group by question_author
order by count(*) desc
limit 5;
提问人对话数
liuweisheng213
Ryan_q87
yjhly201156
zhs740343
天之蓝202242

其实能思考提出这么多问题的也是大佬。

热门提问词汇

查询出全年提问标题:

select distinct(title) from chenyiwei_bbs
where year(comment_time)=2022

导出成 txt 文件,并用 Python 进行分词,取频率前 200 词汇绘制词云图。

读完数据,只有佩服。

下载地址:

https://wwds.lanzoum.com/b01nyhiod

密码:1mki