I have two database tables called Item and Property:
Item
--------
item_id
title
Property
--------
property_id
item_id
property_value
Each Item can be associated with any number of Property entries.
Is there an SQL/MySql query that could return Item data with its corresponding Property data within the same row? (i.e. I'd like a query to return all data from these tables, formatted such that each row of the returned result contains all Item and related Property data of a particular item)
Is this possible?