I am sure this has been asked and answered before. In my app I am getting a list of items based on a Plant ID number. In this list is another ID that points to an item in another list. It is that item description I am trying to get to. So in SQL I would write something like. Also a quick DD
Select il.description from PlantItems pi
join ItemList il on pi.itemID = il.itemID
where pi.PlantID=1100

how would this work for a gallery in my app? Would I use a With statement?
Thanks for the information