sort by date mye be create proble try this,
select top 10 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 = 1 and furniture_p.date <= GETDATE()
group by furniture_ch.[id],furniture_ch.name,furniture_ch.[address]
order by [count]