I have a db with three tables
table1 table2 table3
Id Id Id
name price servicename
serviceTypeId Type
serviceId
nameId
How do I construct a query to show me unique rows with only the name of table1 the Type of table2 and the servicename of table3? serviceTypeId is foreign key for table2, and serviceId is foreign key for table3, nameId is foreign key of table1.. I'm struggling with the join inner join concept.