SELECT -- Truncate the creation date to the first day of the month for grouping DATE_TRUNC('month', j.date_created)::date AS posting_month, el.name AS experience_level, COUNT(j.job_id) AS number_of_postsFROM Jobs AS jJOIN Job_Experience_Levels AS jel ON j.job_id = jel.job_idJOIN Experience_Levels AS el ON jel.experience_level_id = el.experience_level_idWHERE -- Set the start date for the chart j.date_created >= '2024-07-01' -- Set the end date to exclude the current, incomplete month AND j.date_created < DATE_TRUNC('month', NOW())GROUP BY posting_month, experience_levelORDER BY posting_month ASC, -- Optional: Order by experience level name for a consistent legend experience_level;