How to create a MySQL hierarchical recursive query? I have a MySQL table which is as follows: id name parent_id 19 category1 0 20 category2 19 21 category3 20 22 category4 21 … … … Now, I... May 8, 2022 0 Comments