SELECT a.*, b.lastrpdate, b.lastrpname, b.lastrptitle 
FROM  category a, artical b, (select max(lastrptitle) as lastrptitle,category from lastrptitle group by category) c
where a.category = b.category and b.lastrptitle = c.lastrptitle and a.category = c.category