I have a following table structure which can't be change.

I'm trying to join these table and want to avoid duplicate records as well.
select p.ProductId,p.ProductName,inv.Details from Products p
inner join Inventory inv on(p.ProductId = inv.ProductId)
here is SqlFiddle.
join?? As you can usesubqueryfor it