1241. Number of Comments per Post
Description
+---------------+----------+
| Column Name | Type |
+---------------+----------+
| sub\_id | int |
| parent\_id | int |
+---------------+----------+
There is no primary key for this table, it may have duplicate rows.
Each row can be a post or comment on the post.
parent\_id is null for posts.
parent\_id for comments is sub_id for another post in the table.ac
Last updated