\ d сообщений
Table "public.posts"
Column | Type | Modifiers
-------------+------------------------+----------------------------------------------------
id | integer | not null default nextval('posts_id_seq'::regclass)
title | character varying(100) | not null
content | character varying(500) | not null
created_at | date |
updated_at | date |
tags | character varying(55) | not null default '50'::character varying
category_id | integer | not null default 1
Indexes:
"posts_pkey" PRIMARY KEY, btree (id)
\ d категорий
Table "public.categories"
Column | Type | Modifiers
---------------+-----------------------+---------------------------------------------------------
id | integer | not null default nextval('categories_id_seq'::regclass)
category_name | character varying(50) | not null
created_at | date |
updated_at | date |
Indexes:
"categories_pkey" PRIMARY KEY, btree (id)
Нужно подсчитать и получить количество сообщений для одной категории.Как я могу это сделать?