php - Retrieve latest topic of subcategory -


i trying retrieve latest topic of subcategory. here sql:

    select * threads left join subs  on subs.category_id = threads.subcategory_id left join categories  on categories.id = subs.category_id inner join (     select id, max(lastdate) lastdate     threads     group id ) b on subs.category_id = threads.subcategory_id , threads.lastdate = b.lastdate group subs.category_id, threads.subcategory_id, threads.lastdate desc 

however, if trying make thread subcategory links category used twice, doesn't work.

maybe can me out.

subs in database: http://dl1.joxi.net/drive/2016/08/01/0017/1178/1131674/74/78baa81e01.png (as can see, of subcategories has same category_id

updated query. duplicate echo output each new category linked category used twice: http://joxi.ru/dmbjzq5c1ll0mp


Comments