Using the following query:
select bc.name, b.* from blog b
left join blog_to_blog_category btbc on b.id = btbc.blog_id
join blog_category bc on btbc.blog_category_id = bc.id
group by b.id, bc.name
having array_agg(btbc.blog_category_id) @> array[5,6];
It will show me blogs that are in both category 5 AND 6. How do I alter this so it will show me blogs that are in either category 5 OR 6?