php - Getting category count and thread counts within the forums with one query? -


i'm trying run query result can placed array in form of: $categories[ x ] = y; x category id , y amount of forum threads posted in category.

the relevant database structure is: forum_threads has "id" auto increment primary key , "cat" column category

forum_posts has "thread_id"

i'm uncertain how build query achieve result count unique "cat" forum_threads, foreach unique "cat",to count on forum_posts? if possible 1 query?

thank you


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -