用零填充 PostgreSQL 中缺失的日期
Fill missing dates in PostgreSQL with zero
我在 PostgreSQL 中有这样的查询:
select count(id_student) students, date_beginning_course from
data.sessions_courses
left join my_schema.students on id_session_course=id_sesion
where course_name='First course'
group by date_beginning_course
我通过此查询获得的是在几个日期参加过 "First course" 课程的学生人数,例如:
Students Date_beginning_course
____________________________________
5 2019-06-26
1 2019-06-28
5 2019-06-30
6 2019-07-01
2 2019-07-02
我想用缺失的日期值填充此 table,并且对于每个缺失值,在学生列中分配一个“0”,因为该日期没有学生。示例:
Students Date_beginning_course
____________________________________
5 2019-06-26
0 2019-06-27 <--new row
1 2019-06-28
0 2019-06-29 <--new row
5 2019-06-30
6 2019-07-01
2 2019-07-02
你能帮帮我吗?谢谢! :)
您可以使用方便的 Postgres set-returning function generate_series()
和 LEFT JOIN
生成日期列表,使用 sessions_courses
和 students
table:
SELECT
COUNT(s.id_student) students,
d.dt
FROM
(
SELECT dt::date
FROM generate_series('2019-06-26', '2019-07-02', '1 day'::interval) dt
) d
LEFT JOIN data.sessions_courses c
ON c.date_beginning_course = d.dt
AND c.course_name='First course'
LEFT JOIN my_schema.students s
ON s.id_session_course = c.id_session
GROUP BY d.dt
您可以通过修改generate_series()
的前两个参数来更改日期范围。
注意:使用相关的 table 名称(或 table 别名)对查询中的列名称进行索引是一种普遍的好做法,因此 table 每列所属。我相应地更改了您的查询,并且不得不做出一些您可能需要适应的假设。
我在 PostgreSQL 中有这样的查询:
select count(id_student) students, date_beginning_course from
data.sessions_courses
left join my_schema.students on id_session_course=id_sesion
where course_name='First course'
group by date_beginning_course
我通过此查询获得的是在几个日期参加过 "First course" 课程的学生人数,例如:
Students Date_beginning_course
____________________________________
5 2019-06-26
1 2019-06-28
5 2019-06-30
6 2019-07-01
2 2019-07-02
我想用缺失的日期值填充此 table,并且对于每个缺失值,在学生列中分配一个“0”,因为该日期没有学生。示例:
Students Date_beginning_course
____________________________________
5 2019-06-26
0 2019-06-27 <--new row
1 2019-06-28
0 2019-06-29 <--new row
5 2019-06-30
6 2019-07-01
2 2019-07-02
你能帮帮我吗?谢谢! :)
您可以使用方便的 Postgres set-returning function generate_series()
和 LEFT JOIN
生成日期列表,使用 sessions_courses
和 students
table:
SELECT
COUNT(s.id_student) students,
d.dt
FROM
(
SELECT dt::date
FROM generate_series('2019-06-26', '2019-07-02', '1 day'::interval) dt
) d
LEFT JOIN data.sessions_courses c
ON c.date_beginning_course = d.dt
AND c.course_name='First course'
LEFT JOIN my_schema.students s
ON s.id_session_course = c.id_session
GROUP BY d.dt
您可以通过修改generate_series()
的前两个参数来更改日期范围。
注意:使用相关的 table 名称(或 table 别名)对查询中的列名称进行索引是一种普遍的好做法,因此 table 每列所属。我相应地更改了您的查询,并且不得不做出一些您可能需要适应的假设。