use following query in your store procedure,
it gives you result what u want
select top 100 furniture_ch.[id],
furniture_ch.name,furniture_ch.[address] , COUNT(furniture_ch.name) as [count]
from furniture_ch inner join furniture_p on furniture_p.behcode = furniture_ch.behcode
where furniture_ch.f_code = @F_Code and furniture_p.date <= GETDATE()
group by furniture_ch.[id],furniture_ch.name,furniture_ch.[address]
order by [count] desc