use following query in your store procedure
select top 100 furniture_ch.[id], furniture_ch.name,furniture_ch.[address]
into #furniture
from furniture_ch inner join furniture_p on furniture_p.behcode = furniture_ch.behcode
where furniture_ch.f_code = @F_Code order by furniture_p.[date] desc
select id,[name],[address], COUNT([name]) as [count] from #furniture
group by Id,name,[address]order by [count]drop table #furniture