Let´s say I have two tables, \"Garden\" and \"Flowers\". There is a 1:n-relationship between these tables, because in a garden can be many flowers. Is it possible to write a
If you only want the results for one garden at a time this would give you the data:
select gardenName from tblGarden where gardenid = 1 Union ALL select tblFLowers.flowerName from tblFlowers where gardenid = 1